blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
3
264
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
5
140
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
905 values
visit_date
timestamp[us]date
2015-08-09 11:21:18
2023-09-06 10:45:07
revision_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-17 19:19:19
committer_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-06 06:22:19
github_id
int64
3.89k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
22 values
gha_event_created_at
timestamp[us]date
2012-06-07 00:51:45
2023-09-14 21:58:39
gha_created_at
timestamp[us]date
2008-03-27 23:40:48
2023-08-21 23:17:38
gha_language
stringclasses
141 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
3
10.4M
extension
stringclasses
115 values
content
stringlengths
3
10.4M
authors
listlengths
1
1
author_id
stringlengths
0
158
ab01748f9808456d5dbf17d2b31506413196483a
e798cbc98fba4eda3c51f956f54e03d2ba310f91
/interface/ExpressionNtuple.h
362e0fe4662ac53201899c645504ca4aa14b940f
[]
no_license
jjbuchanan/CaloLayer1Calibrations
eb329583714a3ea6306e8bad3db755453b713427
3264c802bd9c04c2595a6b09f97d7d4d84823d7e
refs/heads/master
2021-09-10T01:24:20.084231
2018-03-20T14:15:16
2018-03-20T14:15:16
92,431,299
0
1
null
2018-03-20T14:14:08
2017-05-25T18:14:51
Python
UTF-8
C++
false
false
2,635
h
/* * Tool to build a TTree of columns of from StringObjectFunctions. * * Author: Evan K. Friis, UW Madison * */ #ifndef EXPRESSIONNTUPLE_E32UGXK7 #define EXPRESSIONNTUPLE_E32UGXK7 #include "boost/utility.hpp" #include <boost/ptr_container/ptr_vector.hpp> #include "FWCore/ParameterSet/interface/ParameterSet.h" #include "CommonTools/Utils/interface/TFileDirectory.h" #include "TTree.h" #include "L1Trigger/CaloLayer1Calibrations/interface/ExpressionNtupleColumn.h" // so we don't conflict with FinalStateAnalysis namespace uct { template<class T> class ExpressionNtuple : private boost::noncopyable { public: ExpressionNtuple(const edm::ParameterSet& pset); ~ExpressionNtuple(); // Setup the tree in the given TFile void initialize(TFileDirectory& fs); // Fill the tree with an element with given index. void fill(const T& element, int idx = -1); // Get access to the internal tree TTree* tree() const { return tree_; } private: TTree* tree_; std::vector<std::string> columnNames_; edm::ParameterSet pset_; boost::ptr_vector<ExpressionNtupleColumn<T> > columns_; boost::shared_ptr<Int_t> idxBranch_; }; template<class T> ExpressionNtuple<T>::ExpressionNtuple(const edm::ParameterSet& pset): pset_(pset) { tree_ = NULL; typedef std::vector<std::string> vstring; // Double check no column already exists columnNames_ = pset.getParameterNames(); std::set<std::string> enteredAlready; for (size_t i = 0; i < columnNames_.size(); ++i) { const std::string& colName = columnNames_[i]; if (enteredAlready.count(colName)) { throw cms::Exception("DuplicatedBranch") << " The ntuple branch with name " << colName << " has already been registered!" << std::endl; } enteredAlready.insert(colName); } idxBranch_.reset(new Int_t); } template<class T> ExpressionNtuple<T>::~ExpressionNtuple() {} template<class T> void ExpressionNtuple<T>::initialize(TFileDirectory& fs) { tree_ = fs.make<TTree>("Ntuple", "Expression Ntuple"); // Build branches for (size_t i = 0; i < columnNames_.size(); ++i) { columns_.push_back(buildColumn<T>(columnNames_[i], pset_, tree_)); } // A special branch so we know which subrow we are on. tree_->Branch("idx", idxBranch_.get(), "idx/I"); } template<class T> void ExpressionNtuple<T>::fill(const T& element, int idx) { for (size_t i = 0; i < columns_.size(); ++i) { // Compute the function and load the value into the column. columns_[i].compute(element); } *idxBranch_ = idx; tree_->Fill(); } } #endif /* end of include guard: EXPRESSIONNTUPLE_E32UGXK7 */
[ "jjbuchanan42@gmail.com" ]
jjbuchanan42@gmail.com
873af766bdbf16eae30c97c5712ec7ae777df87e
fb7efe44f4d9f30d623f880d0eb620f3a81f0fbd
/net/quic/chromium/quic_chromium_alarm_factory.h
e033de183657c37ef82dcd012c0d1abe51bba30d
[ "BSD-3-Clause" ]
permissive
wzyy2/chromium-browser
2644b0daf58f8b3caee8a6c09a2b448b2dfe059c
eb905f00a0f7e141e8d6c89be8fb26192a88c4b7
refs/heads/master
2022-11-23T20:25:08.120045
2018-01-16T06:41:26
2018-01-16T06:41:26
117,618,467
3
2
BSD-3-Clause
2022-11-20T22:03:57
2018-01-16T02:09:10
null
UTF-8
C++
false
false
1,525
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. // // The Chrome-specific helper for QuicConnection which uses // a TaskRunner for alarms, and uses a DatagramClientSocket for writing data. #ifndef NET_QUIC_CHROMIUM_QUIC_CHROMIUM_ALARM_FACTORY_H_ #define NET_QUIC_CHROMIUM_QUIC_CHROMIUM_ALARM_FACTORY_H_ #include <set> #include "base/macros.h" #include "base/memory/weak_ptr.h" #include "net/base/net_export.h" #include "net/quic/core/quic_alarm_factory.h" #include "net/quic/core/quic_packets.h" #include "net/quic/core/quic_time.h" #include "net/quic/platform/api/quic_clock.h" namespace base { class TaskRunner; } // namespace base namespace net { class NET_EXPORT_PRIVATE QuicChromiumAlarmFactory : public QuicAlarmFactory { public: QuicChromiumAlarmFactory(base::TaskRunner* task_runner, const QuicClock* clock); ~QuicChromiumAlarmFactory() override; // QuicAlarmFactory QuicAlarm* CreateAlarm(QuicAlarm::Delegate* delegate) override; QuicArenaScopedPtr<QuicAlarm> CreateAlarm( QuicArenaScopedPtr<QuicAlarm::Delegate> delegate, QuicConnectionArena* arena) override; private: base::TaskRunner* task_runner_; const QuicClock* clock_; base::WeakPtrFactory<QuicChromiumAlarmFactory> weak_factory_; DISALLOW_COPY_AND_ASSIGN(QuicChromiumAlarmFactory); }; } // namespace net #endif // NET_QUIC_CHROMIUM_QUIC_CHROMIUM_ALARM_FACTORY_H_
[ "jacob-chen@iotwrt.com" ]
jacob-chen@iotwrt.com
b907c3601688af6a76a4ca679b60b446ba2766a1
ff444613472c57836e0f92ae404871f586639059
/inc/vhwd/collection/detail/bst_tree_node.h
dae1c45af740a5d447edda7b619708f62f743442
[ "Apache-2.0" ]
permissive
akirayu101/vhwd_base
1959cf1ebf065e669f89b54b3841a10923464023
fb694676bab13d4258c0031769e9aac0baa37b55
refs/heads/master
2020-12-11T03:33:23.650707
2014-09-16T09:08:37
2014-09-16T09:08:37
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,357
h
#ifndef __H_VHWD_COLLECTION_BST_TREE_NODE__ #define __H_VHWD_COLLECTION_BST_TREE_NODE__ #include "vhwd/collection/detail/collection_base.h" VHWD_ENTER template<typename K,typename V,typename E> class bst_node { public: typedef bst_node<K,V,E> node_type; typedef K key_type; typedef V mapped_type; typedef E extra_type; typedef typename kv_trait<K,V>::value_type value_type; node_type* parent; node_type* child1; node_type* child2; value_type value; extra_type extra; bst_node() { parent=child1=child2=NULL; } bst_node(const value_type& v):value(v) { parent=child1=child2=NULL; } bst_node(const bst_node& n):value(n.value),extra(n.extra) { parent=child1=child2=NULL; } #ifdef VHWD_C11 bst_node(value_type&& v):value(std::move(v)) { parent=child1=child2=NULL; } bst_node(bst_node&& n):value(n.value),extra(n.extra) { parent=child1=child2=NULL; } #endif }; template<typename K,typename V,typename C,typename E> class bst_trait_base { public: typedef bst_node<K,V,E> node_type; typedef K key_type; typedef V mapped_type; typedef typename node_type::value_type value_type; typedef const key_type& const_key_reference; typedef C key_compare; static size_t nd_count(node_type* p) { if(!p) return 0; return 1+nd_count(p->child1)+nd_count(p->child2); } static node_type* nd_min(node_type* n) { if(!n) return NULL; while(n->child1) n=n->child1; return n; } static node_type* nd_max(node_type* n) { if(!n) return NULL; while(n->child2) n=n->child2; return n; } static node_type* nd_inc(node_type* n) { wassert(n!=NULL); if(n->child2) { n=n->child2; while(n->child1) n=n->child1; return n; } for(;;) { node_type* p=n->parent; if(!p) { return NULL; } if(p->child1==n) { return p; } n=p; } } static node_type* nd_dec(node_type* n) { wassert(n!=NULL); if(n->child1) { n=n->child1; while(n->child2) n=n->child2; return n; } for(;;) { node_type* p=n->parent; if(!p) { return NULL; } if(p->child2==n) { return p; } n=p; } } }; template<typename K,typename V,typename C,typename E> class bst_trait : public bst_trait_base<K,V,C,E> { public: typedef bst_trait_base<K,V,C,E> basetype; typedef typename basetype::key_type key_type; typedef typename basetype::value_type value_type; typedef typename basetype::node_type node_type; static const key_type& key(const key_type& v) { return v; } static const key_type& key(const value_type& v) { return v.first; } static const key_type& key(node_type* node) { wassert(node!=NULL); return key(node->value); } }; template<typename K,typename C,typename E> class bst_trait<K,void,C,E> : public bst_trait_base<K,void,C,E> { public: typedef bst_trait_base<K,void,C,E> basetype; typedef typename basetype::key_type key_type; typedef typename basetype::value_type value_type; typedef typename basetype::node_type node_type; static const key_type& key(const key_type& v) { return v; } static const key_type& key(node_type* node) { wassert(node!=NULL); return node->value; } }; VHWD_LEAVE #endif
[ "wendahan@qq.com" ]
wendahan@qq.com
d3ce376cee6653517b6ef1f3b8ce07fd643fb42b
fd7f2eacb173116501e981ffc3638e7940802c15
/OOP/school/2018-09-18/input.cpp
7b0e2e4fb02709b2f0b67669d2edbea9f2c5677c
[]
no_license
mikirov/Elsys-2018-2019
543759c32b74f40a965a36dc15d1747ba9a4811d
0dc3536e66eb314f56dec124a859228dce905e26
refs/heads/master
2023-01-27T17:18:31.631899
2019-05-30T03:54:12
2019-05-30T03:54:12
149,159,617
0
0
null
2023-01-19T09:44:37
2018-09-17T17:05:05
C++
UTF-8
C++
false
false
201
cpp
#include<iostream> using namespace std; int main(){ int value; while(true){ cin >> value; if(!cin){ cout<<"bad input"<< endl; break; }else{ cout << value << endl; } } return 0; }
[ "shimonchick@gmail.com" ]
shimonchick@gmail.com
bc9b483ccf96b56559b22a7b68a0c9d1ae4696ff
d4ab7ac90d19c8c71647091013813ac65489ffbc
/ex3/Matrix.hpp
bfd1fb5f8ec07448c5f1749a542c522fab159440
[]
no_license
oribro/C-Plus-Plus
d275271025319189ae0cde8caa45a6fb1f00a47c
f29cc9dd4d5f9676bf2c60ab81baac7810e5f06a
refs/heads/master
2021-01-12T14:06:22.713676
2016-09-29T12:25:43
2016-09-29T12:25:43
69,565,035
0
0
null
null
null
null
UTF-8
C++
false
false
25,686
hpp
// // Created by OriB on 06/09/2015. // #ifndef MATRIX_HPP #define MATRIX_HPP #include "Complex.h" #include <iostream> #include <thread> #include <mutex> #include <vector> #include "TraceException.h" #include "AdditionException.h" #include "MultiplicationException.h" #include "SubtractionException.h" #include "MatrixAllocException.h" #include "MoveException.h" #include "MatrixAssignmentException.h" #define MULT "MULT" #define SUM "SUM" #define TAB "\t" /** * A generic matrix class. * This class represents a matrix with a type that supports ‫‪ ‬‬ operations: * ‫‪==,= ,* ,+= ,­-= ,­ -, << and the zero constructor.‬‬ */ template <class T> class Matrix { public: // The const iterator for the matrix is a const iterator for vector. typedef typename std::vector<T>::const_iterator VectorConstIterator; // A vector of threads for multithreading. typedef std::vector<std::thread> Threads; // Iterator for the threads vector. typedef typename std::vector<std::thread>::iterator ThreadsIterator; /** * Default constructor. * Initiate a matrix of dimension 0 as null matrix. * This constructor is used to construct a matrix object with no values. * @return a copy of the constructed matrix. */ // -------------------------------- Declarations ------------------------- /** * Default constructor. * Initializes the matrix as 1x1 matrix with zero value. */ Matrix(); /** * Sets the corresponding static data member value to the value indicated * by indicator. * @param indicator - true for using parallel mode, false for using sequential mode. */ static void setParallel(bool indicator); /** * Constructor that receives the matrix dimensions and initializes a matrix with * zero values. * @rows - the rows of the matrix. * @cols - the cols of the matrix. */ Matrix(unsigned int rows, unsigned int cols); /** * Copy constructor. * @param other - the other matrix to copy. */ Matrix(const Matrix<T>& other); /** * Move constructor. * @param other - the other matrix to move. */ Matrix(Matrix<T> && other); /** * Constructor that initializes the matrix according to the const iterator of the class. * @param rows - the rows of the matrix. * @param cols - the cols of the matrix. * @param cells - the cells of the matrix to initialize to. */ Matrix(unsigned int rows, unsigned int cols, const std::vector<T>& cells); /** * Destructor. */ ~Matrix(); /** * Operator for matrix assignment. * @param other the second matrix operand. * @return the assigned matrix. We change the object! * @throws invalid_argument if a dimension is 0. */ Matrix<T>& operator=(const Matrix<T>& other); /** * Operator for matrix addition. * @param other the second matrix operand. * @return a copy matrix of the addition. * @throws invalid_argument if a dimension is 0. */ const Matrix<T> operator+(const Matrix<T>& other) const; /** * Operator for matrix substraction. * @param other the second matrix operand. * @return a copy of the difference matrix. * @throws invalid_argument if a dimension is 0. */ const Matrix<T> operator-(const Matrix<T>& other) const; /** * Operator for matrix multiplication. * @param other the second matrix operand. * @return a copy of the mult matrix. * @throws invalid_argument if a dimension is 0. */ const Matrix<T> operator*(const Matrix<T>& other) const; /** * Operator for comparing matrices. * @param other - the matrix to compare. * @return true if the matrices are equal and false otherwise. */ bool operator==(const Matrix<T>& other) const; /** * Operator for comparing matrices. * @param other - the matrix to compare. * @return true if the matrices are different and false otherwise. */ bool operator!=(const Matrix<T>& other) const; /** * Returns the transpose of the given matrix. * @return the matrix transpose. * @throws invalid_argument if a dimension is 0. */ const Matrix<T> trans() const; /** * Returns the trace of the matrix. * @return the trace. * @throws invalid_argument if a dimension is 0. */ const T trace() const; /** * Const operator for indexing the matrix. * @param row - the row to look for the value. * @param col - the col to look for the value. * @return The value at the given row and col, as const value * (read only). */ const T& operator()(unsigned int row, unsigned int col) const; /** * Operator for indexing the matrix. * @param row - the row to look for the value. * @param col - the col to look for the value. * @return The value at the given row and col, as const value */ T& operator()(unsigned int row, unsigned int col); /** * Prints the matrix. * @param out - the object to write to. * @param matrix - the matrix to print. * @return reference to the printing object. */ template <typename K> friend std::ostream& operator<<(std::ostream& out, const Matrix<K>& matrix); /** * @return the size of the rows of the matrix. */ unsigned int rows() const; /** * @return the size of the columns of the matrix. */ unsigned int cols() const; /** * @return true if the matrix is square, false otherwise. */ bool isSquareMatrix() const; /** * This class represents a const iterator for the matrix. * The iterator iterates the matrix for read only purposes. */ class const_iterator { public: /** * Constructor for the iterator. * @param it - the iterator of the matrix, sets by defult to be defaultly * constructed by vector constructor. */ const_iterator(VectorConstIterator it = VectorConstIterator()) : _it(it) { } /** * Copy constructor. * @param other - the other iterator to copy. */ const_iterator(const const_iterator& other) { _it = other._it; } /** * Assignment operator. * @param other the other iterator to assign. */ const_iterator& operator=(const const_iterator& other) { _it = other._it; return *this; } /** * Dereference operator. * @return reference to the value the iterator points to. */ const T& operator*() { return *_it; } /** * @returns the iterator. */ T* operator->() { return _it; } /** *@return returns the incremented operator. */ const_iterator& operator++() { ++_it; return *this; } /** * @return the operator before increment. */ const_iterator operator++(int) { const_iterator tmp = *this; _it++; return tmp; } /** * @return reference to the operator after decrement. */ const_iterator& operator--() { --_it; return *this; } /** * @return reference to the operator before decrement. */ const_iterator operator--(int) { const_iterator tmp = *this; _it--; return tmp; } /** * @param other iterator to compare. * @return true if the operators are equal, false otherwise. */ bool operator==(const_iterator const& other) const { return _it == other._it; } /** * @param other iterator to compare. * @return false if the operators are equal, true otherwise. */ bool operator!=(const_iterator const& other) const { return _it != other._it; } private: // The iterator for the matrix. VectorConstIterator _it; }; /** * @return iterator to the beginning of the matrix. */ const_iterator begin() const { return const_iterator(_pMatrix.begin()); } /** * @return iterator to the end of the matrix. */ const_iterator end() const { return const_iterator(_pMatrix.end()); } private: unsigned int _rows; // The number of rows in the matrix. unsigned int _cols; // The number of columns in the matrix. std::vector<T> _pMatrix; // Vector containing the matrix values. // Static variable to indicate the mode we use - parallel or sequential. static bool s_useParallel; /** * This is how we index the matrix. Every row is defined as a sequence of * values in the vector. * @param row - the row for the value. * @param col - the column for the value. * @return the position in the matrix which the value is found at. */ inline unsigned int _matrixIndex(unsigned int row, unsigned int col) const { return (row * _cols) + col; } /** * Method for multiplying creating a line using multiplication in the parallel mode. * @param lineNumber - the line in the result matrix we currently compute. * @param multMatrix - the result matrix to be created. * @param firstM - the first matrix to multiply. * @param secondM - the second matrix to multiply. */ static void _multLine(int lineNumber, Matrix<T>& multMatrix, const Matrix<T>& firstM, const Matrix<T>& secondM); /** * Method for summing creating a line using summation in the parallel mode. * @param lineNumber - the line in the result matrix we currently compute. * @param multMatrix - the result matrix to be created. * @param firstM - the first matrix to multiply. * @param secondM - the second matrix to multiply. */ static void _sumLine(int lineNumber, Matrix<T>& sumMatrix, const Matrix<T>& firstM, const Matrix<T>& secondM); /** * Performs a parallel operation. * @param operation- an indicator to tell us which operation to perform (mult or sum). * @param resultMatrix - the result matrix to be created. * @param other - the other matrix to perform the action on. */ void _parallelOperation(const std::string& operation, Matrix<T>& resultMatrix, const Matrix<T>& other) const; }; // ---------------------------------------- Implementations ------------------------------ /** * Sets the corresponding static data member value to the value indicated * by indicator. * @param indicator - true for using parallel mode, false for using sequential mode. */ template <class T> bool Matrix<T>::s_useParallel = false; template <class T> inline void Matrix<T>::setParallel(bool indicator) { // Print only if the indicator changes the state of the program. if (indicator != s_useParallel) { s_useParallel = indicator; if (indicator == true) { std::cout << "Generic Matrix mode changed to parallel mode" << std::endl; } else { std::cout << "Generic Matrix mode changed to non-parallel mode" << std::endl; } } } /** * Default constructor. * Initializes the matrix as 1x1 matrix with zero value. * @throws MatrixAllocException if the memory could not be allocated. */ template <class T> inline Matrix<T>::Matrix() : _rows(1), _cols(1) { try { // The zero value of the type is the default constructed type. _pMatrix.push_back(T()); } catch(std::bad_alloc& e) { throw MatrixAllocException(); } } /** * Constructor that receives the matrix dimensions and initializes a matrix with * zero values. * @rows - the rows of the matrix. * @cols - the cols of the matrix. * @throws MatrixAllocException if the memory could not be allocated. */ template <class T> inline Matrix<T>::Matrix(unsigned int rows, unsigned int cols) : _rows(rows), _cols(cols) { try { // Initialize the matrix with zero values. for (unsigned int i = 0; i < rows * cols; i++) { _pMatrix.push_back(T()); } } catch(std::bad_alloc& e) { throw MatrixAllocException(); } } /** * Copy constructor. * @param other - the other matrix to copy. */ template <typename T> inline Matrix<T>::Matrix(const Matrix<T>& other) : _rows(other._rows), _cols(other._cols), _pMatrix(other._pMatrix) { } /** * Move constructor. * @param other - the other matrix to move. * @throws MoveException if the matrix could not be moved. */ template <typename T> inline Matrix<T>::Matrix(Matrix<T> && other) : _rows(other._rows), _cols(other._cols) { try { _pMatrix = std::move(other._pMatrix); } catch(...) { throw MoveException(); } } /** * Constructor that initializes the matrix according to the const iterator of the class. * @param rows - the rows of the matrix. * @param cols - the cols of the matrix. * @param cells - the cells of the matrix to initialize to. * @throws MatrixAllocException if the memory could not be allocated. */ template <class T> inline Matrix<T>::Matrix(unsigned int rows, unsigned int cols, const std::vector<T>& cells) : _rows(rows), _cols(cols) { try { for (VectorConstIterator it = cells.begin(); it != cells.end(); ++it) { _pMatrix.push_back(*it); } } catch(std::bad_alloc& e) { throw MatrixAllocException(); } } /** * Destructor. */ template <class T> inline Matrix<T>::~Matrix() { } /** * Const operator for indexing the matrix. * @param row - the row to look for the value. * @param col - the col to look for the value. * @return The value at the given row and col, as const value * (read only). */ template <typename T> inline const T& Matrix<T>::operator()(unsigned int row, unsigned int col) const { return _pMatrix.at(_matrixIndex(row, col)); } /** * Operator for indexing the matrix. * @param row - the row to look for the value. * @param col - the col to look for the value. * @return The value at the given row and col, as const value */ template <typename T> inline T& Matrix<T>::operator()(unsigned int row, unsigned int col) { return _pMatrix[_matrixIndex(row, col)]; } /** * Operator for matrix addition. * @param other the second matrix operand. * @return a copy matrix of the addition. * @throws AdditionException if the dimensions are different. */ template <typename T> inline const Matrix<T> Matrix<T>::operator+(const Matrix<T>& other) const { if ((_rows != _cols) && (_rows == 0 || _cols == 0)) { throw std::invalid_argument("Matrix with dimension 0 is illegal."); } if ((other._rows != other._cols) && (other._rows == 0 || other._cols == 0)) { throw std::invalid_argument("Matrix with dimension 0 is illegal."); } if(!((_rows == other._rows) && (_cols == other._cols))) { throw AdditionException("cannot addition matrices of different sizes."); } Matrix<T> sumMatrix = Matrix<T>(other._rows, other._cols); // use regular programming (serialized) if (!s_useParallel) { // Create the left summand object. for (unsigned int i = 0; i < sumMatrix._rows; ++i) { for (unsigned int j = 0; j < sumMatrix._cols; ++j) { sumMatrix(i, j) = (*this)(i, j) + other(i, j); } } } // Use multithreading (parallel). else { _parallelOperation(SUM, sumMatrix, other); } return sumMatrix; } /** * Operator for matrix substraction. * @param other the second matrix operand. * @return a copy of the difference matrix. * @throws SubtractionException if the dimensions are different. */ template <typename T> inline const Matrix<T> Matrix<T>::operator-(const Matrix<T>& other) const { if ((_rows != _cols) && (_rows == 0 || _cols == 0)) { throw std::invalid_argument("Matrix with dimension 0 is illegal."); } if ((other._rows != other._cols) && (other._rows == 0 || other._cols == 0)) { throw std::invalid_argument("Matrix with dimension 0 is illegal."); } if(!((_rows == other._rows) && (_cols == other._cols))) { throw SubtractionException("Cannot subtract matrices of different sizes."); } // The result matrix. Matrix<T> minusMatrix = Matrix<T>(_rows, _cols); for (unsigned int i = 0; i < minusMatrix._rows; ++i) { for (unsigned int j = 0; j < minusMatrix._cols; ++j) { minusMatrix(i, j) = (*this)(i, j) - other(i, j); } } return minusMatrix; } /** * Operator for matrix multiplication. * @param other the second matrix operand. * @return a copy of the mult matrix. * @throws MultiplicationException if the dimensions are different. */ template <typename T> inline const Matrix<T> Matrix<T>::operator*(const Matrix<T>& other) const { if ((_rows != _cols) && (_rows == 0 || _cols == 0)) { throw std::invalid_argument("Matrix with dimension 0 is illegal."); } if ((other._rows != other._cols) && (other._rows == 0 || other._cols == 0)) { throw std::invalid_argument("Matrix with dimension 0 is illegal."); } if(_cols != other._rows) { throw MultiplicationException("Cannot multiply matrices of different sizes."); } Matrix<T> multMatrix = Matrix<T>(_rows, other._cols); if (!s_useParallel) { for (unsigned int i = 0; i < multMatrix._rows; ++i) { for (unsigned int j = 0; j < multMatrix._cols; ++j) { // Multiply the first matrix row by the second matrix column. multMatrix(i, j) = T(); for (unsigned int k = 0; k < _cols; ++k) { multMatrix(i, j) += ((*this)(i, k)) * (other(k, j)); } } } } else { _parallelOperation(MULT, multMatrix, other); } return multMatrix; } /** * Operator for matrix assignment. * @param other the second matrix operand. * @return the assigned matrix. We change the object! * @throws AssignmentException if could not assign matrix. */ template <typename T> inline Matrix<T>& Matrix<T>::operator=(const Matrix<T>& other) { if ((_rows != _cols) && (_rows == 0 || _cols == 0)) { throw std::invalid_argument("Matrix with dimension 0 is illegal."); } if ((other._rows != other._cols) && (other._rows == 0 || other._cols == 0)) { throw std::invalid_argument("Matrix with dimension 0 is illegal."); } // We try to copy the same object, we don't want to lose the pointer. if (this == &other) { return *this; } try { _rows = other._rows; _cols = other._cols; _pMatrix = other._pMatrix; } catch(...) { throw MatrixAssignmentException("Could not assign matrix."); } return *this; } /** * Operator for comparing matrices. * @param other - the matrix to compare. * @return true if the matrices are equal and false otherwise. */ template <typename T> inline bool Matrix<T>::operator==(const Matrix<T>& other) const { // The matrices are from different dimensions and cant be equal. if(!((_rows == other._rows) && (_cols == other._cols))) { return false; } return _pMatrix == other._pMatrix; } /** * Operator for comparing matrices. * @param other - the matrix to compare. * @return true if the matrices are different and false otherwise. */ template <typename T> inline bool Matrix<T>::operator!=(const Matrix<T>& other) const { return !(*this == other); } /** * Matrix transpose. * @return a copy of the transposed matrix. */ template <typename T> inline const Matrix<T> Matrix<T>::trans() const { if ((_rows != _cols) && (_rows == 0 || _cols == 0)) { throw std::invalid_argument("Matrix with dimension 0 is illegal."); } Matrix<T> transMatrix; transMatrix._rows = _cols; transMatrix._cols = _rows; transMatrix._pMatrix.resize(transMatrix._rows * transMatrix._cols); for (unsigned int i = 0; i < transMatrix._rows; ++i) { for (unsigned int j = 0; j < transMatrix._cols; ++j) { // Substitute between cols and rows. transMatrix(i, j) = (*this)(j, i); } } return transMatrix; } /** * Specialization method for matrix complex transpose. * @return a copy of the transposed matrix. */ template <> inline const Matrix<Complex> Matrix<Complex>::trans() const { if ((_rows != _cols) && (_rows == 0 || _cols == 0)) { throw std::invalid_argument("Matrix with dimension 0 is illegal."); } Matrix<Complex> conjugateM; conjugateM._rows = _cols; conjugateM._cols = _rows; conjugateM._pMatrix.resize(conjugateM._rows * conjugateM._cols); for (unsigned int i = 0; i < conjugateM._rows; ++i) { for (unsigned int j = 0; j < conjugateM._cols; ++j) { // Change the values to their conjugates. conjugateM(i, j) = ((*this)(j, i)).conj(); } } return conjugateM; } /** * Prints the matrix. * @param out - the object to write to. * @param matrix - the matrix to print. * @return reference to the printing object. */ template <typename K> inline std::ostream& operator<<(std::ostream& out, const Matrix<K>& matrix) { unsigned int j; for (unsigned int i = 0; i < matrix._rows; i++) { for (j = 0; j < matrix._cols; j++) { out << matrix(i, j) << TAB; } out << std::endl; } return out; } /** * calculates the trace of the matrix. * @return the trace of the matrix. * @throws TraceException if the matrix isn't square. */ template <typename T> inline const T Matrix<T>::trace() const { if ((_rows != _cols) && (_rows == 0 || _cols == 0)) { throw std::invalid_argument("Matrix with dimension 0 is illegal."); } if(_rows != _cols) { throw TraceException("Matrix isn't square"); } T mTrace = T(); for (unsigned int i = 0; i < _rows; i++) { mTrace += (*this)(i, i); } return mTrace; } /** * @return the rows of the matrix. */ template <typename T> inline unsigned int Matrix<T>::rows() const { return _rows; } /** * @return the cols of the matrix. */ template <typename T> unsigned int Matrix<T>::cols() const { return _cols; } /** * @return true if the matrix is square, false otherwise. */ template <typename T> inline bool Matrix<T>::isSquareMatrix() const { return (_rows == _cols); } /** * Performs a parallel operation. * @param operation- an indicator to tell us which operation to perform (mult or sum). * @param resultMatrix - the result matrix to be created. * @param other - the other matrix to perform the action on. */ template <typename T> inline void Matrix<T>::_parallelOperation(const std::string& operation, Matrix<T>& resultMatrix, const Matrix<T>& other) const { // The threads for the matrix lines. Threads matrixRowsThreads(_rows); // Create threads for the matrix rows. if (operation.compare(SUM) == 0) { for (unsigned int i = 0; i < resultMatrix._rows; ++i) { matrixRowsThreads[i] = std::thread(&Matrix<T>::_sumLine, i, std::ref(resultMatrix), std::ref(*this), std::ref(other)); } } else if (operation.compare(MULT) == 0) { for (unsigned int i = 0; i < resultMatrix._rows; ++i) { matrixRowsThreads[i] = std::thread(&Matrix<T>::_multLine, i, std::ref(resultMatrix), std::ref(*this), std::ref(other)); } } // Wait for the threads to calculate the matrix lines. for (ThreadsIterator it = matrixRowsThreads.begin(); it != matrixRowsThreads.end(); ++it) { (*it).join(); } } /** * Method for multiplying creating a line using multiplication in the parallel mode. * @param lineNumber - the line in the result matrix we currently compute. * @param multMatrix - the result matrix to be created. * @param firstM - the first matrix to multiply. * @param secondM - the second matrix to multiply. */ std::mutex m; template <typename T> inline void Matrix<T>::_multLine(int lineNumber, Matrix<T>& multMatrix, const Matrix<T>& firstM, const Matrix<T>& secondM) { for (unsigned int j = 0; j < multMatrix._cols; ++j) { // Multiply the first matrix row by the second matrix column. multMatrix(lineNumber, j) = T(); T tempCellVal = T(); for (unsigned int k = 0; k < firstM._cols; ++k) { tempCellVal += (firstM(lineNumber, k)) * (secondM(k, j)); } m.lock(); multMatrix(lineNumber, j) = tempCellVal; m.unlock(); } } /** * Method for summing creating a line using summation in the parallel mode. * @param lineNumber - the line in the result matrix we currently compute. * @param multMatrix - the result matrix to be created. * @param firstM - the first matrix to multiply. * @param secondM - the second matrix to multiply. */ template <typename T> inline void Matrix<T>::_sumLine(int lineNumber, Matrix<T>& sumMatrix, const Matrix<T>& firstM, const Matrix<T>& secondM) { std::lock_guard<std::mutex> lk(m); for (unsigned int j = 0; j < sumMatrix._cols; ++j) { sumMatrix(lineNumber, j) = (firstM(lineNumber, j)) + (secondM(lineNumber, j)); } } #endif //MATRIX_HPP
[ "orib@cs.huji.ac.il" ]
orib@cs.huji.ac.il
4d134aa688d5f1e1e81db196d9f6388e736f376d
53c31ea2d780bb501790e559cf0934ed3f58e3b0
/Hungre Jelly/Classes/Native/System_Core_U3CPrivateImplementationDetailsU3E3053238933.h
f64dfef5ba860fd4e339ac8df4bebbfa42c88286
[]
no_license
rezajebeli97/Hungry-Jelly
15765ce08c06c986808d5a16a69c06186f1a458b
3f4cd88904ec292ca939877df226d8115060b567
refs/heads/master
2020-04-06T03:36:30.910871
2018-06-12T13:20:26
2018-06-12T13:20:26
64,659,937
2
0
null
null
null
null
UTF-8
C++
false
false
8,100
h
#pragma once #include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <stdint.h> #include "mscorlib_System_Object837106420.h" #include "System_Core_U3CPrivateImplementationDetailsU3E_U242366141818.h" #include "System_Core_U3CPrivateImplementationDetailsU3E_U242366142878.h" #include "System_Core_U3CPrivateImplementationDetailsU3E_U24A335950518.h" #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails> struct U3CPrivateImplementationDetailsU3E_t3053238934 : public Il2CppObject { public: public: }; struct U3CPrivateImplementationDetailsU3E_t3053238934_StaticFields { public: // <PrivateImplementationDetails>/$ArrayType$120 <PrivateImplementationDetails>::$$field-1 U24ArrayTypeU24120_t2366141819 ___U24U24fieldU2D1_0; // <PrivateImplementationDetails>/$ArrayType$256 <PrivateImplementationDetails>::$$field-2 U24ArrayTypeU24256_t2366142879 ___U24U24fieldU2D2_1; // <PrivateImplementationDetails>/$ArrayType$256 <PrivateImplementationDetails>::$$field-3 U24ArrayTypeU24256_t2366142879 ___U24U24fieldU2D3_2; // <PrivateImplementationDetails>/$ArrayType$1024 <PrivateImplementationDetails>::$$field-4 U24ArrayTypeU241024_t335950519 ___U24U24fieldU2D4_3; // <PrivateImplementationDetails>/$ArrayType$1024 <PrivateImplementationDetails>::$$field-5 U24ArrayTypeU241024_t335950519 ___U24U24fieldU2D5_4; // <PrivateImplementationDetails>/$ArrayType$1024 <PrivateImplementationDetails>::$$field-6 U24ArrayTypeU241024_t335950519 ___U24U24fieldU2D6_5; // <PrivateImplementationDetails>/$ArrayType$1024 <PrivateImplementationDetails>::$$field-7 U24ArrayTypeU241024_t335950519 ___U24U24fieldU2D7_6; // <PrivateImplementationDetails>/$ArrayType$1024 <PrivateImplementationDetails>::$$field-8 U24ArrayTypeU241024_t335950519 ___U24U24fieldU2D8_7; // <PrivateImplementationDetails>/$ArrayType$1024 <PrivateImplementationDetails>::$$field-9 U24ArrayTypeU241024_t335950519 ___U24U24fieldU2D9_8; // <PrivateImplementationDetails>/$ArrayType$1024 <PrivateImplementationDetails>::$$field-10 U24ArrayTypeU241024_t335950519 ___U24U24fieldU2D10_9; // <PrivateImplementationDetails>/$ArrayType$1024 <PrivateImplementationDetails>::$$field-11 U24ArrayTypeU241024_t335950519 ___U24U24fieldU2D11_10; public: inline static int32_t get_offset_of_U24U24fieldU2D1_0() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3053238934_StaticFields, ___U24U24fieldU2D1_0)); } inline U24ArrayTypeU24120_t2366141819 get_U24U24fieldU2D1_0() const { return ___U24U24fieldU2D1_0; } inline U24ArrayTypeU24120_t2366141819 * get_address_of_U24U24fieldU2D1_0() { return &___U24U24fieldU2D1_0; } inline void set_U24U24fieldU2D1_0(U24ArrayTypeU24120_t2366141819 value) { ___U24U24fieldU2D1_0 = value; } inline static int32_t get_offset_of_U24U24fieldU2D2_1() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3053238934_StaticFields, ___U24U24fieldU2D2_1)); } inline U24ArrayTypeU24256_t2366142879 get_U24U24fieldU2D2_1() const { return ___U24U24fieldU2D2_1; } inline U24ArrayTypeU24256_t2366142879 * get_address_of_U24U24fieldU2D2_1() { return &___U24U24fieldU2D2_1; } inline void set_U24U24fieldU2D2_1(U24ArrayTypeU24256_t2366142879 value) { ___U24U24fieldU2D2_1 = value; } inline static int32_t get_offset_of_U24U24fieldU2D3_2() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3053238934_StaticFields, ___U24U24fieldU2D3_2)); } inline U24ArrayTypeU24256_t2366142879 get_U24U24fieldU2D3_2() const { return ___U24U24fieldU2D3_2; } inline U24ArrayTypeU24256_t2366142879 * get_address_of_U24U24fieldU2D3_2() { return &___U24U24fieldU2D3_2; } inline void set_U24U24fieldU2D3_2(U24ArrayTypeU24256_t2366142879 value) { ___U24U24fieldU2D3_2 = value; } inline static int32_t get_offset_of_U24U24fieldU2D4_3() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3053238934_StaticFields, ___U24U24fieldU2D4_3)); } inline U24ArrayTypeU241024_t335950519 get_U24U24fieldU2D4_3() const { return ___U24U24fieldU2D4_3; } inline U24ArrayTypeU241024_t335950519 * get_address_of_U24U24fieldU2D4_3() { return &___U24U24fieldU2D4_3; } inline void set_U24U24fieldU2D4_3(U24ArrayTypeU241024_t335950519 value) { ___U24U24fieldU2D4_3 = value; } inline static int32_t get_offset_of_U24U24fieldU2D5_4() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3053238934_StaticFields, ___U24U24fieldU2D5_4)); } inline U24ArrayTypeU241024_t335950519 get_U24U24fieldU2D5_4() const { return ___U24U24fieldU2D5_4; } inline U24ArrayTypeU241024_t335950519 * get_address_of_U24U24fieldU2D5_4() { return &___U24U24fieldU2D5_4; } inline void set_U24U24fieldU2D5_4(U24ArrayTypeU241024_t335950519 value) { ___U24U24fieldU2D5_4 = value; } inline static int32_t get_offset_of_U24U24fieldU2D6_5() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3053238934_StaticFields, ___U24U24fieldU2D6_5)); } inline U24ArrayTypeU241024_t335950519 get_U24U24fieldU2D6_5() const { return ___U24U24fieldU2D6_5; } inline U24ArrayTypeU241024_t335950519 * get_address_of_U24U24fieldU2D6_5() { return &___U24U24fieldU2D6_5; } inline void set_U24U24fieldU2D6_5(U24ArrayTypeU241024_t335950519 value) { ___U24U24fieldU2D6_5 = value; } inline static int32_t get_offset_of_U24U24fieldU2D7_6() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3053238934_StaticFields, ___U24U24fieldU2D7_6)); } inline U24ArrayTypeU241024_t335950519 get_U24U24fieldU2D7_6() const { return ___U24U24fieldU2D7_6; } inline U24ArrayTypeU241024_t335950519 * get_address_of_U24U24fieldU2D7_6() { return &___U24U24fieldU2D7_6; } inline void set_U24U24fieldU2D7_6(U24ArrayTypeU241024_t335950519 value) { ___U24U24fieldU2D7_6 = value; } inline static int32_t get_offset_of_U24U24fieldU2D8_7() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3053238934_StaticFields, ___U24U24fieldU2D8_7)); } inline U24ArrayTypeU241024_t335950519 get_U24U24fieldU2D8_7() const { return ___U24U24fieldU2D8_7; } inline U24ArrayTypeU241024_t335950519 * get_address_of_U24U24fieldU2D8_7() { return &___U24U24fieldU2D8_7; } inline void set_U24U24fieldU2D8_7(U24ArrayTypeU241024_t335950519 value) { ___U24U24fieldU2D8_7 = value; } inline static int32_t get_offset_of_U24U24fieldU2D9_8() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3053238934_StaticFields, ___U24U24fieldU2D9_8)); } inline U24ArrayTypeU241024_t335950519 get_U24U24fieldU2D9_8() const { return ___U24U24fieldU2D9_8; } inline U24ArrayTypeU241024_t335950519 * get_address_of_U24U24fieldU2D9_8() { return &___U24U24fieldU2D9_8; } inline void set_U24U24fieldU2D9_8(U24ArrayTypeU241024_t335950519 value) { ___U24U24fieldU2D9_8 = value; } inline static int32_t get_offset_of_U24U24fieldU2D10_9() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3053238934_StaticFields, ___U24U24fieldU2D10_9)); } inline U24ArrayTypeU241024_t335950519 get_U24U24fieldU2D10_9() const { return ___U24U24fieldU2D10_9; } inline U24ArrayTypeU241024_t335950519 * get_address_of_U24U24fieldU2D10_9() { return &___U24U24fieldU2D10_9; } inline void set_U24U24fieldU2D10_9(U24ArrayTypeU241024_t335950519 value) { ___U24U24fieldU2D10_9 = value; } inline static int32_t get_offset_of_U24U24fieldU2D11_10() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3053238934_StaticFields, ___U24U24fieldU2D11_10)); } inline U24ArrayTypeU241024_t335950519 get_U24U24fieldU2D11_10() const { return ___U24U24fieldU2D11_10; } inline U24ArrayTypeU241024_t335950519 * get_address_of_U24U24fieldU2D11_10() { return &___U24U24fieldU2D11_10; } inline void set_U24U24fieldU2D11_10(U24ArrayTypeU241024_t335950519 value) { ___U24U24fieldU2D11_10 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif
[ "rezajebeli97@yahoo.com" ]
rezajebeli97@yahoo.com
70e93d28b595a156c551dcadffc943bf47ec9e66
64440f30282c87b47b314e348957780d49e0d59d
/include/feature_birl.hpp
71689a514c1ee4d8f5eefe59a050aea7160b5568
[ "MIT" ]
permissive
dsbrown1331/aaai-2018-code
9f7eb75b431c37e3ac798bf085dc795692d5960b
303fe4e1c8c2d4cfae70100b5d2eb73efe121393
refs/heads/master
2021-04-30T05:30:59.060939
2018-03-07T15:18:58
2018-03-07T15:18:58
121,417,536
6
1
null
null
null
null
UTF-8
C++
false
false
18,657
hpp
#ifndef feature_birl_h #define feature_birl_h #include <cmath> #include <stdlib.h> #include <vector> #include <numeric> #include <math.h> #include "mdp.hpp" #include "../include/unit_norm_sampling.hpp" using namespace std; class FeatureBIRL { // BIRL process protected: double r_min, r_max, step_size; unsigned int chain_length; unsigned int grid_height, grid_width; double alpha; unsigned int iteration; int sampling_flag; bool mcmc_reject; //If false then it uses Yuchen's sample until accept method, if true uses normal MCMC sampling procedure int num_steps; //how many times to change current to get proposal void initializeMDP(); vector<pair<unsigned int,unsigned int> > positive_demonstration; vector<pair<unsigned int,unsigned int> > negative_demonstration; void modifyFeatureWeightsRandomly(FeatureGridMDP * gmdp, double step_size); void sampleL1UnitBallRandomly(FeatureGridMDP * gmdp); void updownL1UnitBallWalk(FeatureGridMDP * gmdp, double step); void manifoldL1UnitBallWalk(FeatureGridMDP * gmdp, double step, int num_steps); void manifoldL1UnitBallWalkAllSteps(FeatureGridMDP * gmdp, double step); double* posteriors = nullptr; FeatureGridMDP* MAPmdp = nullptr; double MAPposterior; public: FeatureGridMDP* mdp = nullptr; //original MDP FeatureGridMDP** R_chain = nullptr; //storing the rewards along the way ~FeatureBIRL(){ if(R_chain != nullptr) { for(unsigned int i=0; i<chain_length; i++) delete R_chain[i]; delete []R_chain; } if(posteriors != nullptr) delete []posteriors; delete MAPmdp; } double getAlpha(){return alpha;} FeatureBIRL(FeatureGridMDP* init_mdp, double min_reward, double max_reward, unsigned int chain_len, double step, double conf, int samp_flag=0, bool reject=false, int num_step=1): r_min(min_reward), r_max(max_reward), step_size(step), chain_length(chain_len), alpha(conf), sampling_flag(samp_flag), mcmc_reject(reject), num_steps(num_step){ unsigned int grid_height = init_mdp -> getGridHeight(); unsigned int grid_width = init_mdp -> getGridWidth(); bool* initStates = init_mdp -> getInitialStates(); bool* termStates = init_mdp -> getTerminalStates(); unsigned int nfeatures = init_mdp -> getNumFeatures(); double* fweights = init_mdp -> getFeatureWeights(); double** sfeatures = init_mdp -> getStateFeatures(); bool stochastic = init_mdp -> isStochastic(); double gamma = init_mdp -> getDiscount(); //copy init_mdp mdp = new FeatureGridMDP(grid_width, grid_height, initStates, termStates, nfeatures, fweights, sfeatures, stochastic, gamma); mdp->setWallStates(init_mdp->getWallStates()); initializeMDP(); //set weights to (r_min+r_max)/2 MAPmdp = new FeatureGridMDP(grid_width, grid_height, initStates, termStates, nfeatures, fweights, sfeatures, stochastic, gamma); MAPmdp->setWallStates(init_mdp->getWallStates()); MAPmdp->setFeatureWeights(mdp->getFeatureWeights()); MAPposterior = 0; R_chain = new FeatureGridMDP*[chain_length]; posteriors = new double[chain_length]; iteration = 0; }; FeatureGridMDP* getMAPmdp(){return MAPmdp;} double getMAPposterior(){return MAPposterior;} void addPositiveDemo(pair<unsigned int,unsigned int> demo) { positive_demonstration.push_back(demo); }; // (state,action) pair void addNegativeDemo(pair<unsigned int,unsigned int> demo) { negative_demonstration.push_back(demo); }; void addPositiveDemos(vector<pair<unsigned int,unsigned int> > demos); void addNegativeDemos(vector<pair<unsigned int,unsigned int> > demos); void run(double eps=0.001); void displayPositiveDemos(); void displayNegativeDemos(); void displayDemos(); double getMinReward(){return r_min;}; double getMaxReward(){return r_max;}; double getStepSize(){return step_size;}; unsigned int getChainLength(){return chain_length;}; vector<pair<unsigned int,unsigned int> >& getPositiveDemos(){ return positive_demonstration; }; vector<pair<unsigned int,unsigned int> >& getNegativeDemos(){ return negative_demonstration; }; FeatureGridMDP** getRewardChain(){ return R_chain; }; FeatureGridMDP* getMeanMDP(int burn, int skip); double* getPosteriorChain(){ return posteriors; }; FeatureGridMDP* getMDP(){ return mdp;}; double calculatePosterior(FeatureGridMDP* gmdp); double logsumexp(double* nums, unsigned int size); bool isDemonstration(pair<double,double> s_a); }; void FeatureBIRL::run(double eps) { //cout.precision(10); //cout << "itr: " << iteration << endl; //clear out previous values if they exist if(iteration > 0) for(unsigned int i=0; i<chain_length-1; i++) delete R_chain[i]; iteration++; MAPposterior = 0; R_chain[0] = mdp; // so that it can be deleted with R_chain!!!! //vector<unsigned int> policy (mdp->getNumStates()); //cout << "testing" << endl; mdp->valueIteration(eps);//deterministicPolicyIteration(policy); //cout << "value iter" << endl; mdp->calculateQValues(); mdp->displayFeatureWeights(); double posterior = calculatePosterior(mdp); //cout << "init posterior: " << posterior << endl; posteriors[0] = exp(posterior); int reject_cnt = 0; //BIRL iterations for(unsigned int itr=1; itr < chain_length; itr++) { //cout << "itr: " << itr << endl; FeatureGridMDP* temp_mdp = new FeatureGridMDP (mdp->getGridWidth(),mdp->getGridHeight(), mdp->getInitialStates(), mdp->getTerminalStates(), mdp->getNumFeatures(), mdp->getFeatureWeights(), mdp->getStateFeatures(), mdp->isStochastic(), mdp->getDiscount()); //set the walls temp_mdp->setWallStates(mdp->getWallStates()); temp_mdp->setFeatureWeights(mdp->getFeatureWeights()); if(sampling_flag == 0) { //random grid walk modifyFeatureWeightsRandomly(temp_mdp,step_size); } else if(sampling_flag == 1) { //cout << "sampling randomly from L1 unit ball" << endl; sampleL1UnitBallRandomly(temp_mdp); } //updown sampling on L1 ball else if(sampling_flag == 2) { //cout << "before step" << endl; //temp_mdp->displayFeatureWeights(); updownL1UnitBallWalk(temp_mdp, step_size); //cout << "after step" << endl; //temp_mdp->displayFeatureWeights(); //check if norm is right assert(isEqual(l1_norm(temp_mdp->getFeatureWeights(), temp_mdp->getNumFeatures()),1.0)); } //random manifold walk sampling else if(sampling_flag == 3) { manifoldL1UnitBallWalk(temp_mdp, step_size, num_steps); assert(isEqual(l1_norm(temp_mdp->getFeatureWeights(), temp_mdp->getNumFeatures()),1.0)); } else if(sampling_flag == 4) { manifoldL1UnitBallWalkAllSteps(temp_mdp, step_size); assert(isEqual(l1_norm(temp_mdp->getFeatureWeights(), temp_mdp->getNumFeatures()),1.0)); } //cout << "trying out" << endl; //temp_mdp->displayFeatureWeights(); temp_mdp->valueIteration(eps, mdp->getValues()); //temp_mdp->deterministicPolicyIteration(policy);//valueIteration(0.05); temp_mdp->calculateQValues(); double new_posterior = calculatePosterior(temp_mdp); //cout << "posterior: " << new_posterior << endl; double probability = min((double)1.0, exp(new_posterior - posterior)); //cout << probability << endl; //transition with probability double r = ((double) rand() / (RAND_MAX)); if ( r < probability ) //policy_changed && { //temp_mdp->displayFeatureWeights(); //cout << "accept" << endl; mdp = temp_mdp; posterior = new_posterior; R_chain[itr] = temp_mdp; posteriors[itr] = exp(new_posterior); //if (itr%100 == 0) cout << itr << ": " << posteriors[itr] << endl; if(posteriors[itr] > MAPposterior) { MAPposterior = posteriors[itr]; //TODO remove set terminals, right? why here in first place? MAPmdp->setFeatureWeights(mdp->getFeatureWeights()); } }else { //delete temp_mdp delete temp_mdp; //keep previous reward in chain //cout << "reject!!!!" << endl; reject_cnt++; if(mcmc_reject) { //TODO can I make this more efficient by adding a count variable? //make a copy of mdp FeatureGridMDP* mdp_copy = new FeatureGridMDP (mdp->getGridWidth(),mdp->getGridHeight(), mdp->getInitialStates(), mdp->getTerminalStates(), mdp->getNumFeatures(), mdp->getFeatureWeights(), mdp->getStateFeatures(), mdp->isStochastic(), mdp->getDiscount()); mdp_copy->setValues(mdp->getValues()); mdp_copy->setQValues(mdp->getQValues()); mdp_copy->setWallStates(mdp->getWallStates()); R_chain[itr] = mdp_copy; } //sample until you get accept and then add that -- doesn't repeat old reward in chain else { assert(reject_cnt < 100000); itr--; //delete temp_mdp; } } } cout << "rejects: " << reject_cnt << endl; } //TODO check that this follows guidance for softmax double FeatureBIRL::logsumexp(double* nums, unsigned int size) { double max_exp = nums[0]; double sum = 0.0; unsigned int i; for (i = 1 ; i < size ; i++) { if (nums[i] > max_exp) max_exp = nums[i]; } for (i = 0; i < size ; i++) sum += exp(nums[i] - max_exp); return log(sum) + max_exp; } double FeatureBIRL::calculatePosterior(FeatureGridMDP* gmdp) //assuming uniform prior { double posterior = 0; //add in a zero norm (non-zero count) double prior = 0; // int count = 0; // double* weights = gmdp->getFeatureWeights(); // for(int i=0; i < gmdp->getNumFeatures(); i++) // if(abs(weights[i]) > 0.0001) // count += 1; // prior = -1 * alpha * log(count-1); posterior += prior; unsigned int state, action; unsigned int numActions = gmdp->getNumActions(); // "-- Positive Demos --" for(unsigned int i=0; i < positive_demonstration.size(); i++) { pair<unsigned int,unsigned int> demo = positive_demonstration[i]; state = demo.first; action = demo.second; double Z [numActions]; // for(unsigned int a = 0; a < numActions; a++) Z[a] = alpha*(gmdp->getQValue(state,a)); posterior += alpha*(gmdp->getQValue(state,action)) - logsumexp(Z, numActions); //cout << state << "," << action << ": " << posterior << endl; } // "-- Negative Demos --" for(unsigned int i=0; i < negative_demonstration.size(); i++) { pair<unsigned int,unsigned int> demo = negative_demonstration[i]; state = demo.first; action = demo.second; double Z [numActions]; // for(unsigned int a = 0; a < numActions; a++) Z[a] = alpha*(gmdp->getQValue(state,a)); unsigned int ct = 0; double Z2 [numActions - 1]; for(unsigned int a = 0; a < numActions; a++) { if(a != action) Z2[ct++] = alpha*(gmdp->getQValue(state,a)); } posterior += logsumexp(Z2, numActions-1) - logsumexp(Z, numActions); } //cout << "posterior" << posterior << endl; return posterior; } void FeatureBIRL::modifyFeatureWeightsRandomly(FeatureGridMDP * gmdp, double step) { unsigned int state = rand() % gmdp->getNumFeatures(); double change = pow(-1,rand()%2)*step; //cout << "before " << gmdp->getReward(state) << endl; //cout << "change " << change << endl; double weight = max(min(gmdp->getWeight(state) + change, r_max), r_min); //if(gmdp->isTerminalState(state)) reward = max(min(gmdp->getReward(state) + change, r_max), 0.0); //else reward = max(min(gmdp->getReward(state) + change, 0.0), r_min); //cout << "after " << reward << endl; gmdp->setFeatureWeight(state, weight); } void FeatureBIRL::sampleL1UnitBallRandomly(FeatureGridMDP * gmdp) { unsigned int numFeatures = gmdp->getNumFeatures(); double* newWeights = sample_unit_L1_norm(numFeatures); gmdp->setFeatureWeights(newWeights); delete [] newWeights; } void FeatureBIRL::updownL1UnitBallWalk(FeatureGridMDP * gmdp, double step) { unsigned int numFeatures = gmdp->getNumFeatures(); double* newWeights = updown_l1_norm_walk(gmdp->getFeatureWeights(), numFeatures, step); gmdp->setFeatureWeights(newWeights); delete [] newWeights; } void FeatureBIRL::manifoldL1UnitBallWalk(FeatureGridMDP * gmdp, double step, int num_steps) { unsigned int numFeatures = gmdp->getNumFeatures(); double* newWeights = random_manifold_l1_step(gmdp->getFeatureWeights(), numFeatures, step, num_steps); gmdp->setFeatureWeights(newWeights); delete [] newWeights; } void FeatureBIRL::manifoldL1UnitBallWalkAllSteps(FeatureGridMDP * gmdp, double step) { unsigned int numFeatures = gmdp->getNumFeatures(); double* newWeights = take_all_manifold_l1_steps(gmdp->getFeatureWeights(), numFeatures, step); gmdp->setFeatureWeights(newWeights); delete [] newWeights; } void FeatureBIRL::addPositiveDemos(vector<pair<unsigned int,unsigned int> > demos) { for(unsigned int i=0; i < demos.size(); i++) positive_demonstration.push_back(demos[i]); //positive_demonstration.insert(positive_demonstration.end(), demos.begin(), demos.end()); } void FeatureBIRL::addNegativeDemos(vector<pair<unsigned int,unsigned int> > demos) { for(unsigned int i=0; i < demos.size(); i++) negative_demonstration.push_back(demos[i]); //negative_demonstration.insert(negative_demonstration.end(), demos.begin(), demos.end()); } void FeatureBIRL::displayDemos() { displayPositiveDemos(); displayNegativeDemos(); } void FeatureBIRL::displayPositiveDemos() { if(positive_demonstration.size() !=0 ) cout << "\n-- Positive Demos --" << endl; for(unsigned int i=0; i < positive_demonstration.size(); i++) { pair<unsigned int,unsigned int> demo = positive_demonstration[i]; cout << " (" << demo.first << "," << demo.second << ") "; } cout << endl; } void FeatureBIRL::displayNegativeDemos() { if(negative_demonstration.size() != 0) cout << "\n-- Negative Demos --" << endl; for(unsigned int i=0; i < negative_demonstration.size(); i++) { pair<unsigned int,unsigned int> demo = negative_demonstration[i]; cout << " (" << demo.first << "," << demo.second << ") "; } cout << endl; } void FeatureBIRL::initializeMDP() { // if(sampling_flag == 0) // { // double* weights = new double[mdp->getNumFeatures()]; // for(unsigned int s=0; s<mdp->getNumFeatures(); s++) // { // weights[s] = (r_min+r_max)/2; // } // mdp->setFeatureWeights(weights); // delete [] weights; // } // else if (sampling_flag == 1) //sample randomly from L1 unit ball // { // double* weights = sample_unit_L1_norm(mdp->getNumFeatures()); // mdp->setFeatureWeights(weights); // delete [] weights; // } // else if(sampling_flag == 2) // { unsigned int numDims = mdp->getNumFeatures(); double* weights = new double[numDims]; for(unsigned int s=0; s<numDims; s++) weights[s] = -1.0 / numDims; // { // if((rand() % 2) == 0) // weights[s] = 1.0 / numDims; // else // weights[s] = -1.0 / numDims; //// if(s == 0) //// weights[s] = 1.0; //// else //// weights[s] = 0.0; // } // weights[0] = 0.2; // weights[1] = 0.2; // weights[2] = -0.2; // weights[3] = 0.2; // weights[4] = 0.2; //weights[0] = 1.0; mdp->setFeatureWeights(weights); delete [] weights; // } // else if(sampling_flag == 3) // { // unsigned int numDims = mdp->getNumFeatures(); // double* weights = new double[numDims]; // for(unsigned int s=0; s<numDims; s++) // weights[s] = 0.0; //// { //// if((rand() % 2) == 0) //// weights[s] = 1.0 / numDims; //// else //// weights[s] = -1.0 / numDims; ////// if(s == 0) ////// weights[s] = 1.0; ////// else ////// weights[s] = 0.0; //// } //// weights[0] = 0.2; //// weights[1] = 0.2; //// weights[2] = -0.2; //// weights[3] = 0.2; //// weights[4] = 0.2; // weights[0] = 1.0; // mdp->setFeatureWeights(weights); // delete [] weights; // } } bool FeatureBIRL::isDemonstration(pair<double,double> s_a) { for(unsigned int i=0; i < positive_demonstration.size(); i++) { if(positive_demonstration[i].first == s_a.first && positive_demonstration[i].second == s_a.second) return true; } for(unsigned int i=0; i < negative_demonstration.size(); i++) { if(negative_demonstration[i].first == s_a.first && negative_demonstration[i].second == s_a.second) return true; } return false; } FeatureGridMDP* FeatureBIRL::getMeanMDP(int burn, int skip) { //average rewards in chain int nFeatures = mdp->getNumFeatures(); double aveWeights[nFeatures]; for(int i=0;i<nFeatures;i++) aveWeights[i] = 0; int count = 0; for(unsigned int i=burn; i<chain_length; i+=skip) { count++; //(*(R_chain + i))->displayFeatureWeights(); //cout << "weights" << endl; double* w = (*(R_chain + i))->getFeatureWeights(); for(int f=0; f < nFeatures; f++) aveWeights[f] += w[f]; } for(int f=0; f < nFeatures; f++) aveWeights[f] /= count; // //create new MDP with average weights as features FeatureGridMDP* mean_mdp = new FeatureGridMDP(MAPmdp->getGridWidth(),MAPmdp->getGridHeight(), MAPmdp->getInitialStates(), MAPmdp->getTerminalStates(), MAPmdp->getNumFeatures(), aveWeights, MAPmdp->getStateFeatures(), MAPmdp->isStochastic(), MAPmdp->getDiscount()); mean_mdp->setWallStates(MAPmdp->getWallStates()); return mean_mdp; } #endif
[ "dsbrown1331@gmail.com" ]
dsbrown1331@gmail.com
fa33cd4750a7a0eadfdd405168ba7ab65b42aef8
7cffa9b29f855c68ec5efcf049f596dc7be6bff6
/src/color/xyz/make/ivory.hpp
e704719c9f2884fbef19b0f1daac5db9da8bdd22
[ "Apache-2.0" ]
permissive
lzs4073/color
c4e12e26cfe96022e0a5e6736a7abaadf9912c14
290c2c1550c499465f814ba89a214cbec19a72df
refs/heads/master
2020-04-03T07:16:33.120894
2016-02-02T16:18:25
2016-02-02T16:18:25
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,614
hpp
#ifndef color_xyz_make_ivory #define color_xyz_make_ivory // ::color::make::ivory( c ) namespace color { namespace make { //RGB equivalents: std::array<double,3>( { 1, 1, 0.941176 } ) - rgb(255,255,240) - #fffff0 inline void ivory( ::color::_internal::model< color::category::xyz_uint8 > & color_parameter ) { color_parameter.container() = 0xff; } inline void ivory( ::color::_internal::model< color::category::xyz_uint16 > & color_parameter ) { color_parameter.container() = 0x3ded; } inline void ivory( ::color::_internal::model< color::category::xyz_uint32 > & color_parameter ) { color_parameter.container() = 0xff4da08fu; } inline void ivory( ::color::_internal::model< color::category::xyz_uint64 > & color_parameter ) { color_parameter.container() = 0xffff524fa5a59588ul; } inline void ivory( ::color::_internal::model< color::category::xyz_float > & color_parameter ) { color_parameter.container() = std::array<float,3>( { 31.5545, 31.9102, 30.0707 } ); } inline void ivory( ::color::_internal::model< color::category::xyz_double> & color_parameter ) { color_parameter.container() = std::array<double,3>( { 31.5545, 31.9102, 30.0707 } ); } inline void ivory( ::color::_internal::model< color::category::xyz_ldouble> & color_parameter ) { color_parameter.container() = std::array<long double,3>( { 31.5545, 31.9102, 30.0707 } ); } } } #endif
[ "dmilos@gmail.com" ]
dmilos@gmail.com
ffa754ad604b86a1c43fd641bb6f2e5e7d0b1558
eb017064e9d0e109c050942967e9863bd8589002
/Client/src/Client.cpp
8ad4417258984ddd240c261cfcfbe56f3f3d4c4d
[]
no_license
talkad/SPLASS3
5b265fab6bb645b12756d77a9e39b7b65250d8d3
04f6e053ff768de2ad71fed2db025bbf4929744c
refs/heads/master
2020-12-05T12:54:19.882261
2020-01-19T13:46:17
2020-01-19T13:46:17
232,116,699
0
0
null
2020-01-19T13:46:18
2020-01-06T14:21:45
Java
UTF-8
C++
false
false
1,621
cpp
#include <connectionHandler.h> #include <UserData.h> #include <thread> //#include <boost/asio.hpp> using std::string; void writeTask(ConnectionHandler* connectionHandler){ while (connectionHandler->isRunning()) { const short bufsize = 1024; char buf[bufsize]; std::cin.getline(buf, bufsize); string line(buf); string frameOut=connectionHandler->toStompFrame(line); connectionHandler->sendFrame(frameOut); if(line=="logout") { connectionHandler->terminate(); connectionHandler->close(); } } } void readTask(ConnectionHandler* connectionHandler){ while (connectionHandler->isRunning()) { if(connectionHandler->isConnected()) { string answer; if (!connectionHandler->getFrame(answer)) { break; } string sendMsg = connectionHandler->process(answer); if (sendMsg.length() > 0) { //there is a response to the server if (!connectionHandler->sendFrame(sendMsg)) { break; } } } } } using namespace boost; int main (int argc, char *argv[]) { ConnectionHandler* connection = new ConnectionHandler(); std::thread thread_1 = std::thread(writeTask, connection); std::thread thread_2 = std::thread(readTask, connection); thread_2.join(); thread_1.join(); delete connection; if(UserData::getInstance()!=nullptr) delete UserData::getInstance(); return 0; }
[ "talkad@post.bgu.ac.il" ]
talkad@post.bgu.ac.il
9b9fee3ac0f9e6c297c105cab18f1c29b0494dcd
f83ef53177180ebfeb5a3e230aa29794f52ce1fc
/gdb/gdb-7.8.2/gdb/cp-abi.h
7d4b7f309026bcd0e58ff8cb4329a137f8d2e1e3
[ "GPL-3.0-or-later", "GPL-1.0-or-later", "BSD-3-Clause", "GPL-3.0-only", "LicenseRef-scancode-unknown-license-reference", "LicenseRef-scancode-warranty-disclaimer", "AGPL-3.0-or-later", "LGPL-3.0-only", "LGPL-2.0-or-later", "LicenseRef-scancode-other-copyleft", "GPL-2.0-only", "LGPL-2.0-only", ...
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
9,714
h
/* Abstraction of various C++ ABI's we support, and the info we need to get from them. Contributed by Daniel Berlin <dberlin@redhat.com> Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of GDB. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ #ifndef CP_ABI_H_ #define CP_ABI_H_ 1 struct fn_field; struct type; struct value; struct ui_file; struct frame_info; /* The functions here that attempt to determine what sort of thing a mangled name refers to may well be revised in the future. It would certainly be cleaner to carry this information explicitly in GDB's data structures than to derive it from the mangled name. */ /* Kinds of constructors. All these values are guaranteed to be non-zero. */ enum ctor_kinds { /* Initialize a complete object, including virtual bases, using memory provided by caller. */ complete_object_ctor = 1, /* Initialize a base object of some larger object. */ base_object_ctor, /* An allocating complete-object constructor. */ complete_object_allocating_ctor }; /* Return non-zero iff NAME is the mangled name of a constructor. Actually, return an `enum ctor_kind' value describing what *kind* of constructor it is. */ extern enum ctor_kinds is_constructor_name (const char *name); /* Kinds of destructors. All these values are guaranteed to be non-zero. */ enum dtor_kinds { /* A destructor which finalizes the entire object, and then calls `delete' on its storage. */ deleting_dtor = 1, /* A destructor which finalizes the entire object, but does not call `delete'. */ complete_object_dtor, /* A destructor which finalizes a subobject of some larger object. */ base_object_dtor }; /* Return non-zero iff NAME is the mangled name of a destructor. Actually, return an `enum dtor_kind' value describing what *kind* of destructor it is. */ extern enum dtor_kinds is_destructor_name (const char *name); /* Return non-zero iff NAME is the mangled name of a vtable. */ extern int is_vtable_name (const char *name); /* Return non-zero iff NAME is the un-mangled name of an operator, perhaps scoped within some class. */ extern int is_operator_name (const char *name); /* Return an object's virtual function as a value. VALUEP is a pointer to a pointer to a value, holding the object whose virtual function we want to invoke. If the ABI requires a virtual function's caller to adjust the `this' pointer by an amount retrieved from the vtable before invoking the function (i.e., we're not using "vtable thunks" to do the adjustment automatically), then this function may set *VALUEP to point to a new object with an appropriately tweaked address. The J'th element of the overload set F is the virtual function of *VALUEP we want to invoke. TYPE is the base type of *VALUEP whose method we're invoking --- this is the type containing F. OFFSET is the offset of that base type within *VALUEP. */ extern struct value *value_virtual_fn_field (struct value **valuep, struct fn_field *f, int j, struct type *type, int offset); /* Try to find the run-time type of VALUE, using C++ run-time type information. Return the run-time type, or zero if we can't figure it out. If we do find the run-time type: - Set *FULL to non-zero if VALUE already contains the complete run-time object, not just some embedded base class of the object. - Set *TOP and *USING_ENC to indicate where the enclosing object starts relative to VALUE: - If *USING_ENC is zero, then *TOP is the offset from the start of the complete object to the start of the embedded subobject VALUE represents. In other words, the enclosing object starts at VALUE_ADDR (VALUE) + VALUE_OFFSET (VALUE) + value_embedded_offset (VALUE) + *TOP - If *USING_ENC is non-zero, then *TOP is the offset from the address of the complete object to the enclosing object stored in VALUE. In other words, the enclosing object starts at VALUE_ADDR (VALUE) + VALUE_OFFSET (VALUE) + *TOP. If VALUE's type and enclosing type are the same, then these two cases are equivalent. FULL, TOP, and USING_ENC can each be zero, in which case we don't provide the corresponding piece of information. */ extern struct type *value_rtti_type (struct value *value, int *full, int *top, int *using_enc); /* Compute the offset of the baseclass which is the INDEXth baseclass of class TYPE, for value at VALADDR (in host) at ADDRESS (in target), offset by EMBEDDED_OFFSET. VALADDR points to the raw contents of VAL. The result is the offset of the baseclass value relative to (the address of)(ARG) + OFFSET. */ extern int baseclass_offset (struct type *type, int index, const gdb_byte *valaddr, int embedded_offset, CORE_ADDR address, const struct value *val); /* Describe the target of a pointer to method. CONTENTS is the byte pattern representing the pointer to method. TYPE is the pointer to method type. STREAM is the stream to print it to. */ void cplus_print_method_ptr (const gdb_byte *contents, struct type *type, struct ui_file *stream); /* Return the size of a pointer to member function of type TO_TYPE. */ int cplus_method_ptr_size (struct type *to_type); /* Return the method which should be called by applying METHOD_PTR to *THIS_P, and adjust *THIS_P if necessary. */ struct value *cplus_method_ptr_to_value (struct value **this_p, struct value *method_ptr); /* Create the byte pattern in CONTENTS representing a pointer of type TYPE to member function at ADDRESS (if IS_VIRTUAL is 0) or with virtual table offset ADDRESS (if IS_VIRTUAL is 1). This is the opposite of cplus_method_ptr_to_value. */ void cplus_make_method_ptr (struct type *type, gdb_byte *CONTENTS, CORE_ADDR address, int is_virtual); /* Print the vtable for VALUE, if there is one. If there is no vtable, print a message, but do not throw. */ void cplus_print_vtable (struct value *value); /* Implement 'typeid': find the type info for VALUE, if possible. If the type info cannot be found, throw an exception. */ extern struct value *cplus_typeid (struct value *value); /* Return the type of 'typeid' for the current C++ ABI on the given architecture. */ extern struct type *cplus_typeid_type (struct gdbarch *gdbarch); /* Given a value which holds a pointer to a std::type_info, return the type which that type_info represents. Throw an exception if the type cannot be found. */ extern struct type *cplus_type_from_type_info (struct value *value); /* Given a value which holds a pointer to a std::type_info, return the name of the type which that type_info represents. Throw an exception if the type name cannot be found. The result is xmalloc'd and must be freed by the caller. */ extern char *cplus_typename_from_type_info (struct value *value); /* Determine if we are currently in a C++ thunk. If so, get the address of the routine we are thunking to and continue to there instead. */ CORE_ADDR cplus_skip_trampoline (struct frame_info *frame, CORE_ADDR stop_pc); /* Return non-zero if an argument of type TYPE should be passed by reference instead of value. */ extern int cp_pass_by_reference (struct type *type); struct cp_abi_ops { const char *shortname; const char *longname; const char *doc; /* ABI-specific implementations for the functions declared above. */ enum ctor_kinds (*is_constructor_name) (const char *name); enum dtor_kinds (*is_destructor_name) (const char *name); int (*is_vtable_name) (const char *name); int (*is_operator_name) (const char *name); struct value *(*virtual_fn_field) (struct value **arg1p, struct fn_field * f, int j, struct type * type, int offset); struct type *(*rtti_type) (struct value *v, int *full, int *top, int *using_enc); int (*baseclass_offset) (struct type *type, int index, const bfd_byte *valaddr, int embedded_offset, CORE_ADDR address, const struct value *val); void (*print_method_ptr) (const gdb_byte *contents, struct type *type, struct ui_file *stream); int (*method_ptr_size) (struct type *); void (*make_method_ptr) (struct type *, gdb_byte *, CORE_ADDR, int); struct value * (*method_ptr_to_value) (struct value **, struct value *); void (*print_vtable) (struct value *); struct value *(*get_typeid) (struct value *value); struct type *(*get_typeid_type) (struct gdbarch *gdbarch); struct type *(*get_type_from_type_info) (struct value *value); char *(*get_typename_from_type_info) (struct value *value); CORE_ADDR (*skip_trampoline) (struct frame_info *, CORE_ADDR); int (*pass_by_reference) (struct type *type); }; extern int register_cp_abi (struct cp_abi_ops *abi); extern void set_cp_abi_as_auto_default (const char *short_name); #endif
[ "lihuibin705@163.com" ]
lihuibin705@163.com
598c51e9415b85d7e488c6fabfb6c97ae7115f6a
d3f28e804167124ea95a208dabd82d32c7599b0c
/Func.cpp
d93491eb7f59d63995db79a37625fbc6d4b7e17e
[]
no_license
Vlad-ole/Parser_signal_finder
2912219e0fd361641f1771c3501536befa4f16d4
c378e514ddd4f2a0081ad5755090bd9fb2a3ca80
refs/heads/master
2020-05-29T08:46:04.440580
2017-06-30T08:01:29
2017-06-30T08:01:29
69,550,531
0
0
null
null
null
null
UTF-8
C++
false
false
3,261
cpp
#include <iostream> #include <vector> #include <sstream> #include "TF1.h" #include "TGraph.h" #include "Func.h" using namespace std; TGraph* gr0 = 0; double fit_exp(double *x, double *par) { double time = x[0] - par[2]; double fitval; if (time > 0) { fitval = par[0] + par[1] * exp(-time / par[3]); } else { fitval = par[0]; } return fitval; } //integral of signal vector<double> integral_vs_time(vector<double> yv, vector<double> baseline, double time_scale) { vector<double> yv_result; yv_result.resize(yv.size()); double summ = 0; for (int i = 0; i < yv.size(); i++) { summ += (yv[i] - baseline[i]); yv_result[i] = summ * time_scale; } return yv_result; } //find start and stop for future fitting vector< vector<double> > find_start_and_stop(vector<double> yv_der, double th, double time_scale, double dead_time) { vector<double> t_start_V; vector<double> t_stop_V; t_start_V.push_back(1000); // range 0 - 1000 ns is noisy double time_max = 60000; //ns double time_trigg = 0;//??? bool flag = true; double shift = 0;//ns int point_max = (int)(time_max / time_scale); for (int i = 0; i < point_max; i++) { if (yv_der[i] > th && flag) { t_stop_V.push_back(time_scale * i - shift); //[ns] flag = false; time_trigg = time_scale * i; } if (i * time_scale > (time_trigg + dead_time) && !flag) { flag = true; t_start_V.push_back(time_scale * i - shift); } if (yv_der[i] < th && flag && (i == point_max - 1)) { t_stop_V.push_back(time_scale * i); } } vector< vector<double> > result_v; result_v.push_back(t_start_V); result_v.push_back(t_stop_V); return result_v; } vector<double> find_s1_area(vector<double> xv, vector<double> yv, vector< vector<double> > t_start_stop_V, vector<double> baselineV_single) { vector<double> t_start_V = t_start_stop_V[0]; vector<double> t_stop_V = t_start_stop_V[1]; vector<double> result; result.resize(4); //cout << t_start_V.size() << "\t" << t_stop_V.size() << endl; //fit S1 signal if (t_stop_V[0] < 59000) { //cout << "gr0 in find_s1_area before creation" << gr0 << endl; gr0 = new TGraph(yv.size(), &xv[0], &yv[0]); TF1 fitFcn("fitFcn", fit_exp, t_stop_V[0], t_start_V[1], 4); //cout << "gr0 in find_s1_area after creation" << gr0 << endl; fitFcn.SetLineColor(3); fitFcn.SetParLimits(0, baselineV_single[0], baselineV_single[0]); fitFcn.SetParLimits(1, 0, 10); fitFcn.SetParLimits(2, t_stop_V[0], t_start_V[1]); fitFcn.SetParLimits(3, 150, 400);//ns fitFcn.SetParameter(0, baselineV_single[0]); fitFcn.SetParameter(1, 0.5); fitFcn.SetParameter(2, t_stop_V[0]); fitFcn.SetParameter(3, 100); //gr0.Fit("fitFcn", "R+"); gr0->Fit("fitFcn", "RQ"); result[0] = fitFcn.GetParameter(0); result[1] = fitFcn.GetParameter(1); result[2] = fitFcn.GetParameter(2); result[3] = fitFcn.GetParameter(3); //return fitFcn.GetParameter(1) * fitFcn.GetParameter(3); } return result; } double find_s2_area(vector<double> yv_integral, double time_scale) { //rough estimate of S2 double integral_max = 0; for (int i = (int)(60000 / time_scale); i < (int)(100000 / time_scale); i++) { if (yv_integral[i] > integral_max) integral_max = yv_integral[i]; } return integral_max; }
[ "Vlad-ole@mail.ru" ]
Vlad-ole@mail.ru
a8e66bbc0bc80ecf0236cc59a947f87738bfdcd0
7d23b7237a8c435c3c4324f1b59ef61e8b2bde63
/include/database/table_serialize/table.cpp
eca549645814d3f79ed5fba54c3c31091e6f1dae
[]
no_license
chenyu2202863/smart_cpp_lib
af1ec275090bf59af3c29df72b702b94e1e87792
31de423f61998f3b82a14fba1d25653d45e4e719
refs/heads/master
2021-01-13T01:50:49.456118
2016-02-01T07:11:01
2016-02-01T07:11:01
7,198,248
4
3
null
null
null
null
GB18030
C++
false
false
9,110
cpp
#include "table.hpp" #include <vector> #include <map> #include <cassert> #include <numeric> #include <algorithm> namespace database { struct cell { size_t col_index_; size_t row_index_; typedef std::allocator<char> allocator_type; typedef std::basic_string<char, std::char_traits<char>, allocator_type> data_type; data_type data_; cell() : col_index_(0) , row_index_(0) {} cell(size_t col_i, size_t row_i, const void *data, size_t len) : col_index_(col_i) , row_index_(row_i) { data_.resize(len); const char *tmp = static_cast<const char *>(data); std::copy(tmp, tmp + len, data_.begin()); } cell(cell &&rhs) : col_index_(rhs.col_index_) , row_index_(rhs.row_index_) , data_(std::move(rhs.data_)) { } cell &operator=(cell &&rhs) { if( &rhs != this ) { col_index_ = rhs.col_index_; row_index_ = rhs.row_index_; data_ = std::move(rhs.data_); } return *this; } private: cell(const cell &); cell &operator=(const cell &); public: size_t size() const { // 数据属性大小 size_t size = sizeof(row_index_) + sizeof(col_index_) + sizeof(data_.size()) + data_.size(); return size; } void set(size_t col_i, size_t row_i, const void *data, size_t len) { col_index_ = col_i; row_index_ = row_i; data_.resize(len); const char *tmp = static_cast<const char *>(data); std::copy(tmp, tmp + len, data_.begin()); } void clear() { col_index_ = 0; row_index_ = 0; data_.clear(); } }; ostream &operator<<(ostream &os, const cell &val) { os << val.col_index_ << val.row_index_ << val.data_.size(); os.write(val.data_.data(), val.data_.size()); return os; } istream &operator>>(istream &os, cell &val) { size_t size = 0; os >> val.col_index_ >> val.row_index_ >> size; val.data_.resize(size); if( size != 0 ) os.read(&val.data_[0], size); return os; } bool operator==(const cell &lhs, const cell &rhs) { return lhs.col_index_ == rhs.col_index_ && lhs.row_index_ == rhs.row_index_ && lhs.data_.size() == rhs.data_.size() && memcmp(lhs.data_.data(), rhs.data_.data(), rhs.data_.size()) == 0; } bool operator!=(const cell &lhs, const cell &rhs) { return !(lhs == rhs); } class col { friend ostream& operator << (ostream & , const col &); friend istream& operator >> (istream & , col &); friend bool operator==(const col &lhs, const col &rhs); public: typedef std::string name_type; typedef size_t id_type; private: name_type name_; public: col() {} col(const std::string &name) : name_(name) {} col(col &&r) : name_(std::move(r.name_)) { } col &operator=(col &&r) { if( &r != this ) { name_ = std::move(r.name_); } return *this; } private: col(const col &); col &operator=(const col &); public: void name(const name_type &name) { name_ = name; } const name_type &name() const { return name_; } size_t size() const { return sizeof(name_.length()) + name_.length() * sizeof(name_type::value_type); } void clear() { name_.clear(); } }; ostream &operator<<(ostream &os, const col &val) { os << val.name().length(); os.write(val.name().c_str(), val.name().length()); return os; } istream &operator>>(istream &os, col &val) { size_t len = 0; os >> len; if( len != 0 ) { val.name_.resize(len); os.read(&val.name_[0], len); } return os; } bool operator==(const col &lhs, const col &rhs) { return lhs.name_ == rhs.name_; } bool operator!=(const col &lhs, const col &rhs) { return !(lhs == rhs); } class row { typedef std::allocator<cell> allocator_type; typedef std::vector<cell, allocator_type> cells_type; cells_type cells_; friend ostream& operator << (ostream & , const row &); friend istream& operator >> (istream & , row &); friend bool operator==(const row &lhs, const row &rhs); public: row() {} explicit row(size_t cnt) { cells_.resize(cnt); } row(row &&rhs) : cells_(std::move(rhs.cells_)) { } row &operator=(row &&rhs) { if( &rhs != this ) { cells_ = std::move(rhs.cells_); } return *this; } private: row(const row &); row &operator=(const row &); public: cell &operator[](size_t index) { assert(cells_.size() > index); return cells_[index]; } const cell &operator[](size_t index) const { assert(cells_.size() > index); return cells_[index]; } size_t size() const { // 得到所有数据大小 size_t size = sizeof(cells_.size()); size += std::accumulate(cells_.begin(), cells_.end(), 0, [](size_t cnt, const cell &val)->int { cnt += val.size(); return cnt; }); return size; } void reserve(size_t cnt) { cells_.reserve(cnt); } void clear() { std::for_each(cells_.begin(), cells_.end(), [](cell &val) { val.clear(); }); cells_.clear(); } }; ostream &operator<<(ostream &os, const row &val) { os << val.cells_.size(); for(size_t i = 0; i != val.cells_.size(); ++i) { os << val.cells_[i]; } return os; } istream &operator>>(istream &os, row &val) { size_t size = 0; os >> size; val.cells_.resize(size); for(size_t i = 0; i != size; ++i) { os >> val.cells_[i]; } return os; } bool operator==(const row &lhs, const row &rhs) { if( lhs.cells_.size() != rhs.cells_.size() ) return false; for(size_t i = 0; i != rhs.cells_.size(); ++i) { if( rhs.cells_[i] != lhs.cells_[i] ) return false; } return true; } bool operator!=(const row &lhs, const row &rhs) { return !(lhs == rhs); } struct table::impl { typedef std::allocator<col> col_allocator_type; typedef std::allocator<row> row_allocator_type; std::vector<col, col_allocator_type> cols_; std::vector<row, row_allocator_type> rows_; typedef std::allocator<std::pair<const std::string, size_t>> map_allocator_type; typedef std::map<std::string, size_t, std::less<std::string>, map_allocator_type> name_2_index_type; name_2_index_type name_2_index_; }; table::table() : impl_(new impl) { } table::~table() { impl_->~impl(); } void table::reserve_col(size_t max_size) { impl_->cols_.reserve(max_size); } size_t table::insert_col(const col::name_type &name) { impl_->cols_.push_back(col(name)); impl_->name_2_index_[name] = impl_->cols_.size() - 1; return impl_->cols_.size() - 1; } size_t table::insert_row() { impl_->rows_.push_back(row(impl_->cols_.size())); return impl_->rows_.size() - 1; } void table::reserve_row(size_t row_cnt) { impl_->rows_.reserve(row_cnt); } void table::set_cell(size_t col_i, size_t row_i, const void *data, size_t size) { cell &cell_val = impl_->rows_[row_i][col_i]; cell_val.set(col_i, row_i, data, size); } size_t table::size() const { size_t size = sizeof(impl_->cols_.size()) + sizeof(impl_->rows_.size()); size += std::accumulate(impl_->cols_.begin(), impl_->cols_.end(), 0, [](size_t cnt, const col &val)->int { cnt += val.size(); return cnt; }); size += std::accumulate(impl_->rows_.begin(), impl_->rows_.end(), 0, [](size_t cnt, const row &val)->int { cnt += val.size(); return cnt; }); return size; } size_t table::row_cnt() const { return impl_->rows_.size(); } size_t table::col_cnt() const { return impl_->cols_.size(); } const std::string &table::col_name(size_t index) const { return impl_->cols_[index].name(); } std::pair<const char *, size_t> table::get_data(size_t row_i, size_t col_i) const { assert(col_i < impl_->cols_.size() && row_i < impl_->rows_.size()); if( col_i < impl_->cols_.size() && row_i < impl_->rows_.size() ) { const cell::data_type &val = impl_->rows_[row_i][col_i].data_; return std::make_pair(val.data(), val.size()); } return std::make_pair((const char *)0, 0); } std::pair<const char *, size_t> table::get_data(size_t row_i, const std::string &name) const { return get_data(row_i, impl_->name_2_index_[name]); } void table::clear() { std::for_each(impl_->rows_.begin(), impl_->rows_.end(), [](row &val) { val.clear(); }); impl_->rows_.clear(); std::for_each(impl_->cols_.begin(), impl_->cols_.end(), [](col &val) { val.clear(); }); impl_->cols_.clear(); impl_->name_2_index_.clear(); } ostream &operator<<(ostream &os, const table &t) { os << t.impl_->cols_.size(); for(size_t i = 0; i != t.impl_->cols_.size(); ++i) { os << t.impl_->cols_[i]; } os << t.impl_->rows_.size(); for(size_t i = 0; i != t.impl_->rows_.size(); ++i) { os << t.impl_->rows_[i]; } return os; } istream &operator>>(istream &os, table &t) { size_t col_size = 0; os >> col_size; t.impl_->cols_.resize(col_size); for(size_t i = 0; i != col_size; ++i) { os >> t.impl_->cols_[i]; t.impl_->name_2_index_[t.impl_->cols_[i].name()] = i; } size_t row_size = 0; os >> row_size; t.impl_->rows_.resize(row_size); for(size_t i = 0; i != row_size; ++i) { os >> t.impl_->rows_[i]; } return os; } bool operator==(const table &lhs, const table &rhs) { if( lhs.impl_->cols_.size() != rhs.impl_->cols_.size() && lhs .impl_->rows_.size() != rhs.impl_->rows_.size() ) return false; return lhs.impl_->cols_ == rhs.impl_->cols_ && lhs.impl_->rows_ == rhs.impl_->rows_; } bool operator!=(const table &lhs, const table &rhs) { return !(lhs == rhs); } }
[ "chenyu2202863@gmail.com" ]
chenyu2202863@gmail.com
07e01b5d88b4084bc0813e1fe8a433248e2a2240
3b1b28a7b608de0aaec6318872d18a217dfce2b3
/helper/lte-helper.h
1486b9a4ead65166843e82565f482e660c419b45
[]
no_license
piotrlech/ns-3-LTE-Carrier-Aggregation
e31002f12c57e2bba1f7d02dcc5ef5b396c17daa
e7aa0234efbaaec30dd19712225a64ca89090d1e
refs/heads/master
2021-01-10T06:17:59.825304
2016-04-13T10:01:16
2016-04-13T10:01:16
55,409,334
0
0
null
null
null
null
UTF-8
C++
false
false
28,837
h
/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */ /* * Copyright (c) 2011 Centre Tecnologic de Telecomunicacions de Catalunya (CTTC) * Copyright (c) 2015 Danilo Abrignani * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation; * * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * Author: Nicola Baldo <nbaldo@cttc.es> * Danilo Abrignani <danilo.abrignani@unibo.it> (Carrier Aggregation - GSoC 2015) */ #ifndef LTE_HELPER_H #define LTE_HELPER_H #include <ns3/config.h> #include <ns3/simulator.h> #include <ns3/names.h> #include <ns3/net-device.h> #include <ns3/net-device-container.h> #include <ns3/node.h> #include <ns3/node-container.h> #include <ns3/eps-bearer.h> #include <ns3/phy-stats-calculator.h> #include <ns3/phy-tx-stats-calculator.h> #include <ns3/phy-rx-stats-calculator.h> #include <ns3/mac-stats-calculator.h> #include <ns3/radio-bearer-stats-calculator.h> #include <ns3/radio-bearer-stats-connector.h> #include <ns3/epc-tft.h> #include <ns3/mobility-model.h> #include <ns3/component-carrier-enb.h> #include <map> namespace ns3 { class LteUePhy; class LteEnbPhy; class SpectrumChannel; class EpcHelper; class PropagationLossModel; class SpectrumPropagationLossModel; /** * \ingroup lte * * Creation and configuration of LTE entities. One LteHelper instance is * typically enough for an LTE simulation. To create it: * * Ptr<LteHelper> lteHelper = CreateObject<LteHelper> (); * * The general responsibility of the helper is to create various LTE objects * and arrange them together to make the whole LTE system. The overall * arrangement would look like the following: * - Downlink spectrum channel * + Path loss model * + Fading model * - Uplink spectrum channel * + Path loss model * + Fading model * - eNodeB node(s) * + Mobility model * + eNodeB device(s) * * Antenna model * * eNodeB PHY (includes spectrum PHY, interference model, HARQ model) * * eNodeB MAC * * eNodeB RRC (includes RRC protocol) * * Scheduler * * Handover algorithm * * FFR (frequency reuse) algorithm * * ANR (automatic neighbour relation) * * CCS (Carrier Component Selection) algorithm * + EPC related models (EPC application, Internet stack, X2 interface) * - UE node(s) * + Mobility model * + UE device(s) * * Antenna model * * UE PHY (includes spectrum PHY, interference model, HARQ model) * * UE MAC * * UE RRC (includes RRC protocol) * * NAS * - EPC helper * - Various statistics calculator objects * * Spetrum channels are created automatically: one for DL, and one for UL. * eNodeB devices are created by calling InstallEnbDevice(), while UE devices * are created by calling InstallUeDevice(). EPC helper can be set by using * SetEpcHelper(). */ class LteHelper : public Object { public: LteHelper (void); virtual ~LteHelper (void); /** * Register this type. * \return The object TypeId. */ static TypeId GetTypeId (void); virtual void DoDispose (void); /** * Set the EpcHelper to be used to setup the EPC network in * conjunction with the setup of the LTE radio access network. * * \note if no EpcHelper is ever set, then LteHelper will default * to creating an LTE-only simulation with no EPC, using LteRlcSm as * the RLC model, and without supporting any IP networking. In other * words, it will be a radio-level simulation involving only LTE PHY * and MAC and the FF Scheduler, with a saturation traffic model for * the RLC. * * \param h a pointer to the EpcHelper to be used */ void SetEpcHelper (Ptr<EpcHelper> h); /** * Set the type of path loss model to be used for both DL and UL channels. * * \param type type of path loss model, must be a type name of any class * inheriting from ns3::PropagationLossModel, for example: * "ns3::FriisPropagationLossModel" */ void SetPathlossModelType (std::string type); /** * Set an attribute for the path loss models to be created. * * \param n the name of the attribute * \param v the value of the attribute */ void SetPathlossModelAttribute (std::string n, const AttributeValue &v); /** * Set the type of scheduler to be used by eNodeB devices. * * \param type type of scheduler, must be a type name of any class * inheriting from ns3::FfMacScheduler, for example: * "ns3::PfFfMacScheduler" * * Equivalent with setting the `Scheduler` attribute. */ void SetSchedulerType (std::string type); /** * * \return the scheduler type */ std::string GetSchedulerType () const; /** * Set an attribute for the scheduler to be created. * * \param n the name of the attribute * \param v the value of the attribute */ void SetSchedulerAttribute (std::string n, const AttributeValue &v); /** * Set the type of FFR algorithm to be used by eNodeB devices. * * \param type type of FFR algorithm, must be a type name of any class * inheriting from ns3::LteFfrAlgorithm, for example: * "ns3::LteFrNoOpAlgorithm" * * Equivalent with setting the `FfrAlgorithm` attribute. */ void SetFfrAlgorithmType (std::string type); /** * * \return the FFR algorithm type */ std::string GetFfrAlgorithmType () const; /** * Set an attribute for the FFR algorithm to be created. * * \param n the name of the attribute * \param v the value of the attribute */ void SetFfrAlgorithmAttribute (std::string n, const AttributeValue &v); /** * Set the type of handover algorithm to be used by eNodeB devices. * * \param type type of handover algorithm, must be a type name of any class * inheriting from ns3::LteHandoverAlgorithm, for example: * "ns3::NoOpHandoverAlgorithm" * * Equivalent with setting the `HandoverAlgorithm` attribute. */ void SetHandoverAlgorithmType (std::string type); /** * * \return the handover algorithm type */ std::string GetHandoverAlgorithmType () const; /** * Set an attribute for the handover algorithm to be created. * * \param n the name of the attribute * \param v the value of the attribute */ void SetHandoverAlgorithmAttribute (std::string n, const AttributeValue &v); /** * Set an attribute for the eNodeB devices (LteEnbNetDevice) to be created. * * \param n the name of the attribute. * \param v the value of the attribute */ void SetEnbDeviceAttribute (std::string n, const AttributeValue &v); /** * Set the type of antenna model to be used by eNodeB devices. * * \param type type of antenna model, must be a type name of any class * inheriting from ns3::AntennaModel, for example: * "ns3::IsotropicAntennaModel" */ void SetEnbAntennaModelType (std::string type); /** * Set an attribute for the eNodeB antenna model to be created. * * \param n the name of the attribute. * \param v the value of the attribute */ void SetEnbAntennaModelAttribute (std::string n, const AttributeValue &v); /** * Set an attribute for the UE devices (LteUeNetDevice) to be created. * * \param n the name of the attribute. * \param v the value of the attribute */ void SetUeDeviceAttribute (std::string n, const AttributeValue &v); /** * Set the type of antenna model to be used by UE devices. * * \param type type of antenna model, must be a type name of any class * inheriting from ns3::AntennaModel, for example: * "ns3::IsotropicAntennaModel" */ void SetUeAntennaModelType (std::string type); /** * Set an attribute for the UE antenna model to be created. * * \param n the name of the attribute * \param v the value of the attribute */ void SetUeAntennaModelAttribute (std::string n, const AttributeValue &v); /** * This method is used to send the ComponentCarrier map created with CcHelper * to the helper, the structure will be used within InstallSingleEnbDevice * * \param ccmap, the component carrier map */ void SetEnbCc (std::map< uint8_t, Ptr<ComponentCarrierEnb> > ccmap); /** * Set the type of spectrum channel to be used in both DL and UL. * * \param type type of spectrum channel model, must be a type name of any * class inheriting from ns3::SpectrumChannel, for example: * "ns3::MultiModelSpectrumChannel" */ void SetSpectrumChannelType (std::string type); /** * Set an attribute for the spectrum channel to be created (both DL and UL). * * \param n the name of the attribute * \param v the value of the attribute */ void SetSpectrumChannelAttribute (std::string n, const AttributeValue &v); /** * Set the type of carrier component algorithm to be used by eNodeB devices. * * \param type type of carrier component algorithm, must be a type name of any class * inheriting from ns3::LteCcsAlgorithm, for example: * "ns3::NoOpCcsAlgorithm" * * Equivalent with setting the `CcsAlgorithm` attribute. */ void SetEnbComponentCarrierManagerType (std::string type); /** * * \return the carrier enb component carrier manager type */ std::string GetEnbComponentCarrierManagerType () const; /** * Set an attribute for the enb component carrier manager to be created. * * \param n the name of the attribute * \param v the value of the attribute */ void SetEnbComponentCarrierManagerAttribute (std::string n, const AttributeValue &v); /** * Set the type of Component Carrier Manager to be used by Ue devices. * * \param type type of Component Carrier Manager, must be a type name of any class * inheriting from ns3::LteCcsAlgorithm, for example: * "ns3::NoOpCcsAlgorithm" * * Equivalent with setting the `CcsAlgorithm` attribute. */ void SetUeComponentCarrierManagerType (std::string type); /** * * \return the carrier ue component carrier manager type */ std::string GetUeComponentCarrierManagerType () const; /** * Set an attribute for the ue component carrier manager to be created. * * \param n the name of the attribute * \param v the value of the attribute */ void SetUeComponentCarrierManagerAttribute (std::string n, const AttributeValue &v); /** * Create a set of eNodeB devices. * * \param c the node container where the devices are to be installed * \return the NetDeviceContainer with the newly created devices */ NetDeviceContainer InstallEnbDevice (NodeContainer c); /** * Create a set of UE devices. * * \param c the node container where the devices are to be installed * \return the NetDeviceContainer with the newly created devices */ NetDeviceContainer InstallUeDevice (NodeContainer c); void test(NodeContainer c); /** * \brief Enables automatic attachment of a set of UE devices to a suitable * cell using Idle mode initial cell selection procedure. * \param ueDevices the set of UE devices to be attached * * By calling this, the UE will start the initial cell selection procedure at * the beginning of simulation. In addition, the function also instructs each * UE to immediately enter CONNECTED mode and activates the default EPS * bearer. * * If this function is called when the UE is in a situation where entering * CONNECTED mode is not possible (e.g. before the simulation begin), then the * UE will attempt to connect at the earliest possible time (e.g. after it * camps to a suitable cell). * * Note that this function can only be used in EPC-enabled simulation. */ void Attach (NetDeviceContainer ueDevices); /** * \brief Enables automatic attachment of a UE device to a suitable cell * using Idle mode initial cell selection procedure. * \param ueDevice the UE device to be attached * * By calling this, the UE will start the initial cell selection procedure at * the beginning of simulation. In addition, the function also instructs the * UE to immediately enter CONNECTED mode and activates the default EPS * bearer. * * If this function is called when the UE is in a situation where entering * CONNECTED mode is not possible (e.g. before the simulation begin), then the * UE will attempt to connect at the earliest possible time (e.g. after it * camps to a suitable cell). * * Note that this function can only be used in EPC-enabled simulation. */ void Attach (Ptr<NetDevice> ueDevice); /** * \brief Manual attachment of a set of UE devices to the network via a given * eNodeB. * \param ueDevices the set of UE devices to be attached * \param enbDevice the destination eNodeB device * * In addition, the function also instructs each UE to immediately enter * CONNECTED mode and activates the default EPS bearer. * * The function can be used in both LTE-only and EPC-enabled simulations. * Note that this function will disable Idle mode initial cell selection * procedure. */ void Attach (NetDeviceContainer ueDevices, Ptr<NetDevice> enbDevice); /** * \brief Manual attachment of a UE device to the network via a given eNodeB. * \param ueDevice the UE device to be attached * \param enbDevice the destination eNodeB device * * In addition, the function also instructs the UE to immediately enter * CONNECTED mode and activates the default EPS bearer. * * The function can be used in both LTE-only and EPC-enabled simulations. * Note that this function will disable Idle mode initial cell selection * procedure. */ void Attach (Ptr<NetDevice> ueDevice, Ptr<NetDevice> enbDevice); /** * \brief Manual attachment of a set of UE devices to the network via the * closest eNodeB (with respect to distance) among those in the set. * \param ueDevices the set of UE devices to be attached * \param enbDevices the set of eNodeB devices to be considered * * This function finds among the eNodeB set the closest eNodeB for each UE, * and then invokes manual attachment between the pair. * * Users are encouraged to use automatic attachment (Idle mode cell selection) * instead of this function. * * \sa LteHelper::Attach(NetDeviceContainer ueDevices); */ void AttachToClosestEnb (NetDeviceContainer ueDevices, NetDeviceContainer enbDevices); /** * \brief Manual attachment of a UE device to the network via the closest * eNodeB (with respect to distance) among those in the set. * \param ueDevice the UE device to be attached * \param enbDevices the set of eNodeB devices to be considered * * This function finds among the eNodeB set the closest eNodeB for the UE, * and then invokes manual attachment between the pair. * * Users are encouraged to use automatic attachment (Idle mode cell selection) * instead of this function. * * \sa LteHelper::Attach(Ptr<NetDevice> ueDevice); */ void AttachToClosestEnb (Ptr<NetDevice> ueDevice, NetDeviceContainer enbDevices); /** * Activate a dedicated EPS bearer on a given set of UE devices. * * \param ueDevices the set of UE devices * \param bearer the characteristics of the bearer to be activated * \param tft the Traffic Flow Template that identifies the traffic to go on this bearer */ uint8_t ActivateDedicatedEpsBearer (NetDeviceContainer ueDevices, EpsBearer bearer, Ptr<EpcTft> tft); /** * Activate a dedicated EPS bearer on a given UE device. * * \param ueDevice the UE device * \param bearer the characteristics of the bearer to be activated * \param tft the Traffic Flow Template that identifies the traffic to go on this bearer. */ uint8_t ActivateDedicatedEpsBearer (Ptr<NetDevice> ueDevice, EpsBearer bearer, Ptr<EpcTft> tft); /** * \brief Manually trigger dedicated bearer de-activation at specific simulation time * \param ueDevice the UE on which dedicated bearer to be de-activated must be of the type LteUeNetDevice * \param enbDevice eNB, must be of the type LteEnbNetDevice * \param bearerId Bearer Identity which is to be de-activated * * \warning Requires the use of EPC mode. See SetEpcHelper() method. */ void DeActivateDedicatedEpsBearer (Ptr<NetDevice> ueDevice, Ptr<NetDevice> enbDevice, uint8_t bearerId); /** * Create an X2 interface between all the eNBs in a given set. * * \param enbNodes the set of eNB nodes */ void AddX2Interface (NodeContainer enbNodes); /** * Create an X2 interface between two eNBs. * * \param enbNode1 one eNB of the X2 interface * \param enbNode2 the other eNB of the X2 interface */ void AddX2Interface (Ptr<Node> enbNode1, Ptr<Node> enbNode2); /** * Manually trigger an X2-based handover. * * \param hoTime when the handover shall be initiated * \param ueDev the UE that hands off, must be of the type LteUeNetDevice * \param sourceEnbDev source eNB, must be of the type LteEnbNetDevice * (originally the UE is attached to this eNB) * \param targetEnbDev target eNB, must be of the type LteEnbNetDevice * (the UE would be connected to this eNB after the * handover) * * \warning Requires the use of EPC mode. See SetEpcHelper() method */ void HandoverRequest (Time hoTime, Ptr<NetDevice> ueDev, Ptr<NetDevice> sourceEnbDev, Ptr<NetDevice> targetEnbDev); /** * Activate a Data Radio Bearer on a given UE devices (for LTE-only simulation). * * \param ueDevices the set of UE devices * \param bearer the characteristics of the bearer to be activated */ void ActivateDataRadioBearer (NetDeviceContainer ueDevices, EpsBearer bearer); /** * Activate a Data Radio Bearer on a UE device (for LTE-only simulation). * This method will schedule the actual activation * the bearer so that it happens after the UE got connected. * * \param ueDevice the UE device * \param bearer the characteristics of the bearer to be activated */ void ActivateDataRadioBearer (Ptr<NetDevice> ueDevice, EpsBearer bearer); /** * Set the type of fading model to be used in both DL and UL. * * \param type type of fading model, must be a type name of any class * inheriting from ns3::SpectrumPropagationLossModel, for * example: "ns3::TraceFadingLossModel" */ void SetFadingModel (std::string type); /** * Set an attribute for the fading model to be created (both DL and UL). * * \param n the name of the attribute * \param v the value of the attribute */ void SetFadingModelAttribute (std::string n, const AttributeValue &v); /** * Enables full-blown logging for major components of the LENA architecture. */ void EnableLogComponents (void); /** * Enables trace sinks for PHY, MAC, RLC and PDCP. To make sure all nodes are * traced, traces should be enabled once all UEs and eNodeBs are in place and * connected, just before starting the simulation. */ void EnableTraces (void); /** * Enable trace sinks for PHY layer. */ void EnablePhyTraces (void); /** * Enable trace sinks for DL PHY layer. */ void EnableDlPhyTraces (void); /** * Enable trace sinks for UL PHY layer. */ void EnableUlPhyTraces (void); /** * Enable trace sinks for DL transmission PHY layer. */ void EnableDlTxPhyTraces (void); /** * Enable trace sinks for UL transmission PHY layer. */ void EnableUlTxPhyTraces (void); /** * Enable trace sinks for DL reception PHY layer. */ void EnableDlRxPhyTraces (void); /** * Enable trace sinks for UL reception PHY layer. */ void EnableUlRxPhyTraces (void); /** * Enable trace sinks for MAC layer. */ void EnableMacTraces (void); /** * Enable trace sinks for DL MAC layer. */ void EnableDlMacTraces (void); /** * Enable trace sinks for UL MAC layer. */ void EnableUlMacTraces (void); /** * Enable trace sinks for RLC layer. */ void EnableRlcTraces (void); /** * * \return the RLC stats calculator object */ Ptr<RadioBearerStatsCalculator> GetRlcStats (void); /** * Enable trace sinks for PDCP layer */ void EnablePdcpTraces (void); /** * * \return the PDCP stats calculator object */ Ptr<RadioBearerStatsCalculator> GetPdcpStats (void); /** * Assign a fixed random variable stream number to the random variables used. * * The InstallEnbDevice() or InstallUeDevice method should have previously * been called by the user on the given devices. * * If TraceFadingLossModel has been set as the fading model type, this method * will also assign a stream number to it, if none has been assigned before. * * \param c NetDeviceContainer of the set of net devices for which the * LteNetDevice should be modified to use a fixed stream * \param stream first stream index to use * \return the number of stream indices (possibly zero) that have been assigned */ int64_t AssignStreams (NetDeviceContainer c, int64_t stream); protected: // inherited from Object virtual void DoInitialize (void); private: /** * Create an eNodeB device (LteEnbNetDevice) on the given node. * \param n the node where the device is to be installed * \return pointer to the created device */ Ptr<NetDevice> InstallSingleEnbDevice (Ptr<Node> n); /** * Create a UE device (LteUeNetDevice) on the given node * \param n the node where the device is to be installed * \return pointer to the created device */ Ptr<NetDevice> InstallSingleUeDevice (Ptr<Node> n); /** * The actual function to trigger a manual handover. * \param ueDev the UE that hands off, must be of the type LteUeNetDevice * \param sourceEnbDev source eNB, must be of the type LteEnbNetDevice * (originally the UE is attached to this eNB) * \param targetEnbDev target eNB, must be of the type LteEnbNetDevice * (the UE would be connected to this eNB after the * handover) * * This method is normally scheduled by HandoverRequest() to run at a specific * time where a manual handover is desired by the simulation user. */ void DoHandoverRequest (Ptr<NetDevice> ueDev, Ptr<NetDevice> sourceEnbDev, Ptr<NetDevice> targetEnbDev); /** * \brief The actual function to trigger a manual bearer de-activation * \param ueDevice the UE on which bearer to be de-activated must be of the type LteUeNetDevice * \param enbDevice eNB, must be of the type LteEnbNetDevice * \param bearerId Bearer Identity which is to be de-activated * * This method is normally scheduled by DeActivateDedicatedEpsBearer() to run at a specific * time when a manual bearer de-activation is desired by the simulation user. */ void DoDeActivateDedicatedEpsBearer (Ptr<NetDevice> ueDevice, Ptr<NetDevice> enbDevice, uint8_t bearerId); void ChannelModelInitialized (void); /** * \brief This function just create the enb ComponentCarrierMap when CA is not enabled */ void DoCreateEnbComponentCarrierMap (uint16_t ulearfc, uint16_t dlearfcn, uint8_t ulbw, uint8_t dlbw); /// The downlink LTE channel used in the simulation. std::vector <Ptr<SpectrumChannel> > m_downlinkChannel; /// The uplink LTE channel used in the simulation. std::vector< Ptr<SpectrumChannel> > m_uplinkChannel; /// The path loss model used in the downlink channel. std::vector< Ptr<Object> > m_downlinkPathlossModel; /// The path loss model used in the uplink channel. std::vector< Ptr<Object> > m_uplinkPathlossModel; /// Factory of MAC scheduler object. ObjectFactory m_schedulerFactory; /// Factory of FFR (frequency reuse) algorithm object. ObjectFactory m_ffrAlgorithmFactory; /// Factory of handover algorithm object. ObjectFactory m_handoverAlgorithmFactory; /// Factory of enb component carrier manager object. ObjectFactory m_enbComponentCarrierManagerFactory; /// Factory of ue component carrier manager object. ObjectFactory m_ueComponentCarrierManagerFactory; /// Factory of LteEnbNetDevice objects. ObjectFactory m_enbNetDeviceFactory; /// Factory of antenna object for eNodeB. ObjectFactory m_enbAntennaModelFactory; /// Factory for LteUeNetDevice objects. ObjectFactory m_ueNetDeviceFactory; /// Factory of antenna object for UE. ObjectFactory m_ueAntennaModelFactory; /// Factory of path loss model object for the downlink channel. ObjectFactory m_dlPathlossModelFactory; /// Factory of path loss model object for the uplink channel. ObjectFactory m_ulPathlossModelFactory; /// Factory of both the downlink and uplink LTE channels. ObjectFactory m_channelFactory; /// Name of fading model type, e.g., "ns3::TraceFadingLossModel". std::string m_fadingModelType; /// Factory of fading model object for both the downlink and uplink channels. ObjectFactory m_fadingModelFactory; /// The fading model used in both the downlink and uplink channels. Ptr<SpectrumPropagationLossModel> m_fadingModule; /** * True if a random variable stream number has been assigned for the fading * model. Used to prevent such assignment to be done more than once. */ bool m_fadingStreamsAssigned; /// Container of PHY layer statistics. Ptr<PhyStatsCalculator> m_phyStats; /// Container of PHY layer statistics related to transmission. Ptr<PhyTxStatsCalculator> m_phyTxStats; /// Container of PHY layer statistics related to reception. Ptr<PhyRxStatsCalculator> m_phyRxStats; /// Container of MAC layer statistics. Ptr<MacStatsCalculator> m_macStats; /// Container of RLC layer statistics. Ptr<RadioBearerStatsCalculator> m_rlcStats; /// Container of PDCP layer statistics. Ptr<RadioBearerStatsCalculator> m_pdcpStats; /// Connects RLC and PDCP statistics containers to appropriate trace sources RadioBearerStatsConnector m_radioBearerStatsConnector; /** * Helper which provides implementation of core network. Initially empty * (i.e., LTE-only simulation without any core network) and then might be * set using SetEpcHelper(). */ Ptr<EpcHelper> m_epcHelper; /** * Keep track of the number of IMSI allocated. Increases by one every time a * new UE is installed (by InstallSingleUeDevice()). The first UE will have * an IMSI of 1. The maximum number of UE is 2^64 (~4.2e9). */ uint64_t m_imsiCounter; /** * Keep track of the number of cell ID allocated. Increases by one every time * a new eNodeB is installed (by InstallSingleEnbDevice()). The first eNodeB * will have a cell ID of 1. The maximum number of eNodeB is 65535. */ uint16_t m_cellIdCounter; /** * The `UseIdealRrc` attribute. If true, LteRrcProtocolIdeal will be used for * RRC signaling. If false, LteRrcProtocolReal will be used. */ bool m_useIdealRrc; /** * The `AnrEnabled` attribute. Activate or deactivate Automatic Neighbour * Relation function. */ bool m_isAnrEnabled; /** * The `UsePdschForCqiGeneration` attribute. If true, DL-CQI will be * calculated from PDCCH as signal and PDSCH as interference. If false, * DL-CQI will be calculated from PDCCH as signal and PDCCH as interference. */ bool m_usePdschForCqiGeneration; /** * The `UseCa` attribute. If true, Carrier Aggregation is enable. * Hence, the helper will wait for a valid component carrier map * If it is false, the component carrier will be created within the LteHelper * this is to mantain the backwards compatibility with user script */ bool m_useCa; /** * This contains all the information about each component carrier * Moreover, there is also a pointer to LteEnbPhy Object. */ std::map< uint8_t, Ptr<ComponentCarrierEnb> > m_enbComponentCarrierMap; uint16_t m_noOfCcs; }; // end of `class LteHelper` } // namespace ns3 #endif // LTE_HELPER_H
[ "piotr.lechowicz@gmail.com" ]
piotr.lechowicz@gmail.com
525f5a4142042821bdb80d4c695abd7bfa50e825
93ad5d825d1f40a4080c33ba728951f4a36c9a21
/src/midi/tests/02-midi/05-notes/03-event-multicaster-tests.cpp
fe183c63ddb5673a97aa58c19c702e90bcd0c53b
[]
no_license
UCLeuvenLimburg/midi-project-student
38f4971529b9e4d1d0e4a8346fa11844e8b3dc41
dd19ca859073f0778ab9578d1545fc22383afdbd
refs/heads/master
2022-05-11T03:50:37.067059
2022-03-28T12:16:07
2022-03-28T12:16:07
171,903,152
1
11
null
2020-06-07T18:08:12
2019-02-21T16:08:13
Objective-C
UTF-8
C++
false
false
7,937
cpp
#ifdef TEST_BUILD #define CATCH_CONFIG_PREFIX_ALL #define TEST_CASE CATCH_TEST_CASE #include "tests/tests-util.h" #include <vector> #include <functional> using namespace testutils; std::unique_ptr<uint8_t[]> copy_string_to_char_array(const std::string& string) { auto result = std::make_unique<uint8_t[]>(string.size() + 1); for (size_t i = 0; i != string.size(); ++i) { result[i] = string[i]; } result[string.size()] = 0; return std::move(result); } TEST_CASE("Multicaster test, one receiver, one event (note on)") { auto create_receiver = []() { return std::shared_ptr<TestEventReceiver>(Builder().note_on(midi::Duration(1), midi::Channel(2), midi::NoteNumber(3), 4).build().release()); }; std::vector<std::shared_ptr<TestEventReceiver>> receivers{ create_receiver() }; midi::EventMulticaster multicaster(std::vector<std::shared_ptr<midi::EventReceiver>>(receivers.begin(), receivers.end())); multicaster.note_on(midi::Duration(1), midi::Channel(2), midi::NoteNumber(3), 4); for (auto receiver : receivers) { receiver->check_finished(); } } TEST_CASE("Multicaster test, one receiver, one event (note off)") { auto create_receiver = []() { return std::shared_ptr<TestEventReceiver>(Builder().note_off(midi::Duration(1), midi::Channel(2), midi::NoteNumber(3), 4).build().release()); }; std::vector<std::shared_ptr<TestEventReceiver>> receivers{ create_receiver() }; midi::EventMulticaster multicaster(std::vector<std::shared_ptr<midi::EventReceiver>>(receivers.begin(), receivers.end())); multicaster.note_off(midi::Duration(1), midi::Channel(2), midi::NoteNumber(3), 4); for (auto receiver : receivers) { receiver->check_finished(); } } TEST_CASE("Multicaster test, one receiver, one event (polyphonic key pressure)") { auto create_receiver = []() { return std::shared_ptr<TestEventReceiver>(Builder().polyphonic_key_pressure(midi::Duration(10), midi::Channel(5), midi::NoteNumber(20), 30).build().release()); }; std::vector<std::shared_ptr<TestEventReceiver>> receivers{ create_receiver() }; midi::EventMulticaster multicaster(std::vector<std::shared_ptr<midi::EventReceiver>>(receivers.begin(), receivers.end())); multicaster.polyphonic_key_pressure(midi::Duration(10), midi::Channel(5), midi::NoteNumber(20), 30); for (auto receiver : receivers) { receiver->check_finished(); } } TEST_CASE("Multicaster test, one receiver, one event (control change)") { auto create_receiver = []() { return std::shared_ptr<TestEventReceiver>(Builder().control_change(midi::Duration(5), midi::Channel(6), 7, 8).build().release()); }; std::vector<std::shared_ptr<TestEventReceiver>> receivers{ create_receiver() }; midi::EventMulticaster multicaster(std::vector<std::shared_ptr<midi::EventReceiver>>(receivers.begin(), receivers.end())); multicaster.control_change(midi::Duration(5), midi::Channel(6), 7, 8); for (auto receiver : receivers) { receiver->check_finished(); } } TEST_CASE("Multicaster test, one receiver, one event (program change)") { auto create_receiver = []() { return std::shared_ptr<TestEventReceiver>(Builder().program_change(midi::Duration(9), midi::Channel(6), midi::Instrument(3)).build().release()); }; std::vector<std::shared_ptr<TestEventReceiver>> receivers{ create_receiver() }; midi::EventMulticaster multicaster(std::vector<std::shared_ptr<midi::EventReceiver>>(receivers.begin(), receivers.end())); multicaster.program_change(midi::Duration(9), midi::Channel(6), midi::Instrument(3)); for (auto receiver : receivers) { receiver->check_finished(); } } TEST_CASE("Multicaster test, one receiver, one event (channel pressure)") { auto create_receiver = []() { return std::shared_ptr<TestEventReceiver>(Builder().channel_pressure(midi::Duration(8), midi::Channel(5), 2).build().release()); }; std::vector<std::shared_ptr<TestEventReceiver>> receivers{ create_receiver() }; midi::EventMulticaster multicaster(std::vector<std::shared_ptr<midi::EventReceiver>>(receivers.begin(), receivers.end())); multicaster.channel_pressure(midi::Duration(8), midi::Channel(5), 2); for (auto receiver : receivers) { receiver->check_finished(); } } TEST_CASE("Multicaster test, one receiver, one event (pitch wheel change)") { auto create_receiver = []() { return std::shared_ptr<TestEventReceiver>(Builder().pitch_wheel_change(midi::Duration(1), midi::Channel(5), 9).build().release()); }; std::vector<std::shared_ptr<TestEventReceiver>> receivers{ create_receiver() }; midi::EventMulticaster multicaster(std::vector<std::shared_ptr<midi::EventReceiver>>(receivers.begin(), receivers.end())); multicaster.pitch_wheel_change(midi::Duration(1), midi::Channel(5), 9); for (auto receiver : receivers) { receiver->check_finished(); } } TEST_CASE("Multicaster test, one receiver, one event (meta)") { std::string data = "fjlsaq"; auto create_receiver = [&data]() { return std::shared_ptr<TestEventReceiver>(Builder().meta(midi::Duration(1), 9, data).build().release()); }; std::vector<std::shared_ptr<TestEventReceiver>> receivers{ create_receiver() }; midi::EventMulticaster multicaster(std::vector<std::shared_ptr<midi::EventReceiver>>(receivers.begin(), receivers.end())); multicaster.meta(midi::Duration(1), 9, copy_string_to_char_array(data), data.size()); for (auto receiver : receivers) { receiver->check_finished(); } } TEST_CASE("Multicaster test, one receiver, two events") { auto create_receiver = []() { return std::shared_ptr<TestEventReceiver>( Builder() .note_on(midi::Duration(0), midi::Channel(0), midi::NoteNumber(0), 255) .note_off(midi::Duration(10), midi::Channel(0), midi::NoteNumber(0), 255) .build() .release()); }; std::vector<std::shared_ptr<TestEventReceiver>> receivers{ create_receiver() }; midi::EventMulticaster multicaster(std::vector<std::shared_ptr<midi::EventReceiver>>(receivers.begin(), receivers.end())); multicaster.note_on(midi::Duration(0), midi::Channel(0), midi::NoteNumber(0), 255); multicaster.note_off(midi::Duration(10), midi::Channel(0), midi::NoteNumber(0), 255); for (auto receiver : receivers) { receiver->check_finished(); } } TEST_CASE("Multicaster test, two receivers, one event") { auto create_receiver = []() { return std::shared_ptr<TestEventReceiver>(Builder().note_on(midi::Duration(0), midi::Channel(0), midi::NoteNumber(0), 255).build().release()); }; std::vector<std::shared_ptr<TestEventReceiver>> receivers{ create_receiver(), create_receiver() }; midi::EventMulticaster multicaster(std::vector<std::shared_ptr<midi::EventReceiver>>(receivers.begin(), receivers.end())); multicaster.note_on(midi::Duration(0), midi::Channel(0), midi::NoteNumber(0), 255); for (auto receiver : receivers) { receiver->check_finished(); } } TEST_CASE("Multicaster test, five receivers, one event") { auto create_receiver = []() { return std::shared_ptr<TestEventReceiver>(Builder().note_on(midi::Duration(1000), midi::Channel(1), midi::NoteNumber(0), 255).build().release()); }; std::vector<std::shared_ptr<TestEventReceiver>> receivers{ create_receiver(), create_receiver(), create_receiver(), create_receiver(), create_receiver() }; midi::EventMulticaster multicaster(std::vector<std::shared_ptr<midi::EventReceiver>>(receivers.begin(), receivers.end())); multicaster.note_on(midi::Duration(1000), midi::Channel(1), midi::NoteNumber(0), 255); for (auto receiver : receivers) { receiver->check_finished(); } } #endif
[ "frederic.vogels@ucll.be" ]
frederic.vogels@ucll.be
a1facb1de91d572574c28f6ff760903f9b5ab46f
879dc5681a36a3df9ae5a7244fa2d9af6bd346d7
/EUS/boole_22_34.cpp
f0850a5a88d11d4760851801fce2469ea8002b5c
[ "BSD-3-Clause" ]
permissive
gachet/booledeusto
9defdba424a64dc7cf7ccd3938d412e3e797552b
fdc110a9add4a5946fabc2055a533593932a2003
refs/heads/master
2022-01-18T21:27:26.810810
2014-01-30T15:20:23
2014-01-30T15:20:23
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,404
cpp
// Do not edit. This file is machine generated by the Resource DLL Wizard. //--------------------------------------------------------------------------- #define PACKAGE __declspec(package) #define USERC(FileName) extern PACKAGE _Dummy #define USERES(FileName) extern PACKAGE _Dummy #define USEFORMRES(FileName, FormName, AncestorName) extern PACKAGE _Dummy #pragma hdrstop int _turboFloat; //--------------------------------------------------------------------------- /*ITE*/ /*LCID:00000C0A:0000042D*/ /**/ /*ITE*/ /*DFMFileType*/ /*src\Boole2\V_Boole2.dfm*/ /*ITE*/ /*RCFileType*/ /*exe\boole_DRC.rc*/ /*ITE*/ /*RCFileType*/ /*src\res\mensajes.rc*/ //--------------------------------------------------------------------------- #pragma resource "src\Boole1\app.dfm" #pragma resource "src\Boole1\calc.dfm" #pragma resource "src\Boole1\uKarnaugh.dfm" #pragma resource "src\Boole1\ExpBool.dfm" #pragma resource "src\Boole1\FormasN.dfm" #pragma resource "src\Boole1\FormSimp.dfm" #pragma resource "src\Boole1\Main.dfm" #pragma resource "src\Boole1\NandNor.dfm" #pragma resource "src\Boole1\NuevoSC.dfm" #pragma resource "src\Boole1\SCCompac.dfm" #pragma resource "src\Boole1\TVComple.dfm" #pragma resource "src\Boole1\TVManual.dfm" #pragma resource "src\Boole2\FCalculando.dfm" #pragma resource "src\Boole2\ayuda.dfm" #pragma resource "src\Boole2\uLog.dfm" #pragma resource "src\Boole2\Unit15.dfm" #pragma resource "src\Boole2\Unit11.dfm" #pragma resource "src\Boole2\Unit12.dfm" #pragma resource "src\Boole2\Unit13.dfm" #pragma resource "src\Boole2\Unit14.dfm" #pragma resource "src\Boole2\Unit10.dfm" USEFORMRES("src\Boole2\V_Boole2.dfm", TForm); #pragma resource "src\Boole2\V_Boole2.dfm" #pragma resource "src\Boole2\Unit2.dfm" #pragma resource "src\Boole2\Unit3.dfm" #pragma resource "src\Boole2\Unit4.dfm" #pragma resource "src\Boole2\Unit5.dfm" #pragma resource "src\Boole2\Unit6.dfm" #pragma resource "src\Boole2\Unit8.dfm" #pragma resource "src\Boole2\Unit9.dfm" #pragma resource "src\Boole2\uSimulacion.dfm" #pragma resource "src\Boole2\Unit16.dfm" #pragma resource "src\Circuito\V_Imprimir.dfm" #pragma resource "src\Circuito\V_Circuito.dfm" #pragma resource "src\Comun\uTextoAsoc.dfm" USERC("exe\boole_DRC.rc"); USERC("src\res\mensajes.rc"); //--------------------------------------------------------------------------- #define DllEntryPoint
[ "luis.rodriguez@opendeusto.es" ]
luis.rodriguez@opendeusto.es
b8925239c800c1578c44c147f72797d706baa31b
f4b88022a4ef061383b93260c3c76bf5ecf2407a
/src/gui/MainWindow.cpp
904de02879112bc225fa4d68723792a78a578c17
[]
no_license
SylvanHuang/mknap_pso
bc03b11841c1c16ae579a3f5e16355d56d2f824d
2624080a204781bafb18230fc90ae6f98bf97826
refs/heads/master
2020-04-01T14:48:24.257639
2014-06-26T08:22:38
2014-06-26T08:22:38
null
0
0
null
null
null
null
UTF-8
C++
false
false
15,082
cpp
#include "MainWindow.h" #include <QMessageBox> #include <QFileDialog> #include <QTableWidgetItem> #include <QTableWidget> #include <QTime> #include <stdexcept> #include <iostream> #include <ctime> namespace mknap_pso { MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent) { setupUi(this); connect(actionOpen_mknap_file, SIGNAL(triggered()), this, SLOT(openFile())); connect(actionExit, SIGNAL(triggered()), this, SLOT(close())); connect(actionAbout, SIGNAL(triggered()), this, SLOT(about())); connect(solveBtn, SIGNAL(clicked()), this, SLOT(solveBtnClicked())); connect(table, SIGNAL(itemClicked(QTableWidgetItem *)), this, SLOT(tableItemClicked(QTableWidgetItem *))); connect(actionSet_parameter, SIGNAL(triggered()), this, SLOT(openSettingsDialog())); connect(actionStart, SIGNAL(triggered()), this, SLOT(toolbarStart())); connect(actionStop, SIGNAL(triggered()), this, SLOT(toolbarStop())); connect(actionNext_Iteration, SIGNAL(triggered()), this, SLOT(toolbarNext())); connect(actionDo_pre_defined_test, SIGNAL(triggered()), this, SLOT(preDefinedTestClicked())); consoleEdit->append("> Choose file with multidimensional (multi-constraint) knapsack problem to solve."); settingsDialog = new SettingsDialog(); plot = new minotaur::MouseMonitorPlot(); plot->init(Qt::blue, "Global best fitness value", "Iteration", "Fitness value"); graphLayout->layout()->addWidget(plot); swarmPlot = new minotaur::MouseMonitorPlot(); swarmPlot->init(Qt::blue, "Particle best fitness value", "Iteration", "Fitness value"); swarmTab->layout()->addWidget(swarmPlot); swarmPlot->setDotStyle(); future = QtConcurrent::run(this, &MainWindow::runFunction); } MainWindow::~MainWindow() { delete settingsDialog; delete plot; } int MainWindow::runFunction() { return solver.solveProblemIteration(); } void MainWindow::toolbarStart() { if (parser.getProblemsReference().size() == 0) { consoleEdit->append("> No problems selected to solve."); return; } plot->clear(); consoleEdit->clear(); solver.setParameters(settingsDialog->getParameters()); swarmPlot->clearCurves(); std::srand(std::time(0)); for (int i = 0; i < settingsDialog->getParameters().getNumberOfParticles(); ++i) { swarmPlot->addCurve(QColor((std::rand() % (255 + 1)), (std::rand() % (255 + 1)), (std::rand() % (255 + 1)))); } QList<QTableWidgetItem *> items = table->selectedItems(); if (items.size() >= 1) { int row = items.at(0)->row(); solver.startSolveProblem(parser.getProblemsReference().at(row)); consoleEdit->append("=================================="); QString outTxt = "> Solving problem " + QString::number(row) + ":"; consoleEdit->append(outTxt); printSwarmToConsole(solver.getSwarmReference()); consoleEdit->append("=================================="); printSwarmToTable(solver.getSwarmReference()); } } int MainWindow::toolbarStop() { if (!solver.isSolving()) return -1; int gBest = solver.stopSolveProblem(); QString outTxt = "> FINAL SOLUTION VALUE: " + QString::number(gBest); consoleEdit->append(outTxt); consoleEdit->append("=================================="); return gBest; } void MainWindow::toolbarNext() { if (!solver.isSolving()) return; consoleEdit->append("----------------------------------"); int gBest = runFunction();//future.result(); printSwarmToTable(solver.getSwarmReference()); printSwarmToConsole(solver.getSwarmReference()); QString outTxt = "> gBest value: " + QString::number(gBest); consoleEdit->append(outTxt); QVector<double> data; data.append(gBest); plot->updatePlot(data); QVector<double> dataSwarm; for (auto &i : solver.getSwarmReference().getParticles()) dataSwarm.append(i.getBestValue()); swarmPlot->updatePlot(dataSwarm); } void MainWindow::solveBtnClicked() { if (parser.getProblemsReference().size() == 0) { consoleEdit->append("> No problems selected to solve."); return; } toolbarStart(); for (int i = 0; i < settingsDialog->getParameters().getIterations(); ++i) { QString outTxt = "> Iteration: " + QString::number(i); consoleEdit->append(outTxt); toolbarNext(); } toolbarStop(); } void MainWindow::openFile() { QString fileName = QFileDialog::getOpenFileName(this, tr("Open mknap problem file"), "", tr("Problem files (*.txt)")); if (fileName == "") return; parser.parseFile(fileName.toStdString()); consoleEdit->append("> Parsed mknap problem file"); nrOfProblemsEdit->setText(QString::number(parser.getProblemsReference().size())); fileNameEdit->setText(fileName); table->clear(); table->setRowCount(0); table->setColumnCount(0); tableDetail->clear(); tableDetail->setRowCount(0); tableDetail->setColumnCount(0); QStringList headerLabels; headerLabels << "Problem" << "Elements" << "Constraints" << "Solution"; table->setColumnCount(4); table->setHorizontalHeaderLabels(headerLabels); table->setEditTriggers(QAbstractItemView::NoEditTriggers); table->horizontalHeader()->setSectionResizeMode(QHeaderView::Stretch); int counter = 0; for (auto i : parser.getProblemsReference()) { table->insertRow(table->rowCount()); table->setItem(table->rowCount() - 1, 0, new QTableWidgetItem(QString::number(counter++))); table->setItem(table->rowCount() - 1, 1, new QTableWidgetItem(QString::number(i->n))); table->setItem(table->rowCount() - 1, 2, new QTableWidgetItem(QString::number(i->m))); table->setItem(table->rowCount() - 1, 3, new QTableWidgetItem(QString::number(i->solution))); } } void MainWindow::tableItemClicked(QTableWidgetItem *item) { tableDetail->clear(); tableDetail->setRowCount(0); tableDetail->setColumnCount(0); std::shared_ptr<KnapsackProblem> problem = parser.getProblemsReference().at(item->row()); tableDetail->setRowCount(problem->m + 1); QStringList headerLabels; headerLabels << "Profit"; for (int i = 0; i < (problem->m); i++) { QString label = "Constraint " + QString::number(i) + " (Capacity: " + QString::number(problem->capacity.at(i)) + ")"; headerLabels << label; } tableDetail->setVerticalHeaderLabels(headerLabels); int j = 0; for (auto &profit : problem->profit) { tableDetail->insertColumn(tableDetail->columnCount()); tableDetail->setItem(0, tableDetail->columnCount() - 1, new QTableWidgetItem(QString::number(profit))); int i = 0; for (auto &constraint : problem->constraint) { tableDetail->setItem(i + 1, tableDetail->columnCount() - 1, new QTableWidgetItem(QString::number(constraint.at(j)))); ++i; } ++j; } } void MainWindow::openSettingsDialog() { settingsDialog->setVisible(true); } void MainWindow::about() { QMessageBox::about(this, tr("About mknap_pso"), "This application solves the mknap problem with discrete binary Particle Swarm Optimization.\n\n" "Author: JeGa\n" "Github: https://github.com/JeGa/mknap_pso"); } void MainWindow::printSwarmToConsole(Swarm &swarm) { int counter = 0; for (auto &i : swarm.getParticles()) { QString outTxt = "> Particle " + QString::number(counter) + ":"; consoleEdit->append(outTxt); consoleEdit->append(getPositionString(i.getPosition())); consoleEdit->append("Velocity: "); consoleEdit->append(getVelocityString(i.getVelocity())); outTxt = "=> pBest " + QString::number(i.getBestValue()); consoleEdit->append(outTxt); ++counter; } } void MainWindow::initSwarmtable() { swarmTable->clear(); swarmTable->setRowCount(0); swarmTable->setColumnCount(0); QStringList headerLabels; headerLabels << "Particle" << "pBest" << "pBest position" << "Position" << "Velocity"; swarmTable->setColumnCount(5); swarmTable->setHorizontalHeaderLabels(headerLabels); swarmTable->setEditTriggers(QAbstractItemView::NoEditTriggers); } void MainWindow::printSwarmToTable(Swarm &swarm) { initSwarmtable(); swarmParticlesEdit->setText(QString::number(swarm.getParticles().size())); swarmPBestEdit->setText(QString::number(swarm.getBestValue())); QString outText; Solution &position = swarm.getBestPosition(); for (auto i : position) outText += QString::number(i); swarmPBestPositionEdit->setText(outText); int counter = 0; for (auto &i : swarm.getParticles()) { swarmTable->insertRow(swarmTable->rowCount()); swarmTable->setItem(swarmTable->rowCount() - 1, 0, new QTableWidgetItem(QString::number(counter++))); swarmTable->setItem(swarmTable->rowCount() - 1, 1, new QTableWidgetItem(QString::number(i.getBestValue()))); swarmTable->setItem(swarmTable->rowCount() - 1, 2, new QTableWidgetItem(getPositionString(i.getBestPosition()))); swarmTable->setItem(swarmTable->rowCount() - 1, 3, new QTableWidgetItem(getPositionString(i.getPosition()))); swarmTable->setItem(swarmTable->rowCount() - 1, 4, new QTableWidgetItem(getVelocityString(i.getVelocity()))); } } QString MainWindow::getPositionString(Solution &position) { QString outText; for (auto i : position) outText += QString::number(i); return outText; } QString MainWindow::getVelocityString(Velocity &velocity) { QString outText; for (auto i : velocity) outText += QString::number(i) + ","; return outText; } //================================================================ void MainWindow::preDefinedTestClicked() { if (parser.getProblemsReference().size() == 0) { consoleEdit->append("> No problems selected to solve."); return; } consoleEdit->clear(); // Problem 1 consoleEdit->append("==================================="); consoleEdit->append("Problem 1"); consoleEdit->append("==================================="); // Change particle number consoleEdit->append(doTest(0, 5, 500, 1.0, 2.0, 2.0, 6.0)); consoleEdit->append(doTest(0, 10, 500, 1.0, 2.0, 2.0, 6.0)); consoleEdit->append(doTest(0, 15, 500, 1.0, 2.0, 2.0, 6.0)); consoleEdit->append(doTest(0, 20, 500, 1.0, 2.0, 2.0, 6.0)); consoleEdit->append(doTest(0, 25, 500, 1.0, 2.0, 2.0, 6.0)); consoleEdit->append(doTest(0, 30, 500, 1.0, 2.0, 2.0, 6.0)); // Change inertia consoleEdit->append(doTest(0, 20, 500, 0.1, 2.0, 2.0, 6.0)); consoleEdit->append(doTest(0, 20, 500, 0.5, 2.0, 2.0, 6.0)); consoleEdit->append(doTest(0, 20, 500, 0.8, 2.0, 2.0, 6.0)); consoleEdit->append(doTest(0, 20, 500, 0.9, 2.0, 2.0, 6.0)); consoleEdit->append(doTest(0, 20, 500, 1.0, 2.0, 2.0, 6.0)); consoleEdit->append(doTest(0, 20, 500, 1.1, 2.0, 2.0, 6.0)); consoleEdit->append(doTest(0, 20, 500, 1.2, 2.0, 2.0, 6.0)); consoleEdit->append(doTest(0, 20, 500, 1.5, 2.0, 2.0, 6.0)); // Change c1 / c2 consoleEdit->append(doTest(0, 20, 500, 1.0, 0.1, 1.0, 6.0)); consoleEdit->append(doTest(0, 20, 500, 1.0, 0.5, 1.0, 6.0)); consoleEdit->append(doTest(0, 20, 500, 1.0, 1.0, 1.0, 6.0)); consoleEdit->append(doTest(0, 20, 500, 1.0, 2.0, 1.0, 6.0)); consoleEdit->append(doTest(0, 20, 500, 1.0, 3.0, 1.0, 6.0)); consoleEdit->append(doTest(0, 20, 500, 1.0, 5.0, 1.0, 6.0)); consoleEdit->append(doTest(0, 20, 500, 1.0, 10.0, 1.0, 6.0)); consoleEdit->append(doTest(0, 20, 500, 1.0, 1.0, 0.1, 6.0)); consoleEdit->append(doTest(0, 20, 500, 1.0, 1.0, 1.0, 6.0)); consoleEdit->append(doTest(0, 20, 500, 1.0, 1.0, 5.0, 6.0)); // Change vMax consoleEdit->append(doTest(0, 20, 500, 1.0, 2.0, 2.0, 0.1)); consoleEdit->append(doTest(0, 20, 500, 1.0, 2.0, 2.0, 0.5)); consoleEdit->append(doTest(0, 20, 500, 1.0, 2.0, 2.0, 1.0)); consoleEdit->append(doTest(0, 20, 500, 1.0, 2.0, 2.0, 2.0)); consoleEdit->append(doTest(0, 20, 500, 1.0, 2.0, 2.0, 3.0)); consoleEdit->append(doTest(0, 20, 500, 1.0, 2.0, 2.0, 4.0)); consoleEdit->append(doTest(0, 20, 500, 1.0, 2.0, 2.0, 5.0)); consoleEdit->append(doTest(0, 20, 500, 1.0, 2.0, 2.0, 10.0)); consoleEdit->append(doTest(0, 20, 500, 1.0, 2.0, 2.0, 20.0)); } QString MainWindow::doTest(int problem, int particles, int iterations, double inertia, double c1, double c2, double vMax) { int globalIt = 30; int gBest, best = INT32_MIN, worse = INT32_MAX; int meanOptimumSum = 0, meanTimeSum = 0; QString str; QTime t; Parameters p; p.set(particles, iterations, inertia, c1, c2, vMax); solver.setParameters(p); for (int j = 0; j < globalIt; ++j) { t.start(); solver.startSolveProblem(parser.getProblemsReference().at(problem)); for (int i = 0; i < p.getIterations(); ++i) runFunction(); gBest = solver.stopSolveProblem(); if (gBest > best) best = gBest; if (gBest < worse) worse = gBest; meanOptimumSum += gBest; meanTimeSum += t.elapsed(); } str = "Mean of " + QString::number(globalIt) + " iterations -> (" + p.toString() + ") " + "Best value: " + QString::number(best) + ", Worst value: " + QString::number(worse) + " Mean Optimum: " + QString::number((double) meanOptimumSum / globalIt) + " Mean Time (ms): " + QString::number((double) meanTimeSum / globalIt); return str; } }
[ "jega@win" ]
jega@win
0d85ebec2f23c3f0468912394565bb82d85baa5f
1af660d6e0ff16032e9fc15228b7029cb35f25c2
/common/World.h
6f41a1e3a6f0d448ba4189bb67820f3292d9b78b
[]
no_license
evaaan/ProjectM
8fe2b76325d1e99c20b862ba991669cced44c75a
06a8fba0fc2d59a857c4a42cb2b63e8d29f7a5f0
refs/heads/master
2023-03-16T12:17:26.425892
2021-03-07T02:56:34
2021-03-07T02:56:34
323,200,048
5
0
null
null
null
null
UTF-8
C++
false
false
5,688
h
#pragma once #include <map> #include <memory> #include <vector> #include "ComponentManager.h" #include "ComponentHandle.h" #include "ComponentMask.h" // Forward declarations struct Entity; class EntityManager; struct EntityHandle; class System; class World : public std::enable_shared_from_this<World> // Inherit publicly from shared_from_this { public: World(std::unique_ptr<EntityManager> em); ~World(); /* Called on engine init */ void init(); /* Create a new Entity */ EntityHandle createEntity(); /* Create a new Entity with the given id */ EntityHandle createEntity(int uuid); /* Destroy an Entity and all its Components*/ void destroyEntity(Entity e); /* Test if entity exists */ bool entityExists(Entity e); /* Return all entity IDs registered in world */ std::set<int> getEntityIds(); /* Add a Component associated with an Entity */ template <typename T> void addComponent(Entity const& entity, T&& component) { ComponentManager<T>* manager = getComponentManager<T>(); // add ComponentManager manager->add(entity, component); ComponentMask oldMask = m_entityMasks[entity]; m_entityMasks[entity].addComponent<T>(); updateEntityMask(entity, oldMask); } /* Remove Component Type T for the given Entity. Note: Entities can only have 1 of each Component type. */ template <typename T> void removeComponent(Entity const& entity) { ComponentManager<T>* manager = getComponentManager<T>(); manager->destroy(entity); // auto manager = getComponentManager<T>(); // ComponentHandle<T> component = manager->lookup(entity); // component.destroy(); ComponentMask oldMask = m_entityMasks[entity]; m_entityMasks[entity].removeComponent<T>(); updateEntityMask(entity, oldMask); } /* Add a new system */ void addSystem(std::unique_ptr<System> system); /* Tick world behavior */ void update(double dt); /* Render world */ void render(); /* Unpack Entity and Components from the World*/ template <typename ComponentType, typename... Args> void unpack(Entity e, ComponentHandle<ComponentType>& handle, ComponentHandle<Args> &... args) { typedef ComponentManager<ComponentType> ComponentManagerType; auto mgr = getComponentManager<ComponentType>(); handle = ComponentHandle<ComponentType>(e, mgr->lookup(e), mgr); // Recurse unpack<Args...>(e, args...); } /* Base recursive case */ template <typename ComponentType> void unpack(Entity e, ComponentHandle<ComponentType>& handle) { typedef ComponentManager<ComponentType> ComponentManagerType; auto mgr = getComponentManager<ComponentType>(); handle = ComponentHandle<ComponentType>(e, mgr->lookup(e), mgr); } /* Return ComponentManager for type T */ template <typename T> ComponentManager<T>* getComponentManager() { // Need to make sure we actually have a component manager. int family = GetComponentFamily<T>(); if (family >= m_componentManagers.size()) { m_componentManagers.resize(family + 1); } /* Create ComponentManager if it does not exist */ if (!m_componentManagers[family]) { m_componentManagers[family] = std::make_unique<ComponentManager<T>>(); } /* Return a raw pointer instead of shared_ptr because we return a derived class. Using shared_ptr would cause the object that calls this function to delete the ComponentManager when the shared_ptr goes out of scope. */ return static_cast<ComponentManager<T>*>(m_componentManagers[family].get()); } /*What is a SingletonComponent? * The same as a Component, with the following rules: * - Only 1 SingletonComponent may exist at a time. It's added with addSingletonComponent() * - SingletonComponents are accessible in the World with getSingletonComponent() * * Use them as a shared data Component accessible from ALL systems. For example, user input. * SingletonComponents should be written to by few systems, but read by many systems. */ template <typename T> ComponentHandle<T> getSingletonComponent() { auto mgr = getComponentManager<T>(); return ComponentHandle<T>(mgr->getLastEntity(), mgr->getLastComponent(), mgr); } /* Add a Singleton Component associated with an Entity. Same as addComponent, but only add a maximum of 1 component to the manager. */ template <typename T> void addSingletonComponent(Entity const& entity, T&& component) { ComponentManager<T>* manager = getComponentManager<T>(); // add ComponentManager if (manager->size() == 0) { manager->add(entity, component); ComponentMask oldMask = m_entityMasks[entity]; m_entityMasks[entity].addComponent<T>(); updateEntityMask(entity, oldMask); } } private: std::vector<std::unique_ptr<System>> m_systems; // World behaviors std::unique_ptr<EntityManager> m_entityManager; // Wrapper to create/delete Entities std::vector<std::unique_ptr<BaseComponentManager>> m_componentManagers; // World states std::map<Entity, ComponentMask> m_entityMasks; // The Component Types that belong to each Entity std::set<int> m_entitySet; // All entities registered in the world void updateEntityMask(Entity const& entity, ComponentMask oldMask); };
[ "evanreeves12@gmail.com" ]
evanreeves12@gmail.com
3a6f1789c2a820b6c5a1eaf9d13409d98fb7a4db
ab1c643f224197ca8c44ebd562953f0984df321e
/services/sched/svc_core/jqueue.cxx
b5b958651887d79eadda1f145480f540ed298eb1
[]
no_license
KernelPanic-OpenSource/Win2K3_NT_admin
e162e0452fb2067f0675745f2273d5c569798709
d36e522f16bd866384bec440517f954a1a5c4a4d
refs/heads/master
2023-04-12T13:25:45.807158
2021-04-13T16:33:59
2021-04-13T16:33:59
357,613,696
0
1
null
null
null
null
UTF-8
C++
false
false
2,036
cxx
//+--------------------------------------------------------------------------- // // Microsoft Windows // Copyright (C) Microsoft Corporation, 1992 - 1993. // // File: jqueue.cxx // // Contents: CJobQueue class implementation. // // Classes: CJobQueue // // Functions: None. // // History: 25-Oct-95 MarkBl Created // //---------------------------------------------------------------------------- #include "..\pch\headers.hxx" #pragma hdrstop #include "svc_core.hxx" //+--------------------------------------------------------------------------- // // Member: CJobQueue::~CJobQueue // // Synopsis: Destructor. Destruct job info queue. // // Arguments: N/A // // Notes: None. // //---------------------------------------------------------------------------- CJobQueue::~CJobQueue() { TRACE3(CJobQueue, ~CJobQueue); CRun * pRun, * pRunNext; pRun = (CRun *)CQueue::RemoveElement(); // pRun = (CRun *)CQueue::GetFirstElement(); while (pRun != NULL) { pRunNext = (CRun *)CQueue::RemoveElement(); // pRunNext = pRun->Next(); delete pRun; pRun = pRunNext; } } //+--------------------------------------------------------------------------- // // Member: CJobQueue::FindJob // // Synopsis: Find the job with matching handle in the job queue. // // Arguments: [hJob] -- Job handle. // // Notes: None. // //---------------------------------------------------------------------------- CRun * CJobQueue::FindJob(HANDLE hJob) { schDebugOut((DEB_USER3, "CJobQueue::FindJob(0x%x) hJob(0x%x)\n")); CRun * pRun = (CRun *)CQueue::GetFirstElement(); while (pRun != NULL) { if (pRun->GetHandle() == hJob) { schDebugOut((DEB_USER3, "CJobQueue::FindJob(0x%x) hJob(0x%x) Found it\n")); return(pRun); } pRun = pRun->Next(); } schDebugOut((DEB_USER3, "CJobQueue::FindJob(0x%x) hJob(0x%x) Not found\n")); return(NULL); }
[ "polarisdp@gmail.com" ]
polarisdp@gmail.com
0e6cd347f1a37b5d49b1968c302f6c4e65c0828d
92ff6acf7f099a1511833a734898988990b5090c
/Program_Framework/Core/subSystem/Timer.h
8a414c3b1bdcf33845d9b6c33746e8e481c7ad87
[]
no_license
king1495/My_OpenGL_Program_Framework
db1fd023f7ada028d90955d69265a83b07520870
65f7d5ca1a0e0f42d3655f8d743c2f2bf1d33360
refs/heads/master
2020-08-27T00:15:39.880734
2020-02-19T09:25:21
2020-02-19T09:25:21
217,189,654
0
0
null
null
null
null
UTF-8
C++
false
false
664
h
#pragma once #include "ISubSystem.h" class Timer final : public ISubSystem { public: static Timer& GetInstance() { static Timer* _instance = new Timer(); return *_instance; } void Update() { _currentTime = glfwGetTime(); _elapsedTime = _currentTime - _oldTime; _oldTime = _currentTime; }; inline float GetElapsedTime(void) const { return _elapsedTime; } inline float GetTime(void) const { return _currentTime; } inline float GetFPS(void) { return 1.f / _elapsedTime; } private: double _oldTime; double _currentTime; double _elapsedTime; Timer() :_oldTime(0), _elapsedTime(0), _currentTime(0) {}; }; #define _Timer Timer::GetInstance()
[ "king1495@naver.com" ]
king1495@naver.com
d5f272f2eccc00eeeff24e75c2136b99582dfb75
71ee93e10a94fbfe6375352dc6da5ca2e41e802c
/cmsc341-data_structures/proj2-eurorails/src/Game.cpp
0f50d3594b9840b173014da560d469a035f54c78
[]
no_license
dangbert/college
ef25b08bd16bfb48d514d0668354a01342c9e104
b137658af27f86297ca70665ff5c487be06076ac
refs/heads/master
2022-12-15T19:37:46.603666
2021-11-23T19:30:44
2021-11-23T19:30:44
191,094,083
1
0
null
2022-11-22T02:43:47
2019-06-10T04:01:26
C
UTF-8
C++
false
false
4,457
cpp
#include "Game.h" #include <fstream> #include <sstream> using namespace std; /* * constuctor * @param coms_filename: filename of the commodities text file * @param cards_filename: filename of the cards text file */ Game::Game(std::string cards_filename, std::string coms_filename) { // TODO: check these files exist m_bank.loadCommodities(coms_filename); // initiate m_bank loadDrawPile(cards_filename); // initiate m_drawPile } /* * Destructor */ Game::~Game() { // deallocate cards while (!m_drawPile.empty()) { delete m_drawPile.top(); m_drawPile.pop(); } for (uint i=0; i<m_players.size(); i++) { delete m_players.at(i); } } /* * runs through the simulation of playing the game * * create player objects * deals cards, making sure everyone gets the same amount (some might be unused) * * @param players: number of players for the simulation * @param stategy: strategy to use for the simulation */ void Game::runSimulation(int players, Player::STRATEGY strategy) { // inititate m_players std::ostringstream ss; for (int i=1; i<=players; i++) { ss.str(""); // clear ss ss << "Player " << i; Player* p = new Player(ss.str()); // example name: "Player 3" m_players.push_back(p); // store player pointer in vector } // deal out the cards to the players std::stack<Card*> temp = m_drawPile; // copy of the draw pile // traverse all of m_players as many times as needed for (uint i=0; i<m_drawPile.size()/players; i++) { // cycle through all players for (uint p=0; p<m_players.size(); p++) { // add card at top of stack to current player m_players.at(p)->addCard(temp.top()); temp.pop(); } } // calculate each player's score for (uint p=0; p<m_players.size(); p++) { m_players.at(p)->calculateScore(strategy); } } /* * prints the current state of the drawPile to a given output stream */ void Game::printDrawPile(std::ofstream& fileStream) { std::stack<Card*> temp = m_drawPile; // needed to traverse stack without emptying it fileStream << "---------- Draw Pile ----------" << endl; while (!temp.empty()) { temp.top()->printCard(fileStream); temp.pop(); } } /* * prints the result of the simulation to a given output stream */ void Game::printResults(std::ofstream& fileStream) { fileStream << "\n\n---------- RESULTS ----------" << endl; Player* winner = m_players.at(0); for (uint p=0; p<m_players.size(); p++) { m_players.at(p)->printResults(fileStream); if (m_players.at(p)->getScore() > winner->getScore()) { winner = m_players.at(p); } } fileStream << "--------------------------" << endl; fileStream << "--------------------------" << endl; fileStream << "Winner: " << winner->getName(); fileStream << " Score: " << winner->getScore() << endl; } /* * loads the deck from the provided file * initiates m_drawPile (assume m_bank is already initialized) */ void Game::loadDrawPile(std::string filename) { ifstream ifile(filename.c_str()); string destination[3]; // destinations on one card string com_string[3]; // comodities string pay_string[3]; // payoffs while (!ifile.eof()) { // loop through the 3 objectives on the card for (int i=0; i<3; i++) { ifile >> destination[i]; // store next string in file in destination ifile >> com_string[i]; ifile >> pay_string[i]; if (ifile.eof()) { // check that we haven't reached the end of the file break; } if (i == 2) { // if 3 objectives were found for this card Card* c = new Card(); // create and store each objective for the card for (int k=0; k<3; k++) { int payoff = atoi(pay_string[k].c_str()); // convert to int // find Commodity* in commodity store Commodity* commodity = m_bank.getCommodity(com_string[k]); // add objectives to card Objective* o = new Objective(destination[k], commodity, payoff); c->addObjective(o); // add objective to this card } m_drawPile.push(c); // push card pointer into stack } } } }
[ "end1@umbc.edu" ]
end1@umbc.edu
8865843b326298b9bd4bfc4989ab83cb602cb832
ad5d6480c45c9d6636a462f80e134582051ad901
/Game/GameChapterSelectionHUDController.h
b7929912ecbdb2ccf3d25bb75810a744756e2f2e
[]
no_license
spidersharma03/optiks
c4b4a70741a8ad74cec937dbe5f0e435ff64942a
496c581bf7b978c60edf2d541c1ec1d18dbea99d
refs/heads/master
2021-01-19T18:11:29.138206
2017-03-02T17:27:02
2017-03-02T17:27:02
83,705,444
0
0
null
null
null
null
UTF-8
C++
false
false
2,068
h
// // GameStageSelectionHUDController.h // Optiks // // Created by Prashant Sharma on 05/12/13. // // #ifndef __Optiks__GameStageSelectionHUDController__ #define __Optiks__GameStageSelectionHUDController__ #include <iostream> #include "GUI.h" #include "GameSettings.h" using namespace spider3d::gui; class GameMenuBackgroundDecorObject; class ParticleSystem; class ParticleEmitter; class ParticleAnimator; class GameChapterSelectionHUDController : public IActionListener { public: GameChapterSelectionHUDController(); ~GameChapterSelectionHUDController(); // IActionListener virtual void mousePressed(GUIComponent* pComponent, int x, int y); virtual void mouseReleased(GUIComponent* pComponent, int x, int y); virtual void mouseMoved(GUIComponent* pComponent, int x, int y); virtual void keyPressed(GUIComponent* pComponent, const Event& event); void showGameChapterSelectionView(); void hideGameChapterSelectionView(); int getSelectedChapter() const; void renderUI(); void renderAllRays(float width ); void setChapterTo(int chapter); void unLockChapter(int chapter); private: void renderGlowingRays(); void reflectionDrawPass(); void drawBackgroundPass(); void createGameChapterSelectionView(); private: GUIButton *m_pMainMenuSelectionButton; GUIButton *m_pSettingsButton; GUIScrollView *m_pChapterSelectionView; vector<GUIButton*> m_vecChapterSelectButtons; int m_SelectedChapter; ParticleSystem *m_pParticleSystemDiffuse; ParticleAnimator *m_pParticleAnimatorDiffuse; Vector2i m_MousePressedPosition; int m_DistanceFromMousePressedPosition; }; #endif /* defined(__Optiks__GameStageSelectionHUDController__) */
[ "prashantsharma@Prashants-MacBook-Pro.local" ]
prashantsharma@Prashants-MacBook-Pro.local
c6f514a045e137d961b2fb6c20e57f721714d523
8173234f279a012d0cb813473f2e7ce15573ab5e
/code/classCode/pets/PetsV2/main.cpp
90a34864170f730ff6b3c1c35352a131f5c6e5cb
[]
no_license
Rvansolkem/ESU-SoftwareEngineering
31bb3a4950082d62462927f43c485cc698141540
cbb2b913fc73914c0989b093e210c01be2a277bc
refs/heads/master
2023-01-19T23:34:04.010267
2020-11-24T00:48:35
2020-11-24T00:48:35
null
0
0
null
null
null
null
UTF-8
C++
false
false
395
cpp
// Written by Nick Moukhine, 2006 #include <iostream> #include "PetCat.h" #include "PetDog.h" #include "PetStore.h" using namespace std; int main(void) { //PetStore(new PetDog()); IPet* p = NewPet(); // do the following if you want to keep the console window visible while executing from windows (not .NET or a console window) char temp; cin >> temp; return 0; }
[ "smcrowley8@gmail.com" ]
smcrowley8@gmail.com
17aa889702bb20a309ecae24493f763a28593845
631c35a7a19b583796d3d20ba250e6a7a14817ba
/AR Graffiti/Temp/il2cppOutput/il2cppOutput/mscorlib4.cpp
dd215c1cfe1c6071596ae76eb27e55e3d4b867c1
[ "MIT" ]
permissive
shoshanimayan/AR-Graffiti
aaca415f6cc217ab5073ff7609cea85313427c5f
4cc94af2a643879bab4e1e3e2d014ef7f9829c9a
refs/heads/master
2022-06-14T07:01:29.132455
2020-05-04T04:32:09
2020-05-04T04:32:09
261,080,631
2
0
null
null
null
null
UTF-8
C++
false
false
2,247,155
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 "icalls/mscorlib/System/Enum.h" #include "icalls/mscorlib/System/Environment.h" #include "icalls/mscorlib/System/Exception.h" #include "icalls/mscorlib/System/GC.h" #include "icalls/mscorlib/System.Globalization/CalendarData.h" #include "icalls/mscorlib/System.Globalization/CompareInfo.h" #include "il2cpp-object-internals.h" template <typename R, typename T1> struct VirtFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5> struct VirtFuncInvoker5 { typedef R (*Func)(void*, T1, T2, T3, T4, T5, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, invokeData.method); } }; template <typename R> struct VirtFuncInvoker0 { typedef R (*Func)(void*, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, invokeData.method); } }; template <typename R, typename T1, typename T2> struct VirtFuncInvoker2 { typedef R (*Func)(void*, T1, T2, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template <typename R, typename T1, typename T2, typename T3> struct VirtFuncInvoker3 { typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method); } }; template <typename T1, typename T2, typename T3> struct VirtActionInvoker3 { typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method); } }; template <typename T1, typename T2> struct VirtActionInvoker2 { typedef void (*Action)(void*, T1, T2, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template <typename T1> struct VirtActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8> struct VirtFuncInvoker8 { typedef R (*Func)(void*, T1, T2, T3, T4, T5, T6, T7, T8, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6, T7 p7, T8 p8) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, p6, p7, p8, invokeData.method); } }; template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7> struct VirtFuncInvoker7 { typedef R (*Func)(void*, T1, T2, T3, T4, T5, T6, T7, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6, T7 p7) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, p6, p7, invokeData.method); } }; template <typename T1> struct GenericVirtActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename T1, typename T2> struct GenericVirtActionInvoker2 { typedef void (*Action)(void*, T1, T2, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template <typename T1> struct InterfaceActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename R> struct InterfaceFuncInvoker0 { typedef R (*Func)(void*, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, invokeData.method); } }; struct InterfaceActionInvoker0 { typedef void (*Action)(void*, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, invokeData.method); } }; template <typename T1, typename T2> struct InterfaceActionInvoker2 { typedef void (*Action)(void*, T1, T2, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template <typename T1> struct GenericInterfaceActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename T1, typename T2> struct GenericInterfaceActionInvoker2 { typedef void (*Action)(void*, T1, T2, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; // Microsoft.Win32.UnsafeNativeMethods/ManifestEtw/EtwEnableCallback struct EtwEnableCallback_tE661421A2F149DA151D5A519A09E09448E396A4A; // Mono.Globalization.Unicode.CodePointIndexer struct CodePointIndexer_tA70DBD5101E826E30EEF124C2EEE1019B539DB4A; // Mono.Globalization.Unicode.Contraction[] struct ContractionU5BU5D_tD86BF5BFF6277D981053A21EFFD3D0EEB376953B; // Mono.Globalization.Unicode.Level2Map[] struct Level2MapU5BU5D_tA4F3B2721A6C88295DBF9DA650C96D1717842E28; // Mono.Globalization.Unicode.SimpleCollator struct SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89; // Mono.Globalization.Unicode.TailoringInfo[] struct TailoringInfoU5BU5D_t342FFD04F3AB46BD8E89E5B9DDDAEE8365039573; // System.Action`1<System.Guid> struct Action_1_t914484DED737548EE8FABFA959036371C8235942; // System.Action`2<System.Char,System.Object> struct Action_2_t2F784F6A8F0E6D7B6C7C73DCA17B1CCA8D724E48; // System.Action`2<System.Char,System.String> struct Action_2_tF9B5B4903EBDF1C9EC5FD39E96DE7A6A35B21C81; // System.ArgumentException struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1; // System.ArgumentNullException struct ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD; // System.ArgumentOutOfRangeException struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA; // System.ArithmeticException struct ArithmeticException_tF9EF5FE94597830EF315C5934258F994B8648269; // System.AsyncCallback struct AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4; // System.Attribute struct Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74; // System.Boolean[] struct BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040; // System.Byte struct Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07; // System.Byte[] struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821; // System.Char[] struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2; // System.Collections.CaseInsensitiveComparer struct CaseInsensitiveComparer_tF9935EB25E69CEF5A3B17CE8D22E2797F23B17BE; // System.Collections.CaseInsensitiveHashCodeProvider struct CaseInsensitiveHashCodeProvider_tC6D5564219051252BBC7B49F78CC8173105F0C34; // System.Collections.Generic.Comparer`1<System.Object> struct Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7; // System.Collections.Generic.Comparer`1<System.String> struct Comparer_1_tC8913CC0230510AB5B82485EAEF003DA0F4B9903; // System.Collections.Generic.Comparer`1<System.UInt64> struct Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC; // System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.String>[] struct EntryU5BU5D_t69CCD9E4E7050700879917C9CB7E5E88F89235B1; // System.Collections.Generic.Dictionary`2/Entry<System.String,Mono.Globalization.Unicode.SimpleCollator>[] struct EntryU5BU5D_tC1DD130BD4A49A65C91E4A8211C674A3C5B3A09E; // System.Collections.Generic.Dictionary`2/Entry<System.String,System.Collections.Generic.List`1<System.Int32>>[] struct EntryU5BU5D_t60C6F39C129F0ED5FC3442C36FBFFB0170A77B12; // System.Collections.Generic.Dictionary`2/Entry<System.String,System.String>[] struct EntryU5BU5D_t034347107F1D23C91DE1D712EA637D904789415C; // System.Collections.Generic.Dictionary`2/Entry<System.String,System.Type>[] struct EntryU5BU5D_t40A3139ED5D085E35C0FFBF75DD94D0BCDDBFA18; // System.Collections.Generic.Dictionary`2/Entry<System.UInt64,System.String>[] struct EntryU5BU5D_t3E794099C0DF651976750CB2F90140C061415231; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,System.Object> struct KeyCollection_t959836ABE6844545BF46886E66ADE46030115A4A; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,System.String> struct KeyCollection_t2F25BAF319A40DA5241F076B74BB90B72F16822F; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Object> struct KeyCollection_t0394DE2BA7C2C82605C6E9DEBB21A8C5C792E97C; // System.Collections.Generic.Dictionary`2/KeyCollection<System.String,Mono.Globalization.Unicode.SimpleCollator> struct KeyCollection_t80C19162A3C18EDC90209882B2FBC96555382FD6; // System.Collections.Generic.Dictionary`2/KeyCollection<System.String,System.Collections.Generic.List`1<System.Int32>> struct KeyCollection_tF46D9B339F84866040D5D2B543BD9B30BA50CD76; // System.Collections.Generic.Dictionary`2/KeyCollection<System.String,System.String> struct KeyCollection_tC73654392B284B89334464107B696C9BD89776D9; // System.Collections.Generic.Dictionary`2/KeyCollection<System.String,System.Type> struct KeyCollection_tC6A23F2E0D8E3FAF9FA1D73F0833F395051C828A; // System.Collections.Generic.Dictionary`2/KeyCollection<System.UInt64,System.Object> struct KeyCollection_tE4E0223181A9DB1608389430F309FD4679105FED; // System.Collections.Generic.Dictionary`2/KeyCollection<System.UInt64,System.String> struct KeyCollection_t03F00DD1AC4F92F5138CAB2CC1235582FD0B8B1D; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.String> struct ValueCollection_tEDEE983AB5C1AD1832785DBAED94462C85312A6F; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Object> struct ValueCollection_t0816666499CBD11E58E1E7C79A4EFC2AA47E08A2; // System.Collections.Generic.Dictionary`2/ValueCollection<System.String,Mono.Globalization.Unicode.SimpleCollator> struct ValueCollection_t5F6247B1A36BB27A8A498A6E5B1E017A5D8B3AD1; // System.Collections.Generic.Dictionary`2/ValueCollection<System.String,System.Collections.Generic.List`1<System.Int32>> struct ValueCollection_tD67DD0079B75647C364C199FF479C7B83AE29B48; // System.Collections.Generic.Dictionary`2/ValueCollection<System.String,System.String> struct ValueCollection_tA3B972EF56F7C97E35054155C33556C55FAAFD43; // System.Collections.Generic.Dictionary`2/ValueCollection<System.String,System.Type> struct ValueCollection_t7916CDE541FFBF8945E39B059894001AE50AD9CC; // System.Collections.Generic.Dictionary`2/ValueCollection<System.UInt64,System.String> struct ValueCollection_t18D4CECE87AD2E5ED15C77ECA8B755689EE8AC96; // System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo> struct Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B; // System.Collections.Generic.Dictionary`2<System.Int32,System.Object> struct Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884; // System.Collections.Generic.Dictionary`2<System.Int32,System.String> struct Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C; // System.Collections.Generic.Dictionary`2<System.Object,System.Object> struct Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA; // System.Collections.Generic.Dictionary`2<System.String,Mono.Globalization.Unicode.SimpleCollator> struct Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3; // System.Collections.Generic.Dictionary`2<System.String,System.Collections.Generic.List`1<System.Int32>> struct Dictionary_2_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28; // System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo> struct Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25; // System.Collections.Generic.Dictionary`2<System.String,System.Int32> struct Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB; // System.Collections.Generic.Dictionary`2<System.String,System.Resources.ResourceSet> struct Dictionary_2_tDE0FFCE2C110EEFB68C37CEA54DBCA577AFC1CE6; // System.Collections.Generic.Dictionary`2<System.String,System.String> struct Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC; // System.Collections.Generic.Dictionary`2<System.String,System.Type> struct Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A; // System.Collections.Generic.Dictionary`2<System.UInt64,System.Object> struct Dictionary_2_tEBCB8780311423F45937F4694A2C7B3F4894B54A; // System.Collections.Generic.Dictionary`2<System.UInt64,System.String> struct Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833; // System.Collections.Generic.IComparer`1<System.UInt64> struct IComparer_1_t7E1CC88723F5E5E455D1F3D16DB58DCF4B173316; // System.Collections.Generic.IDictionary`2<System.String,System.String> struct IDictionary_2_t8D4B47914EFD2300DFBC7D9626F3D538CFA7CA53; // System.Collections.Generic.IEnumerable`1<System.Int32> struct IEnumerable_1_t1AE8F03F101BA7578AF3A97EF1EBE8DB5FF31215; // System.Collections.Generic.IEnumerable`1<System.Reflection.PropertyInfo> struct IEnumerable_1_t05EA2C465ACA2B28E0BF150280D7C95077A9697F; // System.Collections.Generic.IEnumerable`1<System.UInt64> struct IEnumerable_1_tEA54A68E4E174E71D79A4C0A82BC97CFAD256DEC; // System.Collections.Generic.IEqualityComparer`1<System.Int32> struct IEqualityComparer_1_t7B82AA0F8B96BAAA21E36DDF7A1FE4348BDDBE95; // System.Collections.Generic.IEqualityComparer`1<System.Object> struct IEqualityComparer_1_tAE7A8756D8CF0882DD348DC328FB36FEE0FB7DD0; // System.Collections.Generic.IEqualityComparer`1<System.String> struct IEqualityComparer_1_t1F07EAC22CC1D4F279164B144240E4718BD7E7A9; // System.Collections.Generic.IEqualityComparer`1<System.UInt64> struct IEqualityComparer_1_t81487468A3651095E666A1DF7A970F6C4D8808B5; // System.Collections.Generic.IList`1<System.Object> struct IList_1_tE09735A322C3B17000EF4E4BC8026FEDEB7B0D9B; // System.Collections.Generic.IList`1<System.String> struct IList_1_tFFB5515FC97391D04D5034ED7F334357FED1FAE6; // System.Collections.Generic.List`1<System.Diagnostics.Tracing.EtwSession> struct List_1_t9CDF2E150AAD0D0EF043696D08554EE4E22E3E88; // System.Collections.Generic.List`1<System.Diagnostics.Tracing.EventProvider/SessionInfo> struct List_1_t48C08E578B230ECD129D7CD72958FDC29E6D1975; // System.Collections.Generic.List`1<System.Diagnostics.Tracing.FieldMetadata> struct List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A; // System.Collections.Generic.List`1<System.Diagnostics.Tracing.PropertyAnalysis> struct List_1_t759B86C3AE2A2F5A5B70559ABC92F3CDAEB4DBEC; // System.Collections.Generic.List`1<System.Globalization.CultureInfo> struct List_1_t74F59DD36FAE0CFB087612565C42CAD359647832; // System.Collections.Generic.List`1<System.Int32> struct List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226; // System.Collections.Generic.List`1<System.Object> struct List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D; // System.Collections.Generic.List`1<System.String> struct List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3; // System.Collections.Generic.List`1<System.Type> struct List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0; // System.Collections.Generic.List`1<System.UInt64> struct List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8; // System.Collections.Generic.List`1<System.WeakReference> struct List_1_t0B19BE4139518EFD1F11815FD931281B09EA15EF; // System.Collections.Hashtable struct Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9; // System.Collections.Hashtable/bucket[] struct bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A; // System.Collections.ICollection struct ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54; // System.Collections.IComparer struct IComparer_t6A5E1BC727C7FF28888E407A797CE1ED92DA8E95; // System.Collections.IDictionary struct IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7; // System.Collections.IEqualityComparer struct IEqualityComparer_t3102D0F5BABD60224F6DFF4815BCA1045831FB7C; // System.Collections.IHashCodeProvider struct IHashCodeProvider_tEA652F45F84FA62675B746607F7AAFA71515D856; // System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object> struct ReadOnlyCollection_1_t5D996E967221C71E4EC5CC11210C3076432D5A50; // System.Collections.ObjectModel.ReadOnlyCollection`1<System.String> struct ReadOnlyCollection_1_tB9E469CEA1A95F21BDF5C8594323E208E5454BE0; // System.Comparison`1<System.Object> struct Comparison_1_tD9DBDF7B2E4774B4D35E113A76D75828A24641F4; // System.Comparison`1<System.String> struct Comparison_1_tB59BE4B966B2646664AB777129F0D33B1AAA0E71; // System.Delegate struct Delegate_t; // System.DelegateData struct DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE; // System.Delegate[] struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86; // System.Diagnostics.StackFrame[] struct StackFrameU5BU5D_t5075A2805A51162E94A9CF2F2881DC51B78EA80D; // System.Diagnostics.StackTrace struct StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99; // System.Diagnostics.StackTrace[] struct StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196; // System.Diagnostics.Tracing.ActivityFilter struct ActivityFilter_t0752727D4698E64AAC232FD9DB1FC68735A9EAE8; // System.Diagnostics.Tracing.ActivityTracker struct ActivityTracker_tFBAFEF8651768D41ECD29EF2692D57A6B6A80838; // System.Diagnostics.Tracing.ConcurrentSetItem`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>,System.Object> struct ConcurrentSetItem_2_t270F9459B47B76BFB74FE28134B90289F5DA3E57; // System.Diagnostics.Tracing.ConcurrentSetItem`2<System.Collections.Generic.KeyValuePair`2<System.String,System.Diagnostics.Tracing.EventTags>,System.Diagnostics.Tracing.NameInfo> struct ConcurrentSetItem_2_tF75C8666AA6AE859719571013C6765518785D0DA; // System.Diagnostics.Tracing.EtwSession[] struct EtwSessionU5BU5D_t8797EC7C4B69B091119AFD2A22F03049811748FA; // System.Diagnostics.Tracing.EventAttribute struct EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1; // System.Diagnostics.Tracing.EventCommandEventArgs struct EventCommandEventArgs_t96A2E796A34D5D2D56784C5DEDAE4BDA14EDBE15; // System.Diagnostics.Tracing.EventDataAttribute struct EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85; // System.Diagnostics.Tracing.EventDispatcher struct EventDispatcher_tCC0CD01793D8CA99D9F2580DF4DA0663AFB54BFF; // System.Diagnostics.Tracing.EventFieldAttribute struct EventFieldAttribute_tCD8E252D7D673724F2980B794282B715E16A675C; // System.Diagnostics.Tracing.EventListener struct EventListener_t9B86F76EF72340DCFA9AD7715776E2C3988144A6; // System.Diagnostics.Tracing.EventProvider struct EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483; // System.Diagnostics.Tracing.EventSource struct EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB; // System.Diagnostics.Tracing.EventSource/EventData struct EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04; // System.Diagnostics.Tracing.EventSource/EventMetadata[] struct EventMetadataU5BU5D_tA6A4B1FE9D3A53D9941A4C63D95399E4594ABE94; // System.Diagnostics.Tracing.EventSource/OverideEventProvider struct OverideEventProvider_t354C68E8EFB53023A6C94D61F8F44358225D7C2B; // System.Diagnostics.Tracing.EventSourceAttribute struct EventSourceAttribute_t7E8C5240E08345D1B46ADE585550D34D9B16D286; // System.Diagnostics.Tracing.EventSourceCreatedEventArgs struct EventSourceCreatedEventArgs_t12E0F6BDFDF8F46E6C583AB8408C30358EC85863; // System.Diagnostics.Tracing.EventSourceException struct EventSourceException_tCD5CC7F1F4F968609FB863449D9A5CD630236275; // System.Diagnostics.Tracing.EventWrittenEventArgs struct EventWrittenEventArgs_t3E46581254D84E46F89EE4154394C8B5B75A523E; // System.Diagnostics.Tracing.FieldMetadata struct FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC; // System.Diagnostics.Tracing.FieldMetadata[] struct FieldMetadataU5BU5D_tBDB9B5E46662C93C301E095F1DC2B0B1B8FE9796; // System.Diagnostics.Tracing.GuidArrayTypeInfo struct GuidArrayTypeInfo_tCBD4D79DCC29FDFCFA6B5B733A7CB76E1A4BB068; // System.Diagnostics.Tracing.GuidTypeInfo struct GuidTypeInfo_tADCD4F34D348774C3AE9A0714A071BF1EC7699ED; // System.Diagnostics.Tracing.Int16ArrayTypeInfo struct Int16ArrayTypeInfo_tAD49D189964C4528B1A70B5BF923016DF12A1CA3; // System.Diagnostics.Tracing.Int16TypeInfo struct Int16TypeInfo_t5D76EA51B81898B9E5D73E48513749E2F1E9E48B; // System.Diagnostics.Tracing.Int32ArrayTypeInfo struct Int32ArrayTypeInfo_t081A0C4015757B88F1735B49551791902EB2456C; // System.Diagnostics.Tracing.Int32TypeInfo struct Int32TypeInfo_t0B1921CD9614D1EB1B183ED8A686AA372750252C; // System.Diagnostics.Tracing.Int64ArrayTypeInfo struct Int64ArrayTypeInfo_tA11180F9988B3F2768E2936B0EC740F4CA4098FC; // System.Diagnostics.Tracing.Int64TypeInfo struct Int64TypeInfo_t96DC7ABE2B905BED6B2BE60AB3BC0CC3AB5149E5; // System.Diagnostics.Tracing.IntPtrArrayTypeInfo struct IntPtrArrayTypeInfo_t8E5F0E3EA1E88E19EF71CB6549DD46FFB78B5702; // System.Diagnostics.Tracing.IntPtrTypeInfo struct IntPtrTypeInfo_tBAA196C9AFC0FF57DB01E76B903964521E29FF55; // System.Diagnostics.Tracing.ManifestBuilder struct ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450; // System.Diagnostics.Tracing.ManifestBuilder/<>c__DisplayClass22_0 struct U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F; // System.Diagnostics.Tracing.ManifestBuilder/<>c__DisplayClass22_1 struct U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A; // System.Diagnostics.Tracing.NameInfo struct NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C; // System.Diagnostics.Tracing.NameInfo[] struct NameInfoU5BU5D_t90BE93F86BB5CC5274C6ED53B8BB62D1E10A7EE7; // System.Diagnostics.Tracing.NonEventAttribute struct NonEventAttribute_tEFC3FBCB594E618AF8214093944F2AC045497726; // System.Diagnostics.Tracing.PropertyAnalysis struct PropertyAnalysis_t3DC0F773245CD968BED647345E53535D422CF46A; // System.Diagnostics.Tracing.PropertyAnalysis[] struct PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB; // System.Diagnostics.Tracing.SByteArrayTypeInfo struct SByteArrayTypeInfo_t4885ED20686CCAD72DF0C2423CAF5CDA3F5591C6; // System.Diagnostics.Tracing.SByteTypeInfo struct SByteTypeInfo_tA76D79A20B5AA0947AC807DEEADDB557BFB14A4C; // System.Diagnostics.Tracing.SingleArrayTypeInfo struct SingleArrayTypeInfo_t7D009CA00E2BC30821D9DADDDAD26C88484BD239; // System.Diagnostics.Tracing.SingleTypeInfo struct SingleTypeInfo_tE256251DAD6B7FADC6378A7963F2C480467C31E8; // System.Diagnostics.Tracing.StringTypeInfo struct StringTypeInfo_tBDB74156A62E8057C5232323FF288C600F49BE26; // System.Diagnostics.Tracing.TimeSpanTypeInfo struct TimeSpanTypeInfo_t81B67AE1FF6747F715CCBD69C3F45800A8D6BDFA; // System.Diagnostics.Tracing.TplEtwProvider struct TplEtwProvider_tE8D95D638ADE31D5FCEF08E88222D518C2FACC9E; // System.Diagnostics.Tracing.TraceLoggingDataCollector struct TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA; // System.Diagnostics.Tracing.TraceLoggingEventTypes struct TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25; // System.Diagnostics.Tracing.TraceLoggingMetadataCollector struct TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E; // System.Diagnostics.Tracing.TraceLoggingMetadataCollector/Impl struct Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F; // System.Diagnostics.Tracing.TraceLoggingTypeInfo struct TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F; // System.Diagnostics.Tracing.TraceLoggingTypeInfo[] struct TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Guid> struct TraceLoggingTypeInfo_1_t2B55C9286BB1419C38C60FD4458507F64BDC8CE4; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Guid[]> struct TraceLoggingTypeInfo_1_t5CD19345E04791061E49735C40A06560D1015A81; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int16> struct TraceLoggingTypeInfo_1_t506240682C732B33C0D659D6DC744D966C2FE363; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int16[]> struct TraceLoggingTypeInfo_1_t48333D5529FE3B84602B0DC3CD4AE0F4B0D4BAE0; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int32> struct TraceLoggingTypeInfo_1_tDD2B74A36968F646CCDFEB9CE4074A216009252C; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int32[]> struct TraceLoggingTypeInfo_1_t9B7E3D9AB547CAF187A5C9E97F07E2B5A58E2589; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int64> struct TraceLoggingTypeInfo_1_t443169292A139EC54B708D4B6023EA2449412265; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int64[]> struct TraceLoggingTypeInfo_1_tA67F5E5AEDAD34F7E25836F622BB7510867903BD; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.IntPtr> struct TraceLoggingTypeInfo_1_t49721B614FCA52E6F380ACEE1AE32F5BA19815F1; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.IntPtr[]> struct TraceLoggingTypeInfo_1_t7DDB9F3AED3B154D72AB8AE300434F50B56870C6; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Object> struct TraceLoggingTypeInfo_1_t30CA664F8DBC78F9161D725EAC6B8DB1F89C4C81; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.SByte> struct TraceLoggingTypeInfo_1_tBCFB1C63D7D7837A0D7EAC07CF250A313B982794; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.SByte[]> struct TraceLoggingTypeInfo_1_t55CF8C945F32D794C974BA4DAE2EE7F2647C4C5E; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Single> struct TraceLoggingTypeInfo_1_t80BF4A689F205E66ABE5177817C623F9DF91E6CD; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Single[]> struct TraceLoggingTypeInfo_1_t1EC2C7D1B7604F9A26B9CBC247D3927A18E9633E; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.String> struct TraceLoggingTypeInfo_1_t34C750FAAA441003C34ECA6894E5D8640C78041D; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.TimeSpan> struct TraceLoggingTypeInfo_1_t8DC6FE358F90681BDCCD5350065A9767D2AC90DD; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UInt16> struct TraceLoggingTypeInfo_1_tCBF51B2E677BE976178EC8AC986798F9B65E2EC6; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UInt16[]> struct TraceLoggingTypeInfo_1_t97FDBDA4CF3677121784926A6B75A517CB7A0354; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UInt32> struct TraceLoggingTypeInfo_1_tC4AD26ADEB2206747827432E8A7EDA1A37681F10; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UInt32[]> struct TraceLoggingTypeInfo_1_t8AE0E093509BB6D0AF1B5A1D5F17DAD0FC17FBAB; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UInt64> struct TraceLoggingTypeInfo_1_t2BDE5AE3D48BE884906B4ABADD9FA7EB16AD333C; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UInt64[]> struct TraceLoggingTypeInfo_1_t6EE8951B7314721A44CBD852551DAAF5CB72F606; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UIntPtr> struct TraceLoggingTypeInfo_1_tB931FCDE5F91B9AE5C5515AA58B5518C97F86330; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UIntPtr[]> struct TraceLoggingTypeInfo_1_tD16C7A6EA0D37CFA5AC0AED1A07D919210983479; // System.Diagnostics.Tracing.TypeAnalysis struct TypeAnalysis_tDF056211469FB207E3865AC52165AE84BF156DFD; // System.Diagnostics.Tracing.UInt16ArrayTypeInfo struct UInt16ArrayTypeInfo_tA6991CB11EA32DC5B9D742927714EB9C7484D7DE; // System.Diagnostics.Tracing.UInt16TypeInfo struct UInt16TypeInfo_t468F411BD1B3584AF68A41C85B381CFA03832D7E; // System.Diagnostics.Tracing.UInt32ArrayTypeInfo struct UInt32ArrayTypeInfo_tBBD9B05BCF6D59A1A1D755DB774FAE24B2489EBC; // System.Diagnostics.Tracing.UInt32TypeInfo struct UInt32TypeInfo_tB421E50E75E7CF429F488D89989FEC4791D1AE59; // System.Diagnostics.Tracing.UInt64ArrayTypeInfo struct UInt64ArrayTypeInfo_t7A203D5FBE0E98A82FF152A9AA52DA65846276D5; // System.Diagnostics.Tracing.UInt64TypeInfo struct UInt64TypeInfo_t36BF0D3F2BEF8E853D4640EB2E25D193F3F4438E; // System.Diagnostics.Tracing.UIntPtrArrayTypeInfo struct UIntPtrArrayTypeInfo_tAEBBC02218BE858DCF8856D19C991781A165251C; // System.Diagnostics.Tracing.UIntPtrTypeInfo struct UIntPtrTypeInfo_t0B3F2074A32C0E180DC21FA16B46DCEC3E3E001D; // System.DivideByZeroException struct DivideByZeroException_tD233835DD9A31EE4E64DD93F2D6143646CFD3FBC; // System.DllNotFoundException struct DllNotFoundException_tED90B6A78D4CF5AA565288E0BA88A990062A7F76; // System.Double[] struct DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D; // System.Empty struct Empty_t31C7ECDF7D102AFFCE029D8AB11D8595F0316ED2; // System.EntryPointNotFoundException struct EntryPointNotFoundException_tCF689617164B79AD85A41DADB38D27BD1E10B279; // System.Enum struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521; // System.Enum/ValuesAndNames struct ValuesAndNames_t48A099BB10887A683F62017FAD199FB2088CBDD2; // System.EventArgs struct EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E; // System.EventHandler struct EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C; // System.EventHandler`1<System.Diagnostics.Tracing.EventCommandEventArgs> struct EventHandler_1_t7B950CA178FCE6D050E740E55B739A0C75BDE49C; // System.EventHandler`1<System.Diagnostics.Tracing.EventSourceCreatedEventArgs> struct EventHandler_1_tE9CADA60E04DEA35665DBABBF7DE192763FACFBE; // System.EventHandler`1<System.Diagnostics.Tracing.EventWrittenEventArgs> struct EventHandler_1_t4CAFC32F107417E2417FCBD053FD1744C2CDDED6; // System.EventHandler`1<System.Runtime.Serialization.SafeSerializationEventArgs> struct EventHandler_1_t2FAACD646FEA53CF34DD74BB21333F2B9175DD81; // System.Exception struct Exception_t; // System.ExecutionEngineException struct ExecutionEngineException_t9D6DDEC5449D08251371AB57FE61558C2A2B1F21; // System.FieldAccessException struct FieldAccessException_tBFF096C9CF3CA2BF95A3D596D7E50EF32B178BDF; // System.FlagsAttribute struct FlagsAttribute_t7FB7BEFA2E1F2C6E3362A5996E82697475FFE867; // System.FormatException struct FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC; // System.Func`2<System.Object,System.Int32> struct Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6; // System.Func`2<System.Object,System.String> struct Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF; // System.Globalization.Bootstring struct Bootstring_t9E3CD00FBB61B43CDF0873C571322A4387693F41; // System.Globalization.Calendar struct Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5; // System.Globalization.CalendarData struct CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E; // System.Globalization.CalendarData[] struct CalendarDataU5BU5D_t97B534060896C542563D812BB6E4B3CB688B92AD; // System.Globalization.CodePageDataItem struct CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB; // System.Globalization.CompareInfo struct CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1; // System.Globalization.CultureData struct CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD; // System.Globalization.CultureInfo struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F; // System.Globalization.CultureInfo[] struct CultureInfoU5BU5D_t5ABD12F26C65E5F6F3E7916401EAA322BA2BDF31; // System.Globalization.DateTimeFormatInfo struct DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F; // System.Globalization.InternalCodePageDataItem[] struct InternalCodePageDataItemU5BU5D_t94CE8C20C6D99D9F2F13E2E7FA2C44007AE27834; // System.Globalization.InternalEncodingDataItem[] struct InternalEncodingDataItemU5BU5D_t0579A8C6FC0871F0230E51290511BF0C9C706C68; // System.Globalization.NumberFormatInfo struct NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8; // System.Globalization.SortKey struct SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9; // System.Globalization.SortVersion struct SortVersion_tE7080CE09A0B8CE226F8046C0D1374DD0A0CAE71; // System.Globalization.TextInfo struct TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8; // System.Guid[] struct GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF; // System.IAsyncResult struct IAsyncResult_t8E194308510B375B42432981AE5E7488C458D598; // System.IConvertible struct IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380; // System.IFormatProvider struct IFormatProvider_t4247E13AE2D97A079B88D594B7ABABF313259901; // System.IO.Stream struct Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7; // System.IO.StreamReader struct StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E; // System.Int16[] struct Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28; // System.Int32[] struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83; // System.Int64[] struct Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F; // System.IntPtr[] struct IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD; // System.InvalidCastException struct InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA; // System.InvalidOperationException struct InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1; // System.LocalDataStoreHolder struct LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304; // System.LocalDataStoreMgr struct LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9; // System.MemberAccessException struct MemberAccessException_tDA869AFFB4FC1EA0EEF3143D85999710AC4774F0; // System.MonoTypeInfo struct MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D; // System.MulticastDelegate struct MulticastDelegate_t; // System.NotImplementedException struct NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4; // System.NotSupportedException struct NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010; // System.NullReferenceException struct NullReferenceException_t204B194BC4DDA3259AF5A8633EA248AE5977ABDC; // System.Object[] struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A; // System.OperatingSystem struct OperatingSystem_tBB05846D5AA6960FFEB42C59E5FE359255C2BE83; // System.Reflection.Assembly struct Assembly_t; // System.Reflection.Assembly/ResolveEventHolder struct ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E; // System.Reflection.AssemblyName struct AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82; // System.Reflection.Binder struct Binder_t4D5CB06963501D32847C057B57157D6DC49CA759; // System.Reflection.FieldInfo struct FieldInfo_t; // System.Reflection.MemberFilter struct MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381; // System.Reflection.MemberInfo struct MemberInfo_t; // System.Reflection.MethodBase struct MethodBase_t; // System.Reflection.MethodInfo struct MethodInfo_t; // System.Reflection.ParameterInfo struct ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB; // System.Reflection.ParameterInfo[] struct ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694; // System.Reflection.PropertyInfo struct PropertyInfo_t; // System.Reflection.PropertyInfo[] struct PropertyInfoU5BU5D_tAD8E99B12FF99CA4F2EA37B612DE68E112B4CF7E; // System.Reflection.RuntimeAssembly struct RuntimeAssembly_t5EE9CD749D82345AE5635B9665665C31A3308EB1; // System.Reflection.RuntimeConstructorInfo struct RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D; // System.Reflection.StrongNameKeyPair struct StrongNameKeyPair_tD9AA282E59F4526338781AFD862680ED461FCCFD; // System.Reflection.TypeFilter struct TypeFilter_t30BB04A68BC9FB949345457F71A9648BDB67FF18; // System.Resources.IResourceGroveler struct IResourceGroveler_tCEF78094E38045CAD9EFB296E179CCDFDCB94C44; // System.Resources.IResourceReader struct IResourceReader_t32EA6DD358C3793C4E0BCD3B940EEFD52E7481BE; // System.Resources.ResourceManager struct ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF; // System.Resources.ResourceManager/CultureNameResourceSetPair struct CultureNameResourceSetPair_t77328DA298FCF741DE21CC5B3E19F160D7060074; // System.Runtime.CompilerServices.Ephemeron[] struct EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10; // System.Runtime.ExceptionServices.ExceptionDispatchInfo struct ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A; // System.Runtime.InteropServices.GCHandle struct GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3; // System.Runtime.InteropServices.MarshalAsAttribute struct MarshalAsAttribute_t1F5CB9960D7AD6C3305475C98A397BD0B9C64020; // 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.RuntimeType struct RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F; // System.SByte[] struct SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889; // System.Security.Cryptography.RandomNumberGenerator struct RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2; // System.Security.Principal.IPrincipal struct IPrincipal_t63FD7F58FBBE134C8FE4D31710AAEA00B000F0BF; // System.Single[] struct SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5; // System.String struct String_t; // System.StringComparer struct StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE; // System.String[] struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E; // System.SystemException struct SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782; // System.Text.Decoder struct Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26; // System.Text.DecoderFallback struct DecoderFallback_t128445EB7676870485230893338EF044F6B72F60; // System.Text.EncoderFallback struct EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63; // System.Text.Encoding struct Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4; // System.Text.StringBuilder struct StringBuilder_t; // System.Threading.AsyncLocal`1<System.Globalization.CultureInfo> struct AsyncLocal_1_tD39651C2EDD14B144FF3D9B9C716F807EB57655A; // System.Threading.ExecutionContext struct ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70; // System.Threading.InternalThread struct InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192; // System.Threading.Tasks.Task struct Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2; // System.Threading.Thread struct Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7; // System.Type struct Type_t; // System.TypeLoadException struct TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1; // System.Type[] struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F; // System.UInt16[] struct UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E; // System.UInt32[] struct UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB; // System.UInt64[] struct UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4; // System.UIntPtr[] struct UIntPtrU5BU5D_tD5404ABA0AA72923421D3F931F031EEEC654429E; // System.ValueType struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF; // System.Version struct Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD; // System.Void struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017; IL2CPP_EXTERN_C RuntimeClass* Action_2_tF9B5B4903EBDF1C9EC5FD39E96DE7A6A35B21C81_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Comparison_1_tB59BE4B966B2646664AB777129F0D33B1AAA0E71_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Empty_t31C7ECDF7D102AFFCE029D8AB11D8595F0316ED2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EncodingTable_t22A8552898CDE776E92D442768930CF463B8032D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Environment_tC93BF7477A1AEA39D05EDFEBAFF62EE5353FF806_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventLevel_t647BA4EA78B2B108075D614A19C8C2204644790E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventOpcode_t52B1CBEC2A4C6FDDC00A61ECF12BF584A5146C44_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ExecutionEngineException_t9D6DDEC5449D08251371AB57FE61558C2A2B1F21_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Guid_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ICollection_1_t2E51991ADA605DB75870908AF6D7C3093DC3FCBA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEnumerable_1_t05EA2C465ACA2B28E0BF150280D7C95077A9697F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEnumerator_1_t537D797E2644AF9046B1E4CAAC405D8CE9D01534_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* JapaneseCalendar_tF2E975159C0ADA226D222CE92A068FB01A800E92_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_t74F59DD36FAE0CFB087612565C42CAD359647832_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_t759B86C3AE2A2F5A5B70559ABC92F3CDAEB4DBEC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* MSCompatUnicodeTable_tF7317B16A2F3BD7B319A929F839E7E23ECCE860B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NullReferenceException_t204B194BC4DDA3259AF5A8633EA248AE5977ABDC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OperatingSystem_tBB05846D5AA6960FFEB42C59E5FE359255C2BE83_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PropertyAnalysis_t3DC0F773245CD968BED647345E53535D422CF46A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* String_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TplEtwProvider_tE8D95D638ADE31D5FCEF08E88222D518C2FACC9E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TypeFilter_t30BB04A68BC9FB949345457F71A9648BDB67FF18_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UIntPtr_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ValuesAndNames_t48A099BB10887A683F62017FAD199FB2088CBDD2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____3C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19_FieldInfo_var; IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_29_FieldInfo_var; IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____811A927B7DADD378BE60BBDE794B9277AA9B50EC_47_FieldInfo_var; IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____B8864ACB9DD69E3D42151513C840AAE270BF21C8_74_FieldInfo_var; IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____F073AA332018FDA0D572E99448FFF1D6422BD520_96_FieldInfo_var; IL2CPP_EXTERN_C String_t* _stringLiteral00C5B9DB11398305E81DD934CC30030C1A628291; IL2CPP_EXTERN_C String_t* _stringLiteral00E9885F5602769A313CB71E70C3C23739621EAB; IL2CPP_EXTERN_C String_t* _stringLiteral037F9AF09B79E62522526C02A67EFD7B1E70AEAC; IL2CPP_EXTERN_C String_t* _stringLiteral03C7B3D3B9655EACE132158A150DCD952FEB9A0A; IL2CPP_EXTERN_C String_t* _stringLiteral03EE66A3DAB3D2CDCE115FCC8379D06011B9D4B9; IL2CPP_EXTERN_C String_t* _stringLiteral0468E3044BB96C27C2B264BCEDCDBC4DD3B9345C; IL2CPP_EXTERN_C String_t* _stringLiteral06B20A4FFFD49C2B41EE9A25F542756DD8B7FA41; IL2CPP_EXTERN_C String_t* _stringLiteral07B3E447DB02B7CC20A78A57C316FEBAE22ED72B; IL2CPP_EXTERN_C String_t* _stringLiteral07D16614C7EAFA63B6B2E43D94BCADBAD1CF4C3B; IL2CPP_EXTERN_C String_t* _stringLiteral088FB1A4AB057F4FCF7D487006499060C7FE5773; IL2CPP_EXTERN_C String_t* _stringLiteral091385BE99B45F459A231582D583EC9F3FA3D194; IL2CPP_EXTERN_C String_t* _stringLiteral0B0263D53F1F71417596898D686DD5AF8B90FE9E; IL2CPP_EXTERN_C String_t* _stringLiteral0BC766E82DC8732F2E4596DFFB3069663F7E71C6; IL2CPP_EXTERN_C String_t* _stringLiteral0BE297B561141A6A2D82A7108DDDC36E1CC22DBA; IL2CPP_EXTERN_C String_t* _stringLiteral0E49F311A51BD41B19454E95BFFD18766EB48BFA; IL2CPP_EXTERN_C String_t* _stringLiteral0EF8991E15895E04C4E0B24686E452411F00B53D; IL2CPP_EXTERN_C String_t* _stringLiteral0F9BA953E35135A3F8EC268817CC92F2557202A9; IL2CPP_EXTERN_C String_t* _stringLiteral1045D0486D142C11569D4F7CAE2E19F2F2135D15; IL2CPP_EXTERN_C String_t* _stringLiteral11F6AD8EC52A2984ABAAFD7C3B516503785C2072; IL2CPP_EXTERN_C String_t* _stringLiteral12209D77C65DDBBBCC60B5E59E78677AC5470772; IL2CPP_EXTERN_C String_t* _stringLiteral127CEF0DEDB05FE8497C9C46AEC0AA3FBFF45D64; IL2CPP_EXTERN_C String_t* _stringLiteral131260CBFBB0C821F8EAE5E7C3C296C7AA4D50B9; IL2CPP_EXTERN_C String_t* _stringLiteral131578187CBC956EA467DE57A93EE3388D7911FA; IL2CPP_EXTERN_C String_t* _stringLiteral14D5E1E4EC2C7FF41DD490D67B71A73D0E31EC7C; IL2CPP_EXTERN_C String_t* _stringLiteral150956358DFB2DD051536F24C362ED507F77CC3A; IL2CPP_EXTERN_C String_t* _stringLiteral157562C9A22C3136F032CA6820849E34DFEE3370; IL2CPP_EXTERN_C String_t* _stringLiteral15C3735B75EA81656658DC498FA5D2B99E4B7578; IL2CPP_EXTERN_C String_t* _stringLiteral16DA788082C4C9A5A70A491C6444E6C78CC150C5; IL2CPP_EXTERN_C String_t* _stringLiteral17063C506B81A46C2EB7716AF50CF19D4ED5A6C6; IL2CPP_EXTERN_C String_t* _stringLiteral172386082086186807F5EDA33088CEC8484F98BF; IL2CPP_EXTERN_C String_t* _stringLiteral18446046809DCDB1419BD8EAE6DB7987B7EB8EC2; IL2CPP_EXTERN_C String_t* _stringLiteral18BE539FA5A8752D368918A1DB9F0CD490E7BA56; IL2CPP_EXTERN_C String_t* _stringLiteral1931755CE670F9620F26153490F473D6268A1311; IL2CPP_EXTERN_C String_t* _stringLiteral196D67E00943D635E0EC2857FAE0B96FDF3C801D; IL2CPP_EXTERN_C String_t* _stringLiteral19D5B110F19B2190575B7810E1FA91334E8E400F; IL2CPP_EXTERN_C String_t* _stringLiteral1A349DCC540A3978584510D982075F838B17CD6D; IL2CPP_EXTERN_C String_t* _stringLiteral1C542E79C9B4257E640CCF72974D61FD590A5C26; IL2CPP_EXTERN_C String_t* _stringLiteral1D3E9162814365CA1190011A3093E38C1EF85CA0; IL2CPP_EXTERN_C String_t* _stringLiteral1EBE2C76316035130524FC185DA3EF43943BABBC; IL2CPP_EXTERN_C String_t* _stringLiteral1F4876FD676D03AC09FB1856159B448B0D2A55AE; IL2CPP_EXTERN_C String_t* _stringLiteral20588AE8E5C269292D35F9DFFFA8F2EB3FD3C259; IL2CPP_EXTERN_C String_t* _stringLiteral23408B19B29E8E8495BB4B68733ADA5F85FC2FD6; IL2CPP_EXTERN_C String_t* _stringLiteral246E6F26840D821990AE19D45FDE49C40A6F43E2; IL2CPP_EXTERN_C String_t* _stringLiteral24B2A0993D0CFA93C44282D6BBA72BCF58B300D6; IL2CPP_EXTERN_C String_t* _stringLiteral25BFC51C61045CC3FC21C75CFFC9743B85854F25; IL2CPP_EXTERN_C String_t* _stringLiteral263A6F6E0C50EF5F5EA93F74510351119E77A374; IL2CPP_EXTERN_C String_t* _stringLiteral26D1D6E68E2EFB43040F5747213A436E201DDBD2; IL2CPP_EXTERN_C String_t* _stringLiteral26FFC6C86CF4C6D53910F7890B1D0641867464F9; IL2CPP_EXTERN_C String_t* _stringLiteral28332BF3F5ECB907F6B48B01FA850D52EDABD9F6; IL2CPP_EXTERN_C String_t* _stringLiteral28F18631B86EA95E69CA85CC2051B3920DBF0CB9; IL2CPP_EXTERN_C String_t* _stringLiteral28F19568A74E0032FBC866433CFF499CE8C2BCC1; IL2CPP_EXTERN_C String_t* _stringLiteral29E08777F0011BC04150872BBFFF5534D39661D5; IL2CPP_EXTERN_C String_t* _stringLiteral2A650D754943CF220D5227594CAA19A8331C7A8B; IL2CPP_EXTERN_C String_t* _stringLiteral2ACE62C1BEFA19E3EA37DD52BE9F6D508C5163E6; IL2CPP_EXTERN_C String_t* _stringLiteral2E5848A2AB485AC0B08CD78605681B2223757EFB; IL2CPP_EXTERN_C String_t* _stringLiteral2FFC4249B83F05632C45203CCA17BE1CE49D7495; IL2CPP_EXTERN_C String_t* _stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D; IL2CPP_EXTERN_C String_t* _stringLiteral31655E4E40C7340D7574D81061F79456A829DEF2; IL2CPP_EXTERN_C String_t* _stringLiteral3166B69F57AF10EE9E8F5D547C4119925D426417; IL2CPP_EXTERN_C String_t* _stringLiteral333C11801925CEAB22DD74C93D7617C041F0FA70; IL2CPP_EXTERN_C String_t* _stringLiteral33EA80F35FE737B35E1D085138643A2660006847; IL2CPP_EXTERN_C String_t* _stringLiteral3435968A1FA5DC7806024802A561C1886C22803B; IL2CPP_EXTERN_C String_t* _stringLiteral3593CCD96F6C0FAD4E362D18AC37226707F2EA46; IL2CPP_EXTERN_C String_t* _stringLiteral36E743E4B92054AB6F0DA52D2B5F50ADE4B8D257; IL2CPP_EXTERN_C String_t* _stringLiteral37745ED7A0F005FB14522C5CC7C1BA3D9E0DF579; IL2CPP_EXTERN_C String_t* _stringLiteral3818FC9AE3DDA60E826D9B14657F088FB5F30552; IL2CPP_EXTERN_C String_t* _stringLiteral3841A78AE59725028AE44BB042A13EBB8A621270; IL2CPP_EXTERN_C String_t* _stringLiteral39436FAE619E1025F8D6B16E87866B2D0A206B84; IL2CPP_EXTERN_C String_t* _stringLiteral39BEA6DEDC2EA02EF7433B14291DB0C8B3326642; IL2CPP_EXTERN_C String_t* _stringLiteral3A52CE780950D4D969792A2559CD519D7EE8C727; IL2CPP_EXTERN_C String_t* _stringLiteral3B45D1AAB32F551A0B6E0607F82512D790385944; IL2CPP_EXTERN_C String_t* _stringLiteral3BC15C8AAE3E4124DD409035F32EA2FD6835EFC9; IL2CPP_EXTERN_C String_t* _stringLiteral3C5BF776F5EFCAA22D6E0FD4839DB7D2B83E52BE; IL2CPP_EXTERN_C String_t* _stringLiteral3D87DCCAF91986FA4C389725BCAF948EFFA3E43D; IL2CPP_EXTERN_C String_t* _stringLiteral3D96CABB84A7EDD6E501F562119B3A2D8672333B; IL2CPP_EXTERN_C String_t* _stringLiteral3DDA0092F70DE993E51460CD2CDDDCB041FDE82E; IL2CPP_EXTERN_C String_t* _stringLiteral3E05D1803CBCEFD7109BD5259E9057AD7C3AC318; IL2CPP_EXTERN_C String_t* _stringLiteral3E63A20FD24D82D9E81A5F39CCDC550B85A2182A; IL2CPP_EXTERN_C String_t* _stringLiteral3E84966EDA4965346B1B65E8FF71B6DBD7DB4B73; IL2CPP_EXTERN_C String_t* _stringLiteral3F98816C9705E9EA06CFD4DA52C96A453E6CB2D8; IL2CPP_EXTERN_C String_t* _stringLiteral3FCE8FCB8E68DF5EB7FDC8994A85BB862F91A267; IL2CPP_EXTERN_C String_t* _stringLiteral408F64453B908F42FD60655B6602FE9C593982CA; IL2CPP_EXTERN_C String_t* _stringLiteral413C755FA98C7F9008ECA6BE63D35368C4A1514F; IL2CPP_EXTERN_C String_t* _stringLiteral41961E065ED2F6443B0078BD9AADFA75F0CEB0E6; IL2CPP_EXTERN_C String_t* _stringLiteral42099B4AF021E53FD8FD4E056C2568D7C2E3FFA8; IL2CPP_EXTERN_C String_t* _stringLiteral42E43B612A5DFAE57DDF5929F0FB945AE83CBF61; IL2CPP_EXTERN_C String_t* _stringLiteral4319F745CDC4FD40114E0D897B2013145BAEB728; IL2CPP_EXTERN_C String_t* _stringLiteral432F40DA13A412CABAD63F5524F00CC2C8992AC3; IL2CPP_EXTERN_C String_t* _stringLiteral433632EA5CD64CD163C3A390D5E531D33DA3C5E5; IL2CPP_EXTERN_C String_t* _stringLiteral434F56D21A258E7969A92CEA469D5AF82D2A30D9; IL2CPP_EXTERN_C String_t* _stringLiteral4413EC32E60779835B3DAF7E5B512339751AC6EC; IL2CPP_EXTERN_C String_t* _stringLiteral4474ABE156E995800F623A46EB81155997101DC5; IL2CPP_EXTERN_C String_t* _stringLiteral46FC8621F192530C562CAF208362AAC0952C6C2D; IL2CPP_EXTERN_C String_t* _stringLiteral481D5EBFAA65CD8CBAE34C4A33103730147071B9; IL2CPP_EXTERN_C String_t* _stringLiteral48C98CAB7866E606328C99289ED24E339393B5AB; IL2CPP_EXTERN_C String_t* _stringLiteral48F5015F1ACFAB8D3581489DA0BBF59992135C3E; IL2CPP_EXTERN_C String_t* _stringLiteral491831D06619E7C160397FC825EBD1514A126B20; IL2CPP_EXTERN_C String_t* _stringLiteral49A9D09283F8FB50FA0AFE850910B0835161D9EA; IL2CPP_EXTERN_C String_t* _stringLiteral4A0B9F9010B567B650A074217E5FD09037275F29; IL2CPP_EXTERN_C String_t* _stringLiteral4A13CBBE581E26FF56A2C1CFF69DF36A497F2D9B; IL2CPP_EXTERN_C String_t* _stringLiteral4ABDA3BCB98FB7AFAF8979248C36F08684C3BB8A; IL2CPP_EXTERN_C String_t* _stringLiteral4B35BE0F7818DF6954737AB957F691EB72A389D2; IL2CPP_EXTERN_C String_t* _stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC; IL2CPP_EXTERN_C String_t* _stringLiteral4E0670944C1116B7F84CD30B38C4E946D59AD573; IL2CPP_EXTERN_C String_t* _stringLiteral4EE7F9F6F091866B32663BB85C3E9589E6A0D50E; IL2CPP_EXTERN_C String_t* _stringLiteral4FF0B1538469338A0073E2CDAAB6A517801B6AB4; IL2CPP_EXTERN_C String_t* _stringLiteral5006ED0248A019713B762563076292379DAF07B4; IL2CPP_EXTERN_C String_t* _stringLiteral50C9E8D5FC98727B4BBC93CF5D64A68DB647F04F; IL2CPP_EXTERN_C String_t* _stringLiteral50CF95CEE82204C65FD924E1AB51401C2EB0DEA6; IL2CPP_EXTERN_C String_t* _stringLiteral51327AEF9866E85EF5B5B2294A28494D2715AE59; IL2CPP_EXTERN_C String_t* _stringLiteral513F8DE9259FE7658FE14D1352C54CCF070E911F; IL2CPP_EXTERN_C String_t* _stringLiteral520AC5A5E2EF375F995F93F5918F257B8FAF931D; IL2CPP_EXTERN_C String_t* _stringLiteral529541BB390C76152E313351D89DE3CD30A1C4BD; IL2CPP_EXTERN_C String_t* _stringLiteral532C67FE1B5AFAE15D2D08FBA7A78DE0F63CC4B5; IL2CPP_EXTERN_C String_t* _stringLiteral537FA6E787490E9ECBA018A19D88D636EEE975E6; IL2CPP_EXTERN_C String_t* _stringLiteral53A0ACFAD59379B3E050338BF9F23CFC172EE787; IL2CPP_EXTERN_C String_t* _stringLiteral54D418B5B42E9B96FD52173E32F2031D880B8C46; IL2CPP_EXTERN_C String_t* _stringLiteral54F697A1FF421E46F37022813A88D0937A82090C; IL2CPP_EXTERN_C String_t* _stringLiteral5656B9B79B0316FC611A9C30D2FFAC25228B8371; IL2CPP_EXTERN_C String_t* _stringLiteral56B71E89FB1079CAAADEFD0889E9A22E8B0560E3; IL2CPP_EXTERN_C String_t* _stringLiteral58198E1B107E9130D8D66259C1E5FDCA0B9AF5A0; IL2CPP_EXTERN_C String_t* _stringLiteral587CAF0E2EADCED18EC63C9F5DCB6EB925840F59; IL2CPP_EXTERN_C String_t* _stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889; IL2CPP_EXTERN_C String_t* _stringLiteral5A7BD4149D0D34D3EC86181CDAB1CB8DD3F441D7; IL2CPP_EXTERN_C String_t* _stringLiteral5B86F346A69763593C28460072B23948C6DEC48A; IL2CPP_EXTERN_C String_t* _stringLiteral5BA93C9DB0CFF93F52B521D7420E43F6EDA2784F; IL2CPP_EXTERN_C String_t* _stringLiteral5C3A35EF85F22D508F90171BDCB2E6D820731D20; IL2CPP_EXTERN_C String_t* _stringLiteral5D2C1A80D8C17E5A143AEE09C29A86838F18AB02; IL2CPP_EXTERN_C String_t* _stringLiteral5D62DB9F1221432B4705D0AA11A52FAB86E72F72; IL2CPP_EXTERN_C String_t* _stringLiteral5E5C4B3CD84D07CDDD5F796A0ED208357AE2B291; IL2CPP_EXTERN_C String_t* _stringLiteral5F2E1F9EF87CD5FC39B67305FB0FE704DF157992; IL2CPP_EXTERN_C String_t* _stringLiteral61E97FC629B02A33804B57C172EC3E592ED0AC45; IL2CPP_EXTERN_C String_t* _stringLiteral62FB1585FD37A03B137AFEEEDAADA345F5537A00; IL2CPP_EXTERN_C String_t* _stringLiteral63421775BF8EBC09027CFFC40F85F93CF0EC57EA; IL2CPP_EXTERN_C String_t* _stringLiteral638518959E22A221840EC2702E630739E7C894A7; IL2CPP_EXTERN_C String_t* _stringLiteral6487A22F4D04C78C7FCE5351001A23F780A2376D; IL2CPP_EXTERN_C String_t* _stringLiteral649513493BFCCAC803D0510272A0959554FDCC1D; IL2CPP_EXTERN_C String_t* _stringLiteral64F61EC8D3BCC739D1468635A136D8F9A052B539; IL2CPP_EXTERN_C String_t* _stringLiteral65640C6577C9C72497525E656127B5BD1DEB6F85; IL2CPP_EXTERN_C String_t* _stringLiteral67BBF11A3239F8FE8171FEE7FA8B76D4160D696E; IL2CPP_EXTERN_C String_t* _stringLiteral68962AA7A0A67FFB670D647651DFF6FCA01916DC; IL2CPP_EXTERN_C String_t* _stringLiteral68F4145FEE7DDE76AFCEB910165924AD14CF0D00; IL2CPP_EXTERN_C String_t* _stringLiteral6929E765F6BD128088CDF81BA4805D3A84DA4E5E; IL2CPP_EXTERN_C String_t* _stringLiteral69766F02FB09CD43FABB15BE9645941918840347; IL2CPP_EXTERN_C String_t* _stringLiteral69D97C5797DC7D211AAA4E9229DB5C8466D4EDEF; IL2CPP_EXTERN_C String_t* _stringLiteral6A5E638295EEC62AA4D935BF2B39E5AF8987E272; IL2CPP_EXTERN_C String_t* _stringLiteral6A8782AC6930324B63BDBC0E169B6EB20FF08F4A; IL2CPP_EXTERN_C String_t* _stringLiteral6AE999552A0D2DCA14D62E2BC8B764D377B1DD6C; IL2CPP_EXTERN_C String_t* _stringLiteral6B782D41B0C29E2F39F93A8352C43300B042C6CD; IL2CPP_EXTERN_C String_t* _stringLiteral6BCCC101797076DA3F2A8139516C93E3DA1E5603; IL2CPP_EXTERN_C String_t* _stringLiteral6D2279C3ECA84EC66A200D8092FAC2AE76692E6F; IL2CPP_EXTERN_C String_t* _stringLiteral6D57B527E7613982252D681B40F03DFBEC803607; IL2CPP_EXTERN_C String_t* _stringLiteral6D90DF3BE4D0D43B08E3FB47F55E09B5B06DAE3E; IL2CPP_EXTERN_C String_t* _stringLiteral6D95C1847219C633950F8F1CECA9761315ABFC19; IL2CPP_EXTERN_C String_t* _stringLiteral6DA13ADDB000B67D42A6D66391713819E634149F; IL2CPP_EXTERN_C String_t* _stringLiteral6E73877D3AA13493BA01F49A10B5A30CE83306E5; IL2CPP_EXTERN_C String_t* _stringLiteral71624042BEF5F488D5BEAA76BC5A6C3A9CBE9C6C; IL2CPP_EXTERN_C String_t* _stringLiteral71B0805D942E320B28CD4E33784092B71CF4914F; IL2CPP_EXTERN_C String_t* _stringLiteral726807A56BF9D4443B427982301C16E669EFB30A; IL2CPP_EXTERN_C String_t* _stringLiteral7484F2EE547B8EFBE7C40054E81DCCFDA1946FC2; IL2CPP_EXTERN_C String_t* _stringLiteral75629AF51D7C7F120DBB5B462013BFA48AF33285; IL2CPP_EXTERN_C String_t* _stringLiteral758F870D25D935A22E7B6F601A5D67252C7D24A1; IL2CPP_EXTERN_C String_t* _stringLiteral75EA75BBC43C03B2DD69090F5F554278D5BA0FFF; IL2CPP_EXTERN_C String_t* _stringLiteral76031DDF92450BA52C1E3945097079807A9065C2; IL2CPP_EXTERN_C String_t* _stringLiteral764C1CDCDDB924E02A85EDBA8640D467D06A6FA4; IL2CPP_EXTERN_C String_t* _stringLiteral770BCC70D6014E87ECE237202D721242936CA178; IL2CPP_EXTERN_C String_t* _stringLiteral786CA434663C378B4905D10A07443F2672AFD85C; IL2CPP_EXTERN_C String_t* _stringLiteral79B5F16116B55D562F8C8AAC5999A42980B75EF9; IL2CPP_EXTERN_C String_t* _stringLiteral7A22D73D336ABD6281D4DD71080220A230CB79DE; IL2CPP_EXTERN_C String_t* _stringLiteral7C920AC9C27322B466EC79E3F70C59D0EB2E27E3; IL2CPP_EXTERN_C String_t* _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD; IL2CPP_EXTERN_C String_t* _stringLiteral7E746D340667E415DE67844CA297722F073C4EB5; IL2CPP_EXTERN_C String_t* _stringLiteral7E9E8E82E00EC8A8E359F0917FB928F553C24E27; IL2CPP_EXTERN_C String_t* _stringLiteral7FBB727DB4B2B6715B092505673CB5922A0D63A8; IL2CPP_EXTERN_C String_t* _stringLiteral802D7D2166FA45354A05B0C0A5AD3C91B046F81E; IL2CPP_EXTERN_C String_t* _stringLiteral8137F03571D8568066E24A475F203D3C31D3C08C; IL2CPP_EXTERN_C String_t* _stringLiteral81581597044514BF54D4F97266022FC991F3915E; IL2CPP_EXTERN_C String_t* _stringLiteral828D338A9B04221C9CBE286F50CD389F68DE4ECF; IL2CPP_EXTERN_C String_t* _stringLiteral83EB9DF3AAB1C833EB3CCFD3CEFB43106280EF34; IL2CPP_EXTERN_C String_t* _stringLiteral84CE8379C5F1EA339C5FB691E5BB4A06E10DC5FD; IL2CPP_EXTERN_C String_t* _stringLiteral850828716F9C5476A885E4AF4B1592EDAF8390BA; IL2CPP_EXTERN_C String_t* _stringLiteral855DCB454D8D2C61BA069AEC5ADB73CCA1157E46; IL2CPP_EXTERN_C String_t* _stringLiteral8705DFCA077C41F08BF9E2BF4473510D785B14E3; IL2CPP_EXTERN_C String_t* _stringLiteral87206AE2363483496C099F8C3AAC5B4A8AE2A66A; IL2CPP_EXTERN_C String_t* _stringLiteral87451A61D9F03361D19AA4D07B3469C8F4CC5781; IL2CPP_EXTERN_C String_t* _stringLiteral88CCFACD3FCBE4CCCD76B3480CC051D875ED4591; IL2CPP_EXTERN_C String_t* _stringLiteral8944FFAD1E8C07AABD7BA714D715171EAAD5687C; IL2CPP_EXTERN_C String_t* _stringLiteral8972561214BDFD4779823E480036EAF0853E3C56; IL2CPP_EXTERN_C String_t* _stringLiteral8A3D3E1BBAE5638D4FAC221C64332EF3B633E689; IL2CPP_EXTERN_C String_t* _stringLiteral8CCFD0DE77C0784114B412169491697DF81B4CCD; IL2CPP_EXTERN_C String_t* _stringLiteral8FDB330FBE0032F38CF465E208ABC5438BC1C01C; IL2CPP_EXTERN_C String_t* _stringLiteral902685EF3692B3767BC81B2C5518F1DB33AF2498; IL2CPP_EXTERN_C String_t* _stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA; IL2CPP_EXTERN_C String_t* _stringLiteral91E885D8E5AFB3ADF939AE0B29774A7CDD738CE9; IL2CPP_EXTERN_C String_t* _stringLiteral9300964C68712BA23F34ACEF429540225754B632; IL2CPP_EXTERN_C String_t* _stringLiteral932EEB1076C85E522F02E15441FA371E3FD000AC; IL2CPP_EXTERN_C String_t* _stringLiteral935EDBE91F7D3337C2FE13E3AD2373C9A8EC468C; IL2CPP_EXTERN_C String_t* _stringLiteral9377E60A3330B8DCBA93D22F00E784D5E303A292; IL2CPP_EXTERN_C String_t* _stringLiteral9483BDD3D2B438AB667226C5A0CD8CC30D9BAFB2; IL2CPP_EXTERN_C String_t* _stringLiteral95521D9D0C3E39CEABCC90300C04F03585598066; IL2CPP_EXTERN_C String_t* _stringLiteral960922F9F8E21682ABFD2C7FBBD3F8CBC3CEA2B0; IL2CPP_EXTERN_C String_t* _stringLiteral96E8AEE74A6EC7CE65523A64AD67939E0E62C9D9; IL2CPP_EXTERN_C String_t* _stringLiteral97F27E5AD8A8005896BEAB070988EA16E76BD0CC; IL2CPP_EXTERN_C String_t* _stringLiteral9809EEBD54AE05C9E348295B938477E70D63935C; IL2CPP_EXTERN_C String_t* _stringLiteral98CFE5E917B6BC87FA117F28F39F6E8B09499151; IL2CPP_EXTERN_C String_t* _stringLiteral997F59BC99B2A57280179C3CE09BA8AB57CBDF44; IL2CPP_EXTERN_C String_t* _stringLiteral99A83968733ADFF557210E1C8B53ACC558341FB8; IL2CPP_EXTERN_C String_t* _stringLiteral99D088ED5F1BAC91ECED72079B3134C8258E1646; IL2CPP_EXTERN_C String_t* _stringLiteral9AB0BD9A6126EE4B9D7538D5C6CBA7AA587F31ED; IL2CPP_EXTERN_C String_t* _stringLiteral9B5C0B859FABA061DD60FD8070FCE74FCEE29D0B; IL2CPP_EXTERN_C String_t* _stringLiteral9DA0D1E72ACE723870EBF4B28BFA1CCF33B6DDE9; IL2CPP_EXTERN_C String_t* _stringLiteral9ECB2E572CFDA900F36B37BE28189AFF0757C5D3; IL2CPP_EXTERN_C String_t* _stringLiteral9EDD575E287A64ED65D0EA6DDFEC128ADD02BAC0; IL2CPP_EXTERN_C String_t* _stringLiteral9F792B61D0EC544D91E7AFF34E2E99EE3CF2B313; IL2CPP_EXTERN_C String_t* _stringLiteralA0393902DB1F516EF5F95F6830938558A88FB23C; IL2CPP_EXTERN_C String_t* _stringLiteralA0BBE710D1F301E54FA309EBEACF48130A9ECD04; IL2CPP_EXTERN_C String_t* _stringLiteralA24AE9FAF6A4BA419BEE6DC5D1D746ACF826B198; IL2CPP_EXTERN_C String_t* _stringLiteralA2622C5B77AF10A7543E35E480A93137184C63B2; IL2CPP_EXTERN_C String_t* _stringLiteralA36A6718F54524D846894FB04B5B885B4E43E63B; IL2CPP_EXTERN_C String_t* _stringLiteralA422FAD59698B540506986BD496D03E151AFC0A8; IL2CPP_EXTERN_C String_t* _stringLiteralA43AA2B3CCE8548368BBD79297BC5714364EA31A; IL2CPP_EXTERN_C String_t* _stringLiteralA55F1512DA06994D35F587926787BC86E1C37545; IL2CPP_EXTERN_C String_t* _stringLiteralA6468CA2C2E3400246432BD38A3C2294225B56C4; IL2CPP_EXTERN_C String_t* _stringLiteralA9DB906761699B31567727716EAA6FD19AE5F5D5; IL2CPP_EXTERN_C String_t* _stringLiteralAA77F314FAB0BD632ACFB6279E7FB2C447DD50EB; IL2CPP_EXTERN_C String_t* _stringLiteralAAB90DFE8C6F152A4FB071F5F4F9DF804626E6AB; IL2CPP_EXTERN_C String_t* _stringLiteralAB3DFA7772E82AEBC308D16B390DC7A630733224; IL2CPP_EXTERN_C String_t* _stringLiteralAD5B8BD8A78CB6141D85230014C26A676FF8027A; IL2CPP_EXTERN_C String_t* _stringLiteralADD9B279679F9595A61957DB72E98E204DF6E3F2; IL2CPP_EXTERN_C String_t* _stringLiteralAF2B0CF212656E3065ABF0952C35E2535C594035; IL2CPP_EXTERN_C String_t* _stringLiteralAF349E9E9FCE74123ED62EF0042ACD5FFEB3DC9B; IL2CPP_EXTERN_C String_t* _stringLiteralB01F1CC7133E621E07A9C1B376C56F8218636E39; IL2CPP_EXTERN_C String_t* _stringLiteralB07EE427B13FDA8C265DAACE035CBEF440CB3F7B; IL2CPP_EXTERN_C String_t* _stringLiteralB34B0A02B98367D52DCDC8CC3635FF5A27611AF6; IL2CPP_EXTERN_C String_t* _stringLiteralB36FB26CFC4E8B0E76B4BEA00718F8C941751224; IL2CPP_EXTERN_C String_t* _stringLiteralB37C40A058E1BE76E181791B84BF21D6FEBAF035; IL2CPP_EXTERN_C String_t* _stringLiteralB3B32B341E40B76CC0EF6CAC3FFCE579FE71E2EB; IL2CPP_EXTERN_C String_t* _stringLiteralB44892B7F81948B449B1FCEB43F8115BA5FF108B; IL2CPP_EXTERN_C String_t* _stringLiteralB4EBFE34D0FA97F0DD2BB1234FAD8F59805F4E8D; IL2CPP_EXTERN_C String_t* _stringLiteralB4ED19F6FF6156C7E179A990BF73D02E8D5DF1FD; IL2CPP_EXTERN_C String_t* _stringLiteralB58F6A540CFAC225528E9A1911C79E6FB7C59D11; IL2CPP_EXTERN_C String_t* _stringLiteralB62500F9D8FC0619B393A42DBEC55BB8483ABC57; IL2CPP_EXTERN_C String_t* _stringLiteralB6589FC6AB0DC82CF12099D1C2D40AB994E8410C; IL2CPP_EXTERN_C String_t* _stringLiteralB737558468D75CA55B2D9185C0B55EACAEA627A0; IL2CPP_EXTERN_C String_t* _stringLiteralB8100F5BA8BD048A7CF11D116FBBD73130C3C6F5; IL2CPP_EXTERN_C String_t* _stringLiteralB858CB282617FB0956D960215C8E84D1CCF909C6; IL2CPP_EXTERN_C String_t* _stringLiteralB9A1EDEC2BC6B07157F69A2748CCE3DF4AA46053; IL2CPP_EXTERN_C String_t* _stringLiteralBA607182F71CA659F7E8466B7873570E4FA6634B; IL2CPP_EXTERN_C String_t* _stringLiteralBA68CC085BCDB2ACC7A9EAC506B72375599B4895; IL2CPP_EXTERN_C String_t* _stringLiteralBB1EEAB40131BAA9BA8E8A7AE56779A8FA7C7A5A; IL2CPP_EXTERN_C String_t* _stringLiteralBB9BFEFD5391F52BE54267E2A938A126661B0FF7; IL2CPP_EXTERN_C String_t* _stringLiteralBBD6E32EE1326237814B697269B4368033D50D2F; IL2CPP_EXTERN_C String_t* _stringLiteralBBFDD5D9E202955BADC46A0444FEDB1D583D1C04; IL2CPP_EXTERN_C String_t* _stringLiteralBC5DD045B8623DDFC4BD0BCE98CA5FDA42ACCF88; IL2CPP_EXTERN_C String_t* _stringLiteralBCE467B40131291712BF0D977BF396E4DE31975E; IL2CPP_EXTERN_C String_t* _stringLiteralBEFDE54A108CB9DC6AD6E0EBD28720531A6855E6; IL2CPP_EXTERN_C String_t* _stringLiteralBF0A2FEAAD70F387CF5BD8F8ECE69E85A8B9FC40; IL2CPP_EXTERN_C String_t* _stringLiteralC032ADC1FF629C9B66F22749AD667E6BEADF144B; IL2CPP_EXTERN_C String_t* _stringLiteralC03DF71F362B020D7ECA0433A7EAEDE62B82ABB5; IL2CPP_EXTERN_C String_t* _stringLiteralC0DC0AC3D1A9DF8FE9622B770DE1EA844F9F5CD2; IL2CPP_EXTERN_C String_t* _stringLiteralC1667A6DBF1A3F8146908B8EBC18AF7CDEC1FEFD; IL2CPP_EXTERN_C String_t* _stringLiteralC1FC191BD74A6F60CD1113917CCCF33F6EB445B9; IL2CPP_EXTERN_C String_t* _stringLiteralC2B7DF6201FDD3362399091F0A29550DF3505B6A; IL2CPP_EXTERN_C String_t* _stringLiteralC350C1F2719CE3CFCEDB3FC3D5E02625859F104B; IL2CPP_EXTERN_C String_t* _stringLiteralC4BA0822462E0C373AADD5360A69F205C2A7D036; IL2CPP_EXTERN_C String_t* _stringLiteralC525149EB1C2E0B57FE563AD7B4D9E45A646784F; IL2CPP_EXTERN_C String_t* _stringLiteralC6C4B89B8CCF0B9BD80A8AFD68F7708852262CAC; IL2CPP_EXTERN_C String_t* _stringLiteralC700DC1C6745C39929C4B490A50F1EF4B6DE67F1; IL2CPP_EXTERN_C String_t* _stringLiteralC8AF2BF24633B03752832E2B88FEEAA0E0308892; IL2CPP_EXTERN_C String_t* _stringLiteralC94F479833C5D401CFFDFA7AFE6C9C2D56448019; IL2CPP_EXTERN_C String_t* _stringLiteralC9EE751B234DF9F0CB1CEF58C3AFAABDFB33981E; IL2CPP_EXTERN_C String_t* _stringLiteralCA551563A6650D643771A8BD5C569178A0E5DF92; IL2CPP_EXTERN_C String_t* _stringLiteralCBB9EF8F60C063233AE07733AA2EEB5BAC42813F; IL2CPP_EXTERN_C String_t* _stringLiteralCD6B5E37A480F90D8313A8EBA22F2DBEE9A15F7B; IL2CPP_EXTERN_C String_t* _stringLiteralCE7B9CC2EBDA4298D48848DB493F475D87267538; IL2CPP_EXTERN_C String_t* _stringLiteralCEBF554E26A3CEE7CC46716C76105474CD19B3E4; IL2CPP_EXTERN_C String_t* _stringLiteralCECA32E904728D1645727CB2B9CDEAA153807D77; IL2CPP_EXTERN_C String_t* _stringLiteralD0A3E7F81A9885E99049D1CAE0336D269D5E47A9; IL2CPP_EXTERN_C String_t* _stringLiteralD13D71939A7725E8BBC03792041441B834A48F4F; IL2CPP_EXTERN_C String_t* _stringLiteralD166E844A3F3F87149CC4F866EB998E9A751C72A; IL2CPP_EXTERN_C String_t* _stringLiteralD374C5B32FDB6AB9A377C21A1496F0AE025350E2; IL2CPP_EXTERN_C String_t* _stringLiteralD3BB58F43423756E664BDFC3FC3F45439766807B; IL2CPP_EXTERN_C String_t* _stringLiteralD3BC9A378DAAA1DDDBA1B19C1AA641D3E9683C46; IL2CPP_EXTERN_C String_t* _stringLiteralD414CE398A897E5D390F2C8E42E198F74FC13AA9; IL2CPP_EXTERN_C String_t* _stringLiteralD42942B365A72FB3F39CD23DAF621580F498763E; IL2CPP_EXTERN_C String_t* _stringLiteralD4D60962C564FF4E5AB47355C2F68221D614AFC0; IL2CPP_EXTERN_C String_t* _stringLiteralD5DF16A053AC14B040C62E79CA35CBD99E8BA7C8; IL2CPP_EXTERN_C String_t* _stringLiteralD6CBE7E38E09D40AC8221B0DDE0FB2E220247F7B; IL2CPP_EXTERN_C String_t* _stringLiteralD6D9970C3066A54835E00256D44ECD8153325A03; IL2CPP_EXTERN_C String_t* _stringLiteralD6F333EBFA54232DEAF561F48A1FE48509FEAE3C; IL2CPP_EXTERN_C String_t* _stringLiteralD8FE6F076D7909FF7107330CBD7235F21AF02801; IL2CPP_EXTERN_C String_t* _stringLiteralD9907347838493529221F1324618B317C4C431B3; IL2CPP_EXTERN_C String_t* _stringLiteralD9977C4ABA9BD29906A95DAC37967CFF847F0EC5; IL2CPP_EXTERN_C String_t* _stringLiteralD9AD6D6EE31EEA74A5B100D0C9320A75B260AC4C; IL2CPP_EXTERN_C String_t* _stringLiteralD9BBFE341E231DD531A559F974E1015BCC9E6DC1; IL2CPP_EXTERN_C String_t* _stringLiteralD9FBDDF2CBB921BE69D65F49DDB93CB5E87CC4B4; IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709; IL2CPP_EXTERN_C String_t* _stringLiteralDAE50AB6C9EE2D4025C53458EFFED3E935ECDF57; IL2CPP_EXTERN_C String_t* _stringLiteralDC7F6C369E736C6A7FA89F29B4BCEA35B31E7D49; IL2CPP_EXTERN_C String_t* _stringLiteralDC8415CCFE52505F1D0A74025C76B3C26C88C59D; IL2CPP_EXTERN_C String_t* _stringLiteralDDECD1B789B8A6D1B22C1C2B6E877A82A395F718; IL2CPP_EXTERN_C String_t* _stringLiteralDE44976BA6EF44944D75FEF09EA6237C375988CC; IL2CPP_EXTERN_C String_t* _stringLiteralDEAE2CA6EAEA43A091674E31DD8E8D250C14C844; IL2CPP_EXTERN_C String_t* _stringLiteralDF97A42549E5C0E1753B985126565531CC9F3C56; IL2CPP_EXTERN_C String_t* _stringLiteralDFE109EFC8BE01B7D637E36D004DD36AD98A1201; IL2CPP_EXTERN_C String_t* _stringLiteralE0449BCC02B4D56EA752E24FA6B74C2D983079DF; IL2CPP_EXTERN_C String_t* _stringLiteralE0754E6E0A769DC094BEE20EE9DBD4019B26EF24; IL2CPP_EXTERN_C String_t* _stringLiteralE0B41462A3EF7CD8B8DB500826656759E25CC94E; IL2CPP_EXTERN_C String_t* _stringLiteralE11557A88106E7FE5BB613921C6F637BCCD31989; IL2CPP_EXTERN_C String_t* _stringLiteralE19A13294CD96A9A0821CDA57FD3346B2CDFFB6C; IL2CPP_EXTERN_C String_t* _stringLiteralE232DC22EB087D95A05E4710FB9DED78D1688F68; IL2CPP_EXTERN_C String_t* _stringLiteralE2BBF209AE0E6210387A30E3ED477444BDA8FE6E; IL2CPP_EXTERN_C String_t* _stringLiteralE5559C91F3F57F398B8B547CA356C67FFA1F6497; IL2CPP_EXTERN_C String_t* _stringLiteralE5E429BCC9C2E4A41A3C7A4D96203BE6CB273B11; IL2CPP_EXTERN_C String_t* _stringLiteralE69F20E9F683920D3FB4329ABD951E878B1F9372; IL2CPP_EXTERN_C String_t* _stringLiteralE758F73AF56E73D52D2255C99EF438305E8533BB; IL2CPP_EXTERN_C String_t* _stringLiteralE7B1FFF7007B635892A8F2C7C17F4FABC7AA2F8C; IL2CPP_EXTERN_C String_t* _stringLiteralEC018D9B2AE22D92E0692846B79930726940CF87; IL2CPP_EXTERN_C String_t* _stringLiteralEC87FACA4CBAD909219BBCEA9DBBE370A9F8C690; IL2CPP_EXTERN_C String_t* _stringLiteralECDCCD0C81DE0F1EC6BDFC3DA95A27B4829ED79F; IL2CPP_EXTERN_C String_t* _stringLiteralECE29405C121243BF01F6D1D079D72CB8DF9CDD9; IL2CPP_EXTERN_C String_t* _stringLiteralEDB7DA5C9962DD5BB5FAA1890386C1E1D4392661; IL2CPP_EXTERN_C String_t* _stringLiteralEE685442D8365096427B877EAA72FAE0ACF0E4AD; IL2CPP_EXTERN_C String_t* _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556; IL2CPP_EXTERN_C String_t* _stringLiteralEEEC90853FC9B89566DD858A99CEE46219C6FB39; IL2CPP_EXTERN_C String_t* _stringLiteralEFED3690EA2243F5F1AC77CBB0987E5335440258; IL2CPP_EXTERN_C String_t* _stringLiteralF0FD5DE40D5624DD5531FCD827C27F5C7421A6CC; IL2CPP_EXTERN_C String_t* _stringLiteralF127B44E6D56B2F84FFDB105466CF4BAAABAB2DE; IL2CPP_EXTERN_C String_t* _stringLiteralF153A28687D6800CAAD6007F5537CB4C0AC0B90B; IL2CPP_EXTERN_C String_t* _stringLiteralF157520F6E4410E060D49EA7EA8D45E29708266E; IL2CPP_EXTERN_C String_t* _stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F; IL2CPP_EXTERN_C String_t* _stringLiteralF22E0B86040D26623EC71DB229693B313EEFB5B7; IL2CPP_EXTERN_C String_t* _stringLiteralF25B700ED9F092123A43ACB205A6869342CF9DD6; IL2CPP_EXTERN_C String_t* _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5; IL2CPP_EXTERN_C String_t* _stringLiteralF36D79A7BB78E70D214739C23AF51CC2649218FE; IL2CPP_EXTERN_C String_t* _stringLiteralF38EA64458B7FBE78C409B9159F322E075AF0B50; IL2CPP_EXTERN_C String_t* _stringLiteralF39D6C50975466C0E53549F08B2F563B22FE1072; IL2CPP_EXTERN_C String_t* _stringLiteralF5A19884ABD0F810E9BC20D747EBAE160D517170; IL2CPP_EXTERN_C String_t* _stringLiteralF7F1997C6CD1AA051279675742272A956E7DB628; IL2CPP_EXTERN_C String_t* _stringLiteralF81B4F09A85F55DDC3FFCA77898383A75640AA15; IL2CPP_EXTERN_C String_t* _stringLiteralFAE39DA7DB252B2371F75685351203E549E5C055; IL2CPP_EXTERN_C String_t* _stringLiteralFB157325FE225946421F77EC1F8BF9F7F98E81B9; IL2CPP_EXTERN_C String_t* _stringLiteralFB360F9C09AC8C5EDB2F18BE5DE4E80EA4C430D0; IL2CPP_EXTERN_C String_t* _stringLiteralFC288D7B83A87B0DDC24679D162D7350601C984D; IL2CPP_EXTERN_C String_t* _stringLiteralFC8E1F22C45AAC5385026D543B9E31E719C612D8; IL2CPP_EXTERN_C String_t* _stringLiteralFDD289E370BD5CC575F48A16947D05C144EC474B; IL2CPP_EXTERN_C String_t* _stringLiteralFEB6CEE0B6900775589FE0E64A68CFBDE2B0A3EE; IL2CPP_EXTERN_C String_t* _stringLiteralFEC5F94EEF090E85867493394092E5DE8BF859D3; IL2CPP_EXTERN_C String_t* _stringLiteralFFAAC6B1A9A0C24D7EF00A22A84CC2405882AADF; IL2CPP_EXTERN_C String_t* _stringLiteralFFE688A5014306635CD935F7169187B7DB387CD5; IL2CPP_EXTERN_C const RuntimeMethod* Action_2_Invoke_m1B0DC3EC2F46E68A1692C2DB2E2EDAEB5ABC9FE0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Action_2__ctor_m92817F0253F68C636ECB18A4FE259FC9634986F2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ArraySortHelper_1_IntrospectiveSort_m1D4EC0AAC55CE220F789DD1BA1DA53566D253562_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_Sort_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_TisString_t_mD72A29E49E470E40B0AF25859927BAEE4A19004A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Bootstring_Decode_mF393D2ABEBF1384E983F5551079FE768AB88F76D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Bootstring_Encode_mF17F92BFD3F22FBFD68DAEF113D11E83BA76BAF5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Calendar_ToFourDigitYear_m4ECF4307F3C84104730F5E998F3BD2CACACD9C1C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CompareInfo_Compare_m59ABC53310F6E2C9EF5363D4D4BFEF51A30A6C41_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CompareInfo_Compare_mAC04DBE0A3F60A59E0A9632DA1E875936A991769_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CompareInfo_CreateSortKey_mB9279DED2BF48C87A5BE47EAC7F65A13601B10B3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CompareInfo_GetCompareInfo_mC5A4E1B529C9E7B3CD7A5892F8FBA6DE2D080D1F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CompareInfo_GetHashCodeOfString_m18B1AAFA96BF106798A70C8FD6ACCA286BA5A142_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CompareInfo_IndexOf_mB9461B9D33A8AF04CBDA5BA299A5267C99E276DB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CompareInfo_IsPrefix_mE42FE270F838D80C155AEC219DC2558F3F34BD36_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CompareInfo_IsSuffix_mB734AA0C74DB63689303C1A99E9D0C00D53C2EEA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CompareInfo_LastIndexOf_mACB90E30C378E95541AED0E468AF1C87BB2BA794_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CompareInfo__ctor_m841EB6DC314800AC90C16EDB259B8DBB3BCFA152_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Comparer_1_get_Default_m5C03A395556B2D119E9A28F161C86E4B45946CD8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Comparer_1_get_Default_mDDE26044E0F352546BE2390402A0236FE376FB3C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Comparison_1__ctor_m5E87814961C75D756B2DD39DFD4D893FA66D0127_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConcurrentSetItem_2__ctor_mB1DADD36C8ECA3425C54CAD44C159215B831EA1F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConcurrentSet_2_GetOrAdd_m83EA02BE3061676F31A9D4A460D6C55CB5E0F1D3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConcurrentSet_2_TryGet_m5DC99116E6C7CEB7071738E390C028F16500D0F2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_m7ECEB69F45361CF1DD0E053D2BC7F30CCB5478CA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_ContainsKey_m5F4C008599642405E5984D9D35D89E51612D9FAF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_m29B8CACD7AEA9C8C02F46E3FFDFEA3EC78871182_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_m581BE284F430A27B34743D8438ADB091C70000FD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_m77A3B26E0EDFCCEDB1FCBB4ABEF7C47F146296A8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_mA0C2ACFD76D61DA29EA3D190AFD906C75A3C9B51_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_mACE6F295B868D8DD552A8F7D4ABA375F843BB13B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m028A8C29837E90F8FCF51F91433AAE6A27BB29A2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m5B1C279E77422BB0B2C7B0374ECF89E3224AF62B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m5C88DEF6F44E0685CA2079AA411B600A8734505A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m6C6B59C12BD62E890CCF5AF0366E3DA0F29ADE6C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m7067EEB3CF8A52DE17DCCA02E2ABF40CC224BF28_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_mAABE195367CBB1AFADF65A68610C2C3E5446FA43_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Item_m832206501573309C2C9C1E4F96AAC39AACE24906_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Item_mD6D7D7470E8BA9FF2800804F740501BB3A0A3EB6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Keys_m7B7C3AFFC85AC47452A738673E646AA602D63CA1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Keys_mC8A65C37A45462D5A68C0266A0CD49B92D4DDC41_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Keys_mD09E59E7F822DA9EF3E9C8F013A6A92FC513E2EF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Values_m4326450E83510370C04304A1B988C2C1223470D5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_m031E42C2E9C7C3EA36FF7FD2E6155B07C5BD268C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_m597918251624A4BF29104324490143CFCA659FAD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_m7948EED55902B8130637D4107ED348F2146E18B9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_m99E7F592C4AA8A81755705784131ED187F20ECC0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_mA93729C8731ED32F7F1DAD2154CEFC6236707CE1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Double_CompareTo_mB0A2B8C7C5FAC5BE56944B11D254507588407EB5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Double_System_IConvertible_ToChar_m5A3D51F95BEEFB294294FC0D2CB4D198ADEC9004_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Double_System_IConvertible_ToDateTime_m3D5512DED1ECDB253130146CA1324D7F77DF8CE8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Empty_GetObjectData_m232B12C727819AE6EE45B673E84D081C52E398A3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EnumResult_SetFailure_m074187A9DB5CC9B1E8AC1149BC23D612B6A63629_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EnumResult_SetFailure_mE9F0F9CA050C904DA2409A923325038BEAC693BD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enum_CompareTo_m9FA79C9B482ADB78DE9431F5BA7552C7D2B317BE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enum_GetName_m9DE2256BCA030763AE066DA2B23EBBC2E4C62C5D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enum_GetTypeCode_m9D0FF53153AF9E180B67F3B48054E9868CAFF032_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enum_GetUnderlyingType_m0715B4E60E6909F03FF7302B6E20B1AB88DA84B1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enum_InternalFormattedHexString_mBE7CD93BAA508C20D13D470A11B40222893508DF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enum_IsDefined_mA573B15329CA2AA7C59367D514D2927FC66217E2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enum_Parse_mC51A0BD680AC2D2152A541E2A8475DB61A83A6E7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enum_System_IConvertible_ToDateTime_m4370621C3EB84BB84E1554A41A2F601D3CC4A11E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enum_ToObject_m22DBEC2C53D962AC357CC08D6ECEA2DE53867C15_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enum_ToObject_m4C7675BBEBAD96C9706EAF7529E4113F7381F0C7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enum_ToObject_m8F4C7D69296541DF78E40CEB98B59C7CA67633B6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enum_ToObject_m8F5068C996337F56B4000A4B255126A35951BD05_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enum_ToObject_mAF017E3EDCF2C7BA8FF7ED0DDCBCD827B51D4971_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enum_ToObject_mC2D7A39D56EFFFE7D0B61D685C8F285356CC71BF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enum_ToObject_mC3CE70A98934303986CC11631FC415BCA9C4000A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enum_ToObject_mD5E11C53D7BCC62EF4260FA727E14B7B95C2191F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enum_ToObject_mE84F27DFCF3F22A1053968A9DCE6C0D14D25B7E2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enum_ToObject_mED18F2B01F4BA412C1882396CE977411BB54165D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enum_ToObject_mF17916242A9F9ACD4F79E15749BEE3FBB2D7A57B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enum_ToString_m6BEF4567C67A1EF85E25BAEBF882C792CDC0808C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enum_ToUInt64_mF33D43629B55147D1AF6CC3D813F894435AA50F5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enum_TryParseEnum_mABDEE4971D4257A8058A3F1AC12DE081AD694D4E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m4F87E65CA1AC8F4D475B132D5AE6731193513B03_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m59B527F033176221C360655866D8623C286F8AAC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m902D0B2B4B4B589E6F3653D9CDB38E0AA97EBCF9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m97BA3C80D3997BCF6307DC3D96E2EBC4BEAA1FCE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_mD561B0A07FD84F60ECE232D9CAF7A6101C84485B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m37F2C5471BB72DC494FC4C00D65102FEC56861F0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m42C746E84C832B62E93536A47B4086F3A3AC6609_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m7126593F0EC448BE693A0DB2D4ED1C94D18A65C6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m80DDFE666F71F21BC6B8437E64F6D18DF9D7F695_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m99D84216FD83EC374968B5CAEE8F276D2CDFBB34_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m21261DFF80ABB45B33C47E3DDE689068ACA20224_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m219EC3BCCD8CF3A474AD0C4DBA55EB9B74C9F89C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m262C34F27FC20407B5225412B2C323C654BE9E88_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m5CFE9565387CC3F8012BF6E529BF77223AEE8326_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m7E3BB9CBEBA4C07616DE07B4857E30FD01D97267_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Environment_ExpandEnvironmentVariables_m4AE2B7DE995C0708225F56B5FF9DB6F95F91D300_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Environment_FailFast_mAAC3E58BB4725CF25EFB13BE6AFB4418AC32C176_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Environment_FailFast_mAEC5FD40A83110B9B342497AE1683229CA4F1607_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Environment_UnixGetFolderPath_mD4042C67476F52494B34BEAC11D4F381DABAB59B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EventSourceOptions_set_Level_m340628B5F059DE8CD72F0094BBB29D6EADFD39D4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EventSourceOptions_set_Opcode_m4763851B2C99E961E725331B973501E21F17B854_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Exception_GetObjectData_m76F759ED00FA218FFC522C32626B851FDE849AD6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Exception__ctor_mBFF5996A1B65FCEEE0054A95A652BA3DD6366618_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* FieldMetadata_IncrementStructFieldCount_m874313B0277DFA9F7B0309099139D9347E52F8AF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* FieldMetadata__ctor_m51883151B3EB815CC989B0B05F401145A0172363_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* GC_ReRegisterForFinalize_m4978CBD78D693FF77EA40D4000F0EF9F2C2E54C8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* GC_SuppressFinalize_m037319A9B95A5BA437E806DE592802225EE5B425_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Impl_AddNonscalar_m75063AAB17BB5BF47DA14FFEB1166095E6EABD63_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Impl_AddScalar_mF4D0F93A5611A1A6C3DD3429D980B80B4470E611_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyCollection_CopyTo_m26883818AD58E396524E6D7D7312AB0BCEEFE1CD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyCollection_get_Count_m9CE16805B512F963A724719B26A34799FFBA6083_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2__ctor_m8805E837B83D4F3E220B204070CC4EE0EC74A0EA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_get_Key_m40CE9E116FF11AC137531058313C7D97F73A2FAB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_get_Value_mD3D1B9E4CED325BD1E37559B03C8F1DBD33594C3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m006566681F0BEFBCF7978CE2B3FA4CA1074A4B81_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m14F9260F6416415635961F291F3DE17A7031B928_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m50C0D1F69B2EF31137658E2F052EBBAC7BF82771_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mAE60E38A3C5EB568E2FA5D503CBC7E188B2BC286_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Contains_m01102404F7F955992DC1CD877656AFE304FF7DFF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_m0115521342BC440B70CEEF37B78F635C14534498_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_m3B7E28F98490CDAA255460E968EDF0A09147CE56_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_m648284040ECC710040C8DE7B08CC0795512F92F7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_mE721B3C5E137DCDB408BE05CA472EECBAAAA418A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Insert_m1E03FC53B36149C842A2684B9A3D7791714F8E11_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Sort_m723A6BEBAB430277CD79C8BD7D63DEF94E0BBB0A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Sort_m9EC38ED6BC1D49988744517F589D90B3106537B8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_ToArray_m25E26D7DD5298F9FCE28B119AA6856B693E5FB8C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m020F9255F34CF1C83F40396FACCAB453009967BC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m13F938AD3F5447299ACE26EDDE5881D92FD230F7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m262B3A833A8A33F720DDF70DABD4C455423A6797_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m3CD6B39CDE0FB0C6C1119BD8A03FB3EB9D46A740_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m517BD02F3D70BFB00581673F29184CD223F4585B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m5B92462E5F48CF2C1E83EFDE82BBFAB0429DC1B1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m70ED87E74F77E9BA83922D9D503C21E2F1F3B20F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mDA22758D73530683C950C5CCF39BDB4E7E1F3F06_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ManifestBuilder_ManifestError_mA178FBE087E34A3CC07873D32896191BF7C74A20_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Statics_CheckName_m001904DCAB16ACBA3DB970F2497D6032BBE26EDE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Statics_GetCustomAttribute_TisEventFieldAttribute_tCD8E252D7D673724F2980B794282B715E16A675C_m2EAB404362EDA0B68DE042BCE4A19835DA033E17_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Statics_IsGenericMatch_mB50849B2448DCAA07CD8C30B0EF05613CA6C4699_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Statics_MetadataForString_m53EAC9E9AD6BA8CB18BB3ABE008C4D5D2725C34D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingEventTypes_MakeArray_mFEB619E641B7C378811F11F7AEAC6B780B7FD27D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingEventTypes_MakeArray_mFED40E1D79EAF166AC6ED6E0E83312D6791A7AF9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingEventTypes__ctor_m01AA9D32D50DA43E399D2E4F6C6CE2686C860F0F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingEventTypes__ctor_m08243D6F1D5DD75F9E2ED6C5C09CF1F25E506A4B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingMetadataCollector_AddArray_m9074593EAE95D13523B4F7CF7FB94019CF49F406_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingMetadataCollector_AddBinary_mA1EC53EFE1C72570ABAF8FB53F773D52033FD257_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingMetadataCollector_AddScalar_m136E01C1CEEFA221D5F78507069DFE8590CC15FB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingMetadataCollector_BeginBufferedArray_m10A9D19539D483BDE22950EB3B6D0C6BBBD1B461_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingMetadataCollector_EndBufferedArray_mD649372F4F19057DEA54C9D6442035161C38BA8E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1__ctor_m004FC4E35CAD0B857DC5BE29F01043DB25191055_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1__ctor_m01A1D2608814C21461FAC61AB3206112FFB03471_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1__ctor_m090791EDB460E88AD83B65DB619AD6940D7A21A5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1__ctor_m1498500B66412E0A994E03FB84653C2DA750738F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1__ctor_m2A7493F8B3D498E6F09A28DCF8EE57C970C27469_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1__ctor_m3BB638566503694A439D54D29DB751B923434141_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1__ctor_m3E75DAA4CCA56FCABC93D363960339207CFA0557_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1__ctor_m4AD1D20B36A5E6D3F95F5606065B95AB934C74B1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1__ctor_m4CA2DF6A9F78819B7064FB9DEE26DAEAF206FC41_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1__ctor_m614D762DF15273729D702EB31D33C18EAC01009A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1__ctor_m6691C3567EF02E89787BEBC7485CCC68DD7E0170_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1__ctor_m82F6AD14E6BE97115DADDEC3DA3FDC4F584915C2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1__ctor_m86992A2F1FF2D81BA2B30133266B2D666748C447_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1__ctor_m97EEF71CA5F9665188EDC573938751D81FF33EA3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1__ctor_m9EF45CC40F98B8EEFE771610BD4833DB80064A48_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1__ctor_mB444AA3C7505EF658C4A9D495C286724373DC704_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1__ctor_mC3DE0F2064400F830BCA0011DA3E156E880E0BB8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1__ctor_mDCC9C954279A37C7FA0567804538C029E35D1AC8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1__ctor_mE1849D434DA715B1474C48419E3B750A0400F7EE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1__ctor_mE657899584504CCB3DEE1E1E6B1B6BE1D4F9A182_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1__ctor_mEAB8B1F0747CEA73920E36D26D76B9272356D3C5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1__ctor_mEFF9B2B6B6635C693E8C279AE02E8953ECB7EDDA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1__ctor_mF85058C60947C19E1EAEE1B9E63ED99C95BA5500_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1__ctor_mFFED700B80F94A8188F571B29E46272FFE165F68_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1_get_Instance_m018D99F4DF835BDA0D63795B9391EA91BCBB435F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1_get_Instance_m2C1BF8D240A8DEA3E364B6D04AE9994EBDBF915B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo_1_get_Instance_m8E59BB0AA299E5B826302E9355FD9A9D0E97B2CE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo__ctor_m057EE183448805D4BFBCA54029DBE7968712A270_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TraceLoggingTypeInfo__ctor_m6122E84F15E9A052737518F60B4CA6F7C1D5CE74_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass22_1_U3CTranslateToManifestConventionU3Eb__0_m739A6DC3C33A8D6A6F9FD0CEFAD75723E53E6372_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_GetEnumerator_m4BF64721E0542BF1C48C497E3420E59565496D51_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeType* Boolean_tB53F6830F670160873277339AA58F15CAED4399C_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* EventIgnoreAttribute_tB6631ED83A9E76708A9D3B0E9B945A4B4953F67A_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Exception_t_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* FlagsAttribute_t7FB7BEFA2E1F2C6E3362A5996E82697475FFE867_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Guid_t_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* IEnumerable_1_t6FAC70CFE4E34421830AE8D9FE19DA2A83B85B75_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* IntPtr_t_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* String_t_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* TraceLoggingTypeInfo_1_tDB0DA2DB310802F94B0A0088822973F4FC8CE2EC_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_0_0_0_var; IL2CPP_EXTERN_C const uint32_t Bootstring_Decode_mF393D2ABEBF1384E983F5551079FE768AB88F76D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Bootstring_Encode_mF17F92BFD3F22FBFD68DAEF113D11E83BA76BAF5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CalendarData_CalendarIdToCultureName_mA95C989E84F938AF02F385133E96A3BE054C129B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CalendarData_GetCalendarData_mDFCD051C21909262E525CC9E75728C83BD0E1904_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CalendarData_InitializeAbbreviatedEraNames_m800E5461A6FA3B0BDA0921C5DCA722C15DBE428B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CalendarData_InitializeEraNames_m46E606CC6E045A80DDFAD7CF084AE8821AA7F4D7_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CalendarData__cctor_mA7D20B236BCD7799734737BAFD108C3B31D068CD_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CalendarData__ctor_m1E7179936DAFF53B6F9E65DDF48E3494C71FE79B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Calendar_Clone_mEF6C60BA859414FD5F0433FF72186E7ABEA1E3A7_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Calendar_GetSystemTwoDigitYearSetting_m879BEF952F1099F4977662EC3DFE5D89BF9530BA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Calendar_ToFourDigitYear_m4ECF4307F3C84104730F5E998F3BD2CACACD9C1C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Calendar_TryToDateTime_m4FEBD3552CF126C05B582B5A67B36E5DA5C6F96C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Calendar_get_CurrentEraValue_mB44D88CD4CE662B8F54E8551F1157FCD8FFDB4C7_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Calendar_get_MaxSupportedDateTime_m395769D29E5A25BC61CB4CCB7DC696C671EF1DC0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Calendar_get_MinSupportedDateTime_m6DC3947310A77AC11A41106183B8885B27D60096_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CharUnicodeInfo_GetUnicodeCategory_mC5602CC632FDD7E8690D8DEF9A5F76A49A6F4C4C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CharUnicodeInfo_InternalConvertToUtf32_m78237099749C0BFC0E5345D2B18F39561E66CE57_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CharUnicodeInfo_InternalGetCategoryValue_m70C922D12420DD22399D84B5CA900F80FD0F30FE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CharUnicodeInfo_InternalGetUnicodeCategory_m2F385E842FECF592E5F45027976E6126084657B9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CharUnicodeInfo_InternalGetUnicodeCategory_m94698AE2E38DC942BEABD312ACC55FD82EF98E68_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CharUnicodeInfo_IsWhiteSpace_m746D142522BF05468B06174B025F9049EAE2A780_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CharUnicodeInfo__cctor_m8259FDC09EDFACA28B7AADC1D444DF5FDA14376D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CodePageDataItem__cctor_m9E0B15DA37105ED491D75EACDD1BD75F5F476650_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CodePageDataItem__ctor_m2A8D39A60B9EA6B5FEC726EA38D6BCBEB47ED051_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CompareInfo_Compare_m59ABC53310F6E2C9EF5363D4D4BFEF51A30A6C41_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CompareInfo_Compare_mAC04DBE0A3F60A59E0A9632DA1E875936A991769_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CompareInfo_CreateSortKeyCore_m6C1597391D8D5ED265849A82F697777EF86D5FE8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CompareInfo_CreateSortKey_mB9279DED2BF48C87A5BE47EAC7F65A13601B10B3_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CompareInfo_Equals_mF526077826434AF3DD65619A2C6BEAC7ABFE082C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CompareInfo_GetCollator_m3566663FC53B48F661AD6F416AD024758493F933_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CompareInfo_GetCompareInfo_mC5A4E1B529C9E7B3CD7A5892F8FBA6DE2D080D1F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CompareInfo_GetHashCodeOfString_m18B1AAFA96BF106798A70C8FD6ACCA286BA5A142_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CompareInfo_IndexOf_mB9461B9D33A8AF04CBDA5BA299A5267C99E276DB_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CompareInfo_IsPrefix_mE42FE270F838D80C155AEC219DC2558F3F34BD36_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CompareInfo_IsSuffix_mB734AA0C74DB63689303C1A99E9D0C00D53C2EEA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CompareInfo_LastIndexOf_mACB90E30C378E95541AED0E468AF1C87BB2BA794_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CompareInfo_OnDeserialized_m413EBD4F2FEB829F421E2090010B8EA0EF46119B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CompareInfo_OnSerializing_mFF6C35B93E67401EE91F4D8547EE34F3D4899BC8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CompareInfo_ToString_m770A27E70F7B8FB598E0EF85A554677F7CAB82C9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CompareInfo__ctor_m841EB6DC314800AC90C16EDB259B8DBB3BCFA152_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CompareInfo_get_Name_mFC962E79B2133D59E2C83BA5BF70995D3147B8EC_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CompareInfo_get_UseManagedCollation_mE3EDFF2DB83257810C9BEA1A09987D669F45EB2F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t DivideByZeroException__ctor_m0FA924BBA604B8446C3844720AEE38E6DB8E39D5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t DllNotFoundException__ctor_mA1F672A4786BB96B15A06425687CDB421671C685_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Double_CompareTo_m569906D5264ACFD3D0D5A1BAD116DC2CBCA0F4B1_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Double_CompareTo_mB0A2B8C7C5FAC5BE56944B11D254507588407EB5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Double_Equals_m07123CFF3B06183E095BF281110526F9B8953472_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Double_Equals_m25A10C1D70E2906C2DAA5F3863B6AB76AFB13F33_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Double_Parse_m17E3E4C7194E91689E3E2250A584DB7F1D617552_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Double_Parse_m52FA2C773282C04605DA871AC7093A66FA8A746B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Double_Parse_m598B75F6A7C50F719F439CF354BDDD22B9AF8C67_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Double_System_IConvertible_ToBoolean_mF2373D33947A1A2A41037A40C332F1F8B0B31399_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Double_System_IConvertible_ToByte_mC6823B019DF9C56705E00B56F69FE337DA4FA3D2_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Double_System_IConvertible_ToChar_m5A3D51F95BEEFB294294FC0D2CB4D198ADEC9004_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Double_System_IConvertible_ToDateTime_m3D5512DED1ECDB253130146CA1324D7F77DF8CE8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Double_System_IConvertible_ToDecimal_m82107C16B72FEA85A6BE269EA2C4ADCEA77BDF78_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Double_System_IConvertible_ToInt16_m1912F2BCB7CCEA69C8383DE3F23629EA72901FE8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Double_System_IConvertible_ToInt32_m58F8E6D8B06DD91DEFF79EFC07F1E611D62901D4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Double_System_IConvertible_ToInt64_mB0F1BC81467C260C314E8677DA7E7424373F4E74_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Double_System_IConvertible_ToSByte_m420F7D1B2F9EC1EB5727C4FC343B5D9A1F80FF9E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Double_System_IConvertible_ToSingle_m368154C37F9126F8A86FE2885B6A01BFF514EC4F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Double_System_IConvertible_ToType_m8A79DB3AE4184EB16E3F7401C1AF1F5487996E17_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Double_System_IConvertible_ToUInt16_m7EB78B4D0E534EA609CA0ECCB65126288A01E7BB_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Double_System_IConvertible_ToUInt32_mDFE527435A1AB18FB7B8C2B82FD957E2CBDCB85D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Double_System_IConvertible_ToUInt64_m42B2609C9326264155EA6BCE68D394B003C3B8DB_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Double__cctor_mF8ED20B3C490811C7B536F11984C848279FD81DA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Empty_GetObjectData_m232B12C727819AE6EE45B673E84D081C52E398A3_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Empty_ToString_m0C8812BB8898E96B034C6CD4D3F1F00757E33EE3_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Empty__cctor_m54D08148F4107B10CF2EFEC0BD7487B88BDE8846_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t EntryPointNotFoundException__ctor_m683E578CE5B45F534894C0AD324CFF812B8C6367_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t EnumResult_GetEnumParseException_m7C06BD6056764876616D10BB96C55599D008740B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t EnumResult_Init_m216C0A2C400E00ECA1E85E1C6374C19862785478_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t EnumResult_SetFailure_m074187A9DB5CC9B1E8AC1149BC23D612B6A63629_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t EnumResult_SetFailure_mE9F0F9CA050C904DA2409A923325038BEAC693BD_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_CompareTo_m9FA79C9B482ADB78DE9431F5BA7552C7D2B317BE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_GetCachedValuesAndNames_m1001EB28E9797369685546F225FE322640A1F6A3_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_GetName_m9DE2256BCA030763AE066DA2B23EBBC2E4C62C5D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_GetTypeCode_m9D0FF53153AF9E180B67F3B48054E9868CAFF032_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_GetUnderlyingType_m0715B4E60E6909F03FF7302B6E20B1AB88DA84B1_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_InternalFlagsFormat_mD244B3277B49F145783C308015C9689FE9DF475C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_InternalFormat_mDDEDEA76AB6EA551C386ABB43B5E789696A6E04B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_InternalFormattedHexString_mBE7CD93BAA508C20D13D470A11B40222893508DF_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_InternalGetNames_m258F0B71398559D545BA5BCA85D9B2744CDD444A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_InternalGetValues_m4A2F2F5A56BA8A6F5C923327CD99C71BABEAB82F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_IsDefined_mA573B15329CA2AA7C59367D514D2927FC66217E2_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_Parse_m8677C5E01F1258902058D844824B93F7836BF4C3_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_Parse_mC51A0BD680AC2D2152A541E2A8475DB61A83A6E7_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_System_IConvertible_ToBoolean_m3EF5E33A9128CD048EEA69A04F6B422884EE8D4B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_System_IConvertible_ToByte_m5BE387416F92EACEB0128ECFE6416748FE72D6E6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_System_IConvertible_ToChar_mE05C5BDA35FD64946853DAD041736C5CE5892593_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_System_IConvertible_ToDateTime_m4370621C3EB84BB84E1554A41A2F601D3CC4A11E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_System_IConvertible_ToDecimal_m65F8B300A95DF82D982AD78D3E3FF84F5BF2E2AA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_System_IConvertible_ToDouble_mB55D36C91D85AB21483720880D702F7F70F7D8BE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_System_IConvertible_ToInt16_mF634B6CC5EE72D354C34877FF1AE6CC34E6B4AFB_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_System_IConvertible_ToInt32_mB974E67C083098966108C522AB020C4E5505ACE4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_System_IConvertible_ToInt64_mE8737C7F601FFC92423779856882960DC0F83974_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_System_IConvertible_ToSByte_mAF0D676F0F0687E14F0C1E762D9DA9BB651A6187_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_System_IConvertible_ToSingle_mAC17D8550816E4E23FE6ADA89D4CEDE9DEF98DC9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_System_IConvertible_ToType_m31DBF0CD8F83E59C06B8EC8473BD8639DC1B2853_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_System_IConvertible_ToUInt16_m203C0CE3AE4167514D5FE5F1B238A4767B39039E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_System_IConvertible_ToUInt32_m38E249A9BF47B07A3693183A9C930E1E39415EC5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_System_IConvertible_ToUInt64_mA2ED7907AF20FBFD20F802AE06F18ACB4E23CA9D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_ToObject_m22DBEC2C53D962AC357CC08D6ECEA2DE53867C15_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_ToObject_m4C7675BBEBAD96C9706EAF7529E4113F7381F0C7_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_ToObject_m8F4C7D69296541DF78E40CEB98B59C7CA67633B6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_ToObject_m8F5068C996337F56B4000A4B255126A35951BD05_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_ToObject_mAF017E3EDCF2C7BA8FF7ED0DDCBCD827B51D4971_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_ToObject_mC2D7A39D56EFFFE7D0B61D685C8F285356CC71BF_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_ToObject_mC3CE70A98934303986CC11631FC415BCA9C4000A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_ToObject_mD5E11C53D7BCC62EF4260FA727E14B7B95C2191F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_ToObject_mE84F27DFCF3F22A1053968A9DCE6C0D14D25B7E2_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_ToObject_mED18F2B01F4BA412C1882396CE977411BB54165D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_ToObject_mF17916242A9F9ACD4F79E15749BEE3FBB2D7A57B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_ToString_m6BEF4567C67A1EF85E25BAEBF882C792CDC0808C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_ToString_mFD0D85F8ECEC2AF1E474A44483BE02729CE488CF_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_ToUInt64_mF33D43629B55147D1AF6CC3D813F894435AA50F5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum_TryParseEnum_mABDEE4971D4257A8058A3F1AC12DE081AD694D4E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Enum__cctor_m0D90111BC3889271B4D8E11627D95ABD3F037AB3_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Environment_CreateVersionFromString_mCDE19D44ACAB5C81224AC4F35FDA0F51140A8318_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Environment_ExpandEnvironmentVariables_m4AE2B7DE995C0708225F56B5FF9DB6F95F91D300_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Environment_FailFast_mAAC3E58BB4725CF25EFB13BE6AFB4418AC32C176_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Environment_FailFast_mAEC5FD40A83110B9B342497AE1683229CA4F1607_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Environment_GetEnvironmentVariablesNoCase_m96643C3EE79581997F046EE52069B19E8369D63E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Environment_GetResourceStringEncodingName_mB514D97C814AF47301B938B99C800A2130CB46AA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Environment_GetStackTrace_m12FAD59C12D3ED43C780A01CF9A91072EA1E2D6B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Environment_ReadXdgUserDir_m2BBB7A3FB0BE8C2016FBB553C812913D15D34613_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Environment_UnixGetFolderPath_mD4042C67476F52494B34BEAC11D4F381DABAB59B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Environment_get_NewLine_m5D4F4667FA5D1E2DBDD4DF9696D0CE76C83EF318_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Environment_get_OSVersion_mD6E99E279170E00D17F7D29F242EF65434812233_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Environment_get_StackTrace_m5F9CFF0981E84FE0FE6A7D03522A0DE91376B70D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t EventArgs__cctor_mBF27EE7D8B306AD18122FA05169D94D932D60A0A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t EventData_SetMetadata_m2638D08FE5AD0F8A4B207B83E014385991E7CF88_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t EventSourceCreatedEventArgs__ctor_mF081BD4935B0CF6E11774446ABE33E49043CDA97_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t EventSourceException__ctor_m0F9F45DC1718C6DEEC208258A16B71F140022D8C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t EventSourceException__ctor_m23257A66B05A7D0E3D3D15D4015ECFF5148A2D2D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t EventSourceException__ctor_m78D3B11FA7DD159AA95794E02A5F773920CA1E4B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t EventSourceException__ctor_mC129C6CA6FA04EF61AE7EA8FFAEB31EE2FB22CB4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t EventSourceOptions_set_Level_m340628B5F059DE8CD72F0094BBB29D6EADFD39D4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t EventSourceOptions_set_Opcode_m4763851B2C99E961E725331B973501E21F17B854_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t EventWrittenEventArgs__ctor_m932A7D51A4062CD37694EDF4688EB5F91F8CE635_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Exception_FixRemotingException_m83F1D2256E715EF3075877ECA7B3E4AC44B23BD2_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Exception_GetMessageFromNativeResources_m0C3FB5994F1AC0C76785E05972E3E405E8A0F087_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Exception_GetObjectData_m76F759ED00FA218FFC522C32626B851FDE849AD6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Exception_Init_mB543C81C2EEC2B99274329ACD365429C3AB65B81_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Exception_OnDeserialized_m1A821B40091BF093EA8ECA629CAA0B61C129712E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Exception_RestoreExceptionDispatchInfo_mEECA9E9E3CED8FD5E3C001EA0AEB1C6D50F49C9F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Exception_ToString_m297BCBDFD8F98A7BD69F689436100573B2F71D72_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Exception__cctor_mC462C3B3312D5483281E9BDCFCCAAF79CA944F97_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Exception__ctor_mBFF5996A1B65FCEEE0054A95A652BA3DD6366618_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Exception_get_Message_m4315B19A04019652708F20C1B855805157F23CFD_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Exception_get_Source_mF1C5DE7EDD1567C4ACE302CFD82AC336504070BB_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ExecutionEngineException__ctor_m0F3956D4F5C1C6B86BF8553E5A2609C277A704BF_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t FieldAccessException__ctor_mD94509B3F2F26A43BF0A6FB70F729FEEFBFE767D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t FieldMetadata_Encode_mF59FC93BED0895548D79501F4EE2CF0FEAE1B39A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t FieldMetadata_IncrementStructFieldCount_m874313B0277DFA9F7B0309099139D9347E52F8AF_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t FieldMetadata__ctor_m51883151B3EB815CC989B0B05F401145A0172363_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t FormatException__ctor_m6DAD3E32EE0445420B4893EA683425AC3441609B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t GC_ReRegisterForFinalize_m4978CBD78D693FF77EA40D4000F0EF9F2C2E54C8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t GC_SuppressFinalize_m037319A9B95A5BA437E806DE592802225EE5B425_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t GC__cctor_m090AEF5149E28698EB92F40E5733BDF951BE1584_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t GuidArrayTypeInfo_WriteMetadata_m5730BE8FCDD94266193D0C8D871FB2E75E3158E2_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t GuidArrayTypeInfo__ctor_m60FBBC3A58A030148BD5092494CF7DD8BCDD4584_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t GuidTypeInfo_WriteMetadata_m9635C7C5CDDF712E6ECD663239C0F9C2F91400C5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t GuidTypeInfo__ctor_m16193A1FFDF45604394A54B7D5695069EC1306B6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Impl_AddNonscalar_m75063AAB17BB5BF47DA14FFEB1166095E6EABD63_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Impl_AddScalar_mF4D0F93A5611A1A6C3DD3429D980B80B4470E611_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Impl_Encode_m447740B08170A4E421F5E7143EF3232A77AB36CD_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Impl__ctor_mEC3CC0DB840B066AF1C49C78EEF19669A6DD7CB6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Int16ArrayTypeInfo_WriteMetadata_m3F7C0E3CCDA710AF980E09D08AE290920CFACD14_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Int16ArrayTypeInfo__ctor_mF1C882F2ECD07C3ACE31BF421C84375783557470_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Int16TypeInfo_WriteMetadata_m382478A62487410C10BB77B1EF23129C0B49BE48_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Int16TypeInfo__ctor_m32663BF727B1441F924AF3C2440672AD69A8A0D0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Int32ArrayTypeInfo_WriteMetadata_m0C90F588EBDFC32FBFE0083A2401948BC090CE49_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Int32ArrayTypeInfo__ctor_m9D7274FDA03ACB4C441E103CB50E6BE7DBF548F5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Int32TypeInfo_WriteMetadata_m3E03992BEA715AB29814661E18829AA9856EB8AD_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Int32TypeInfo__ctor_mFB5D5C183B9CEADA879A9B192E5F6E613EF79ACC_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Int64ArrayTypeInfo_WriteMetadata_mEC1F28EE4FD5CF899FA3F50C7A310C552F141867_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Int64ArrayTypeInfo__ctor_m0420AE4B52AE5BD112A2B29B0D12C0A6FB4B931D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Int64TypeInfo_WriteMetadata_m918E8C4BF91CBF06D4AF381BD87716379EAC5AEA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Int64TypeInfo__ctor_m34E0E0F18CF350928B7FFA21BB7FBF14AB2D2783_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IntPtrArrayTypeInfo_WriteMetadata_mA9E5E10CB682BD5CE22DF1A773CD74F8CE80DBF8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IntPtrArrayTypeInfo__ctor_mEAB7419D27051053AAF97425F4CE4283CB6316EF_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IntPtrTypeInfo_WriteMetadata_m79A560E04FE047591C7BADF18CACCDFA96334A96_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IntPtrTypeInfo__ctor_m01105F4A30A454AC162C62C5D3FF447A225DA07B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t MSCompatUnicodeTable_get_IsReady_mFFB82666A060D9A75368AA858810C41008CDD294mscorlib4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ManifestBuilder_AddEventParameter_m53C32DDB5EB3C924364BB80E0E0492E0E06CC46E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ManifestBuilder_AddKeyword_m40B31162FE9759417693A96A346D03759AE5F79A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ManifestBuilder_AddOpcode_m39D46900FA589DD6295EC85E438CD844B1771227_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ManifestBuilder_AddTask_m27FA79B8634C16C8D2EA5068AFB937EC3DEA4282_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ManifestBuilder_CreateManifestString_m345D8445BF70DD3AE849513454D09A710CB99D5F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ManifestBuilder_EndEvent_m95778E3FF0E7DA01DD15D5B3EFBE13A0AB208F6C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ManifestBuilder_GetKeywords_m5EA6BEBFD8B95C29E7079DF929E551442315D3B0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ManifestBuilder_GetLevelName_mDE24AE4C28BD5EF3FE4D29D3731F19B050C6D1E2_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ManifestBuilder_GetLocalizedMessage_mCB29634920B7747BA68803A846811B46A1538C66_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ManifestBuilder_GetOpcodeName_m612EBC12C1DB95126B4335BDE9AB4EF9671CDA59_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ManifestBuilder_GetSupportedCultures_mA8CBFCA3BDA40C88141E2DBC6F44186D0355BDFF_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ManifestBuilder_GetTaskName_mA4295AA0FF9A15046B6C696F6C33265BA44CC104_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ManifestBuilder_GetTypeName_m4148EBA98880502C3C7836AB3A99230DEC3AB71C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ManifestBuilder_ManifestError_mA178FBE087E34A3CC07873D32896191BF7C74A20_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ManifestBuilder_StartEvent_m20757C6BE1E0E1F3B9AB3CB1674567A8B56E183E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ManifestBuilder_TranslateIndexToManifestConvention_m5856C01D23838CEF6101AE630F3010A7D3222049_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ManifestBuilder_TranslateToManifestConvention_m100A461415FF81C8254B2E763B5F45132A49D85C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ManifestBuilder_UpdateStringBuilder_m1FFC9292B0D91B441594C31E4F3373062821782E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ManifestBuilder_WriteMessageAttrib_m41F740A687F6D00B1D52FDA78B5D22052B587027_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ManifestBuilder_WriteNameAndMessageAttribs_m444B282AD88FA3A63618C9E361B3B084642889D8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ManifestBuilder__ctor_mE5FB339ABBF66CDB14F65E053D7D8764D2659C39_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t NameInfo_Compare_m2053E0E1B730AF1E06588A1F974A5F2798381BFE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t NameInfo_Compare_mDB4FA5A8A0E1F394F654232DC46455389AE14866_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t NameInfo_ReserveEventIDsBelow_m4297DAD11F30051AC636093AB42E31178C0A08F8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t NameInfo__cctor_mF76CED99F534FF64631F0C781DCE8EF39C1CB2D9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t NameInfo__ctor_m697D2AEA8E68842A940310E3B874709CAA86F4DE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t OverideEventProvider__ctor_mD477F0BCF1048627D9B27E8D71AD47B2D28C385B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SByteArrayTypeInfo_WriteMetadata_m6237C70B7EACAD7382CD1A48D48423B416B9304E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SByteArrayTypeInfo__ctor_m574A695A8BC3854E038875B5EDA049ADCE1121BA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SByteTypeInfo_WriteMetadata_m24B4DA25B413E4BA4D6FD966ABF071A984598BA1_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SByteTypeInfo__ctor_mE051EE1E75CBE7BF5D6F0DEBCD1B2EC3B55DD89E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Sha1ForNonSecretPurposes_Start_mA97AC00189A011EF6E62617B21C6E2CEEE480941_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17_com_FromNativeMethodDefinition_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17_pinvoke_FromNativeMethodDefinition_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SingleArrayTypeInfo_WriteMetadata_mE32CCB89C827B4652F6841A68F358FE77EAF96B9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SingleArrayTypeInfo__ctor_m9897E1859A9FBE59C35E997146A165465927226F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SingleTypeInfo_WriteMetadata_m79E35F64478C4ADEEAFFDE24311D0D30EFFBF4EF_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SingleTypeInfo__ctor_mA5EBEEF7D8FA70CC36839D33FFEE1E92B36733C4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Statics_CheckName_m001904DCAB16ACBA3DB970F2497D6032BBE26EDE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Statics_FindEnumerableElementType_mE2B9BCD8FECD8262FA51BED1DD0AE91DD8C37180_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Statics_Format16_m307BF384650F500E54F521F17E146DBBB98F4D08_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Statics_Format32_mA958A8DDBBC7C05DD61B456C4835D04C34B508A4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Statics_Format64_m9EA165BBDCDC6E40774219DC6EB0214564FC5184_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Statics_Format8_m1C71026EA0BAB2008E3F0DC1889869CEE6D3822D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Statics_FormatPtr_m00FD8183206A97949E3FD18EF644E9E1F8B1A5D5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Statics_GetTypeInfoInstance_mA015F72885AA57E7724BE14A8BE2AA83D93BC4A6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Statics_IsGenericMatch_mB50849B2448DCAA07CD8C30B0EF05613CA6C4699_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Statics_MetadataForString_m53EAC9E9AD6BA8CB18BB3ABE008C4D5D2725C34D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Statics__cctor_m9E6415F9158F8E880C890D69A7E82A393871A7C5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t StringComparer_get_Ordinal_m1F38FBAB170DF80D33FE2A849D30FF2E314D9FDBmscorlib4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t StringTypeInfo_GetData_mEB4630C27ED935B3728D577140D9902BA050E76B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t StringTypeInfo_WriteMetadata_m7BA77BB436D3ECA5D0CA4E897F498B64B983BF67_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t StringTypeInfo__ctor_mCBEF207AA52314389CDE3589F55D5A3B4CA48ADD_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeSpanTypeInfo_WriteMetadata_m2CE971266F080B99103DD39DEACD4816BAA46941_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeSpanTypeInfo__ctor_m61DE1869347F3CAD1FD95898E7E6BFDBB82EF248_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TplEtwProvider_SetActivityId_m294926056209B6554A8B45C237CE0E63928AF1DB_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TplEtwProvider__cctor_m27EF691E2942DB426459BCED11B64491FB51A46A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TplEtwProvider__ctor_m49B82F71C1ADEDD9119398BF23696EB0B824153B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddArray_m08BD4382BDFEBD4587DB60C10562B8F2E537D989_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddArray_m0AA3C1566B2BCAB6F0306AFFC8ED3E258F55DC98_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddArray_m1440855FB11E1D00775EF965F243085370635048_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddArray_m1AA74DD4E25E34905CD48CFCFBEBF4ABA32274D6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddArray_m1BC48EAF4F2E9DA95AE76D9EA98B44C20E79F01D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddArray_m76E2D1994E47488488F231C51F7133FD0E76C143_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddArray_m7FC7AC33CB29E1631DA57F8A5655C2BCA4B156B8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddArray_m817113A967AFB39C7DA9417AB3B90D48CAF2381A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddArray_m9441D79F32E8FA07EF0814D951CADD8C5530CD82_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddArray_mA0C2DF68F4375AA0226E8E489974B7348EFAA6A1_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddArray_mA5562435B07941B497C390BADA90476D3AEE0545_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddArray_mD60FAB2811AD7D19E8E40FB15D788A3A01F5CA19_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddArray_mD71A1CEEC1FD6E51D5E74065306089DE07418995_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddArray_mF562DD1AE2222F9B6D47DD20DC59F084D5E78452_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddBinary_m64DF06B69258BB59BBAD7C6FF1158EA31BBF93D0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddBinary_m816F3D72D6356A9016DCFC873BB18F31D3D00F08_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddScalar_m030CF1F0AAABF9BA35B0AA6620E0902B72BFBA6F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddScalar_m075915BEBFC9E59FB99C82B93B172439A96494D6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddScalar_m19856EAB8A7B3627A41A2D0BC36E9561E3B8361D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddScalar_m2EE5A680F8697DA177197C284601CF9BF8903222_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddScalar_m3277CF920B647C5CCC7B425A9743D1D9E766FC31_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddScalar_m3A8375255FAD53CE4EF938960ABCD165FC6727FF_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddScalar_m5ED233D2CA9BA4750539B94FBBE49110025A5086_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddScalar_m71E11032CE1F1164095A4E11CDC2660F0457B62B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddScalar_m7CCD2526F15B901CC200BA8767D1293C8A50FF2D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddScalar_mA03D31A793FC01F72566FEB94EEE344ABBA25840_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddScalar_mC374FF8A83BCBF186C122FBF7BE527B31E8519AD_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddScalar_mC4001DABF0B0A58EBB93275501D999A00D7F61C6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddScalar_mDDFC0EB23CCD9845D919E0DF87A3E00963B39FCF_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddScalar_mE84AEED03D7F7EDD965444C4A8A575FF99B78E1A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_AddScalar_mF71D9A7523C70D7771FE22212CB301288C22980A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_BeginBufferedArray_m91FF12562BC919A7C536F6845DE205A13C9D489B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector_EndBufferedArray_m7973ADCE6DA8C4717FACC298D317F417833C10A5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingDataCollector__cctor_mA360AB2B8F61E680D6728A35C0CB957BBF2A55C3_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingEventTypes_GetNameInfo_m68D000807BAE5F6EC2C49E65F1C4C3671891F756_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingEventTypes_MakeArray_mFEB619E641B7C378811F11F7AEAC6B780B7FD27D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingEventTypes_MakeArray_mFED40E1D79EAF166AC6ED6E0E83312D6791A7AF9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingEventTypes__ctor_m01AA9D32D50DA43E399D2E4F6C6CE2686C860F0F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingEventTypes__ctor_m08243D6F1D5DD75F9E2ED6C5C09CF1F25E506A4B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingMetadataCollector_AddArray_m9074593EAE95D13523B4F7CF7FB94019CF49F406_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingMetadataCollector_AddBinary_mA1EC53EFE1C72570ABAF8FB53F773D52033FD257_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingMetadataCollector_AddField_m9B34D7AB37CD85825092EC20DF72AC7254DA282F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingMetadataCollector_AddGroup_m938D13CD9816CA7D62161EF0700AAAEB45884160_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingMetadataCollector_AddScalar_m136E01C1CEEFA221D5F78507069DFE8590CC15FB_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingMetadataCollector_BeginBufferedArray_m10A9D19539D483BDE22950EB3B6D0C6BBBD1B461_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingMetadataCollector_EndBufferedArray_mD649372F4F19057DEA54C9D6442035161C38BA8E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingMetadataCollector_GetMetadata_mE576A1EF4772025B805D74483A1E1EB4763DA25D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingMetadataCollector__ctor_mDD4E4C38DCE260B896FC5E8CFAF2699EFC4F98DC_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingTypeInfo__ctor_m057EE183448805D4BFBCA54029DBE7968712A270_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TraceLoggingTypeInfo__ctor_m6122E84F15E9A052737518F60B4CA6F7C1D5CE74_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TypeAnalysis__ctor_m7FE311A013186B7421FCA3574941907DB1FA4632_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UInt16ArrayTypeInfo_WriteMetadata_m596A9EE05ECA727F33C41036ADB98A256E2FB4DE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UInt16ArrayTypeInfo__ctor_m47BF92C31CA6C00BF2934AE7D7B30BBE7340C2FE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UInt16TypeInfo_WriteMetadata_m726F89A1754BBA837166A1B12473BD97B598832F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UInt16TypeInfo__ctor_mCC09171DCA51C7C406B0A16C46D5EF4D07D089CD_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UInt32ArrayTypeInfo_WriteMetadata_m4D3D827654E56768B873B6E1660C4200E9605BDC_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UInt32ArrayTypeInfo__ctor_m6E6B67C602B24ECD669EF5C8A05DE8994F4B2030_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UInt32TypeInfo_WriteMetadata_mDE1B62DD209465812263064E836CC068E2F9A975_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UInt32TypeInfo__ctor_m5492D535F1F613D8B2160CCB6782ECA813E89181_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UInt64ArrayTypeInfo_WriteMetadata_m6A04F2B67A8D2A5A59668E49D5D5794645CEC205_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UInt64ArrayTypeInfo__ctor_m7FD48AB4A63443625F680B68E2B80C17B694F26F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UInt64TypeInfo_WriteMetadata_mA2B28959D1A7F80936B5F91ACB974C3F74841F47_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UInt64TypeInfo__ctor_m237E06B639D1A9D0DFFDD3795FEABE0B50F245AE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UIntPtrArrayTypeInfo_WriteMetadata_m8551A2F963F22F3DE6C9B67DA8262FFE33668559_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UIntPtrArrayTypeInfo__ctor_m2ED85F03228949555DADD7E37416A143A58E3601_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UIntPtrTypeInfo_WriteMetadata_mFFDF55AFC3C3F64744FBF72B9E329F37644FB792_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UIntPtrTypeInfo__ctor_m10665E5B71030580321F853F0AA64AA6450867BE_MetadataUsageId; struct CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_marshaled_com; struct CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_marshaled_pinvoke; struct CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_com; struct CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_pinvoke; struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_com; struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_pinvoke; struct Delegate_t_marshaled_com; struct Delegate_t_marshaled_pinvoke; struct EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 ; struct Exception_t;; struct Exception_t_marshaled_com; struct Exception_t_marshaled_com;; struct Exception_t_marshaled_pinvoke; struct Exception_t_marshaled_pinvoke;; struct GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 ; struct ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB;; struct ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_com; struct ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_com;; struct ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_pinvoke; struct ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_pinvoke;; struct BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040; struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821; struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2; struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86; struct StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196; struct PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB; struct TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC; struct DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D; struct CultureInfoU5BU5D_t5ABD12F26C65E5F6F3E7916401EAA322BA2BDF31; struct InternalCodePageDataItemU5BU5D_t94CE8C20C6D99D9F2F13E2E7FA2C44007AE27834; struct GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF; struct Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28; struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83; struct Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F; struct IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD; struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A; struct FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE; struct ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694; struct PropertyInfoU5BU5D_tAD8E99B12FF99CA4F2EA37B612DE68E112B4CF7E; struct EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10; struct SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889; struct SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5; struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E; struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F; struct UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E; struct UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB; struct UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4; struct UIntPtrU5BU5D_tD5404ABA0AA72923421D3F931F031EEEC654429E; 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 // Mono.Globalization.Unicode.MSCompatUnicodeTable struct MSCompatUnicodeTable_tF7317B16A2F3BD7B319A929F839E7E23ECCE860B : public RuntimeObject { public: public: }; struct MSCompatUnicodeTable_tF7317B16A2F3BD7B319A929F839E7E23ECCE860B_StaticFields { public: // System.Int32 Mono.Globalization.Unicode.MSCompatUnicodeTable::MaxExpansionLength int32_t ___MaxExpansionLength_0; // System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::ignorableFlags uint8_t* ___ignorableFlags_1; // System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::categories uint8_t* ___categories_2; // System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::level1 uint8_t* ___level1_3; // System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::level2 uint8_t* ___level2_4; // System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::level3 uint8_t* ___level3_5; // System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::cjkCHScategory uint8_t* ___cjkCHScategory_6; // System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::cjkCHTcategory uint8_t* ___cjkCHTcategory_7; // System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::cjkJAcategory uint8_t* ___cjkJAcategory_8; // System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::cjkKOcategory uint8_t* ___cjkKOcategory_9; // System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::cjkCHSlv1 uint8_t* ___cjkCHSlv1_10; // System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::cjkCHTlv1 uint8_t* ___cjkCHTlv1_11; // System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::cjkJAlv1 uint8_t* ___cjkJAlv1_12; // System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::cjkKOlv1 uint8_t* ___cjkKOlv1_13; // System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::cjkKOlv2 uint8_t* ___cjkKOlv2_14; // System.Char[] Mono.Globalization.Unicode.MSCompatUnicodeTable::tailoringArr CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___tailoringArr_15; // Mono.Globalization.Unicode.TailoringInfo[] Mono.Globalization.Unicode.MSCompatUnicodeTable::tailoringInfos TailoringInfoU5BU5D_t342FFD04F3AB46BD8E89E5B9DDDAEE8365039573* ___tailoringInfos_16; // System.Object Mono.Globalization.Unicode.MSCompatUnicodeTable::forLock RuntimeObject * ___forLock_17; // System.Boolean Mono.Globalization.Unicode.MSCompatUnicodeTable::isReady bool ___isReady_18; public: inline static int32_t get_offset_of_MaxExpansionLength_0() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_tF7317B16A2F3BD7B319A929F839E7E23ECCE860B_StaticFields, ___MaxExpansionLength_0)); } inline int32_t get_MaxExpansionLength_0() const { return ___MaxExpansionLength_0; } inline int32_t* get_address_of_MaxExpansionLength_0() { return &___MaxExpansionLength_0; } inline void set_MaxExpansionLength_0(int32_t value) { ___MaxExpansionLength_0 = value; } inline static int32_t get_offset_of_ignorableFlags_1() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_tF7317B16A2F3BD7B319A929F839E7E23ECCE860B_StaticFields, ___ignorableFlags_1)); } inline uint8_t* get_ignorableFlags_1() const { return ___ignorableFlags_1; } inline uint8_t** get_address_of_ignorableFlags_1() { return &___ignorableFlags_1; } inline void set_ignorableFlags_1(uint8_t* value) { ___ignorableFlags_1 = value; } inline static int32_t get_offset_of_categories_2() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_tF7317B16A2F3BD7B319A929F839E7E23ECCE860B_StaticFields, ___categories_2)); } inline uint8_t* get_categories_2() const { return ___categories_2; } inline uint8_t** get_address_of_categories_2() { return &___categories_2; } inline void set_categories_2(uint8_t* value) { ___categories_2 = value; } inline static int32_t get_offset_of_level1_3() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_tF7317B16A2F3BD7B319A929F839E7E23ECCE860B_StaticFields, ___level1_3)); } inline uint8_t* get_level1_3() const { return ___level1_3; } inline uint8_t** get_address_of_level1_3() { return &___level1_3; } inline void set_level1_3(uint8_t* value) { ___level1_3 = value; } inline static int32_t get_offset_of_level2_4() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_tF7317B16A2F3BD7B319A929F839E7E23ECCE860B_StaticFields, ___level2_4)); } inline uint8_t* get_level2_4() const { return ___level2_4; } inline uint8_t** get_address_of_level2_4() { return &___level2_4; } inline void set_level2_4(uint8_t* value) { ___level2_4 = value; } inline static int32_t get_offset_of_level3_5() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_tF7317B16A2F3BD7B319A929F839E7E23ECCE860B_StaticFields, ___level3_5)); } inline uint8_t* get_level3_5() const { return ___level3_5; } inline uint8_t** get_address_of_level3_5() { return &___level3_5; } inline void set_level3_5(uint8_t* value) { ___level3_5 = value; } inline static int32_t get_offset_of_cjkCHScategory_6() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_tF7317B16A2F3BD7B319A929F839E7E23ECCE860B_StaticFields, ___cjkCHScategory_6)); } inline uint8_t* get_cjkCHScategory_6() const { return ___cjkCHScategory_6; } inline uint8_t** get_address_of_cjkCHScategory_6() { return &___cjkCHScategory_6; } inline void set_cjkCHScategory_6(uint8_t* value) { ___cjkCHScategory_6 = value; } inline static int32_t get_offset_of_cjkCHTcategory_7() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_tF7317B16A2F3BD7B319A929F839E7E23ECCE860B_StaticFields, ___cjkCHTcategory_7)); } inline uint8_t* get_cjkCHTcategory_7() const { return ___cjkCHTcategory_7; } inline uint8_t** get_address_of_cjkCHTcategory_7() { return &___cjkCHTcategory_7; } inline void set_cjkCHTcategory_7(uint8_t* value) { ___cjkCHTcategory_7 = value; } inline static int32_t get_offset_of_cjkJAcategory_8() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_tF7317B16A2F3BD7B319A929F839E7E23ECCE860B_StaticFields, ___cjkJAcategory_8)); } inline uint8_t* get_cjkJAcategory_8() const { return ___cjkJAcategory_8; } inline uint8_t** get_address_of_cjkJAcategory_8() { return &___cjkJAcategory_8; } inline void set_cjkJAcategory_8(uint8_t* value) { ___cjkJAcategory_8 = value; } inline static int32_t get_offset_of_cjkKOcategory_9() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_tF7317B16A2F3BD7B319A929F839E7E23ECCE860B_StaticFields, ___cjkKOcategory_9)); } inline uint8_t* get_cjkKOcategory_9() const { return ___cjkKOcategory_9; } inline uint8_t** get_address_of_cjkKOcategory_9() { return &___cjkKOcategory_9; } inline void set_cjkKOcategory_9(uint8_t* value) { ___cjkKOcategory_9 = value; } inline static int32_t get_offset_of_cjkCHSlv1_10() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_tF7317B16A2F3BD7B319A929F839E7E23ECCE860B_StaticFields, ___cjkCHSlv1_10)); } inline uint8_t* get_cjkCHSlv1_10() const { return ___cjkCHSlv1_10; } inline uint8_t** get_address_of_cjkCHSlv1_10() { return &___cjkCHSlv1_10; } inline void set_cjkCHSlv1_10(uint8_t* value) { ___cjkCHSlv1_10 = value; } inline static int32_t get_offset_of_cjkCHTlv1_11() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_tF7317B16A2F3BD7B319A929F839E7E23ECCE860B_StaticFields, ___cjkCHTlv1_11)); } inline uint8_t* get_cjkCHTlv1_11() const { return ___cjkCHTlv1_11; } inline uint8_t** get_address_of_cjkCHTlv1_11() { return &___cjkCHTlv1_11; } inline void set_cjkCHTlv1_11(uint8_t* value) { ___cjkCHTlv1_11 = value; } inline static int32_t get_offset_of_cjkJAlv1_12() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_tF7317B16A2F3BD7B319A929F839E7E23ECCE860B_StaticFields, ___cjkJAlv1_12)); } inline uint8_t* get_cjkJAlv1_12() const { return ___cjkJAlv1_12; } inline uint8_t** get_address_of_cjkJAlv1_12() { return &___cjkJAlv1_12; } inline void set_cjkJAlv1_12(uint8_t* value) { ___cjkJAlv1_12 = value; } inline static int32_t get_offset_of_cjkKOlv1_13() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_tF7317B16A2F3BD7B319A929F839E7E23ECCE860B_StaticFields, ___cjkKOlv1_13)); } inline uint8_t* get_cjkKOlv1_13() const { return ___cjkKOlv1_13; } inline uint8_t** get_address_of_cjkKOlv1_13() { return &___cjkKOlv1_13; } inline void set_cjkKOlv1_13(uint8_t* value) { ___cjkKOlv1_13 = value; } inline static int32_t get_offset_of_cjkKOlv2_14() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_tF7317B16A2F3BD7B319A929F839E7E23ECCE860B_StaticFields, ___cjkKOlv2_14)); } inline uint8_t* get_cjkKOlv2_14() const { return ___cjkKOlv2_14; } inline uint8_t** get_address_of_cjkKOlv2_14() { return &___cjkKOlv2_14; } inline void set_cjkKOlv2_14(uint8_t* value) { ___cjkKOlv2_14 = value; } inline static int32_t get_offset_of_tailoringArr_15() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_tF7317B16A2F3BD7B319A929F839E7E23ECCE860B_StaticFields, ___tailoringArr_15)); } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_tailoringArr_15() const { return ___tailoringArr_15; } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_tailoringArr_15() { return &___tailoringArr_15; } inline void set_tailoringArr_15(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value) { ___tailoringArr_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___tailoringArr_15), (void*)value); } inline static int32_t get_offset_of_tailoringInfos_16() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_tF7317B16A2F3BD7B319A929F839E7E23ECCE860B_StaticFields, ___tailoringInfos_16)); } inline TailoringInfoU5BU5D_t342FFD04F3AB46BD8E89E5B9DDDAEE8365039573* get_tailoringInfos_16() const { return ___tailoringInfos_16; } inline TailoringInfoU5BU5D_t342FFD04F3AB46BD8E89E5B9DDDAEE8365039573** get_address_of_tailoringInfos_16() { return &___tailoringInfos_16; } inline void set_tailoringInfos_16(TailoringInfoU5BU5D_t342FFD04F3AB46BD8E89E5B9DDDAEE8365039573* value) { ___tailoringInfos_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___tailoringInfos_16), (void*)value); } inline static int32_t get_offset_of_forLock_17() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_tF7317B16A2F3BD7B319A929F839E7E23ECCE860B_StaticFields, ___forLock_17)); } inline RuntimeObject * get_forLock_17() const { return ___forLock_17; } inline RuntimeObject ** get_address_of_forLock_17() { return &___forLock_17; } inline void set_forLock_17(RuntimeObject * value) { ___forLock_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___forLock_17), (void*)value); } inline static int32_t get_offset_of_isReady_18() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_tF7317B16A2F3BD7B319A929F839E7E23ECCE860B_StaticFields, ___isReady_18)); } inline bool get_isReady_18() const { return ___isReady_18; } inline bool* get_address_of_isReady_18() { return &___isReady_18; } inline void set_isReady_18(bool value) { ___isReady_18 = value; } }; // Mono.Globalization.Unicode.SimpleCollator struct SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 : public RuntimeObject { public: // System.Globalization.TextInfo Mono.Globalization.Unicode.SimpleCollator::textInfo TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * ___textInfo_2; // Mono.Globalization.Unicode.CodePointIndexer Mono.Globalization.Unicode.SimpleCollator::cjkIndexer CodePointIndexer_tA70DBD5101E826E30EEF124C2EEE1019B539DB4A * ___cjkIndexer_3; // Mono.Globalization.Unicode.Contraction[] Mono.Globalization.Unicode.SimpleCollator::contractions ContractionU5BU5D_tD86BF5BFF6277D981053A21EFFD3D0EEB376953B* ___contractions_4; // Mono.Globalization.Unicode.Level2Map[] Mono.Globalization.Unicode.SimpleCollator::level2Maps Level2MapU5BU5D_tA4F3B2721A6C88295DBF9DA650C96D1717842E28* ___level2Maps_5; // System.Byte[] Mono.Globalization.Unicode.SimpleCollator::unsafeFlags ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___unsafeFlags_6; // System.Byte* Mono.Globalization.Unicode.SimpleCollator::cjkCatTable uint8_t* ___cjkCatTable_7; // System.Byte* Mono.Globalization.Unicode.SimpleCollator::cjkLv1Table uint8_t* ___cjkLv1Table_8; // System.Byte* Mono.Globalization.Unicode.SimpleCollator::cjkLv2Table uint8_t* ___cjkLv2Table_9; // Mono.Globalization.Unicode.CodePointIndexer Mono.Globalization.Unicode.SimpleCollator::cjkLv2Indexer CodePointIndexer_tA70DBD5101E826E30EEF124C2EEE1019B539DB4A * ___cjkLv2Indexer_10; // System.Int32 Mono.Globalization.Unicode.SimpleCollator::lcid int32_t ___lcid_11; // System.Boolean Mono.Globalization.Unicode.SimpleCollator::frenchSort bool ___frenchSort_12; public: inline static int32_t get_offset_of_textInfo_2() { return static_cast<int32_t>(offsetof(SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89, ___textInfo_2)); } inline TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * get_textInfo_2() const { return ___textInfo_2; } inline TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 ** get_address_of_textInfo_2() { return &___textInfo_2; } inline void set_textInfo_2(TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * value) { ___textInfo_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___textInfo_2), (void*)value); } inline static int32_t get_offset_of_cjkIndexer_3() { return static_cast<int32_t>(offsetof(SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89, ___cjkIndexer_3)); } inline CodePointIndexer_tA70DBD5101E826E30EEF124C2EEE1019B539DB4A * get_cjkIndexer_3() const { return ___cjkIndexer_3; } inline CodePointIndexer_tA70DBD5101E826E30EEF124C2EEE1019B539DB4A ** get_address_of_cjkIndexer_3() { return &___cjkIndexer_3; } inline void set_cjkIndexer_3(CodePointIndexer_tA70DBD5101E826E30EEF124C2EEE1019B539DB4A * value) { ___cjkIndexer_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___cjkIndexer_3), (void*)value); } inline static int32_t get_offset_of_contractions_4() { return static_cast<int32_t>(offsetof(SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89, ___contractions_4)); } inline ContractionU5BU5D_tD86BF5BFF6277D981053A21EFFD3D0EEB376953B* get_contractions_4() const { return ___contractions_4; } inline ContractionU5BU5D_tD86BF5BFF6277D981053A21EFFD3D0EEB376953B** get_address_of_contractions_4() { return &___contractions_4; } inline void set_contractions_4(ContractionU5BU5D_tD86BF5BFF6277D981053A21EFFD3D0EEB376953B* value) { ___contractions_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___contractions_4), (void*)value); } inline static int32_t get_offset_of_level2Maps_5() { return static_cast<int32_t>(offsetof(SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89, ___level2Maps_5)); } inline Level2MapU5BU5D_tA4F3B2721A6C88295DBF9DA650C96D1717842E28* get_level2Maps_5() const { return ___level2Maps_5; } inline Level2MapU5BU5D_tA4F3B2721A6C88295DBF9DA650C96D1717842E28** get_address_of_level2Maps_5() { return &___level2Maps_5; } inline void set_level2Maps_5(Level2MapU5BU5D_tA4F3B2721A6C88295DBF9DA650C96D1717842E28* value) { ___level2Maps_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___level2Maps_5), (void*)value); } inline static int32_t get_offset_of_unsafeFlags_6() { return static_cast<int32_t>(offsetof(SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89, ___unsafeFlags_6)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_unsafeFlags_6() const { return ___unsafeFlags_6; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_unsafeFlags_6() { return &___unsafeFlags_6; } inline void set_unsafeFlags_6(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___unsafeFlags_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___unsafeFlags_6), (void*)value); } inline static int32_t get_offset_of_cjkCatTable_7() { return static_cast<int32_t>(offsetof(SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89, ___cjkCatTable_7)); } inline uint8_t* get_cjkCatTable_7() const { return ___cjkCatTable_7; } inline uint8_t** get_address_of_cjkCatTable_7() { return &___cjkCatTable_7; } inline void set_cjkCatTable_7(uint8_t* value) { ___cjkCatTable_7 = value; } inline static int32_t get_offset_of_cjkLv1Table_8() { return static_cast<int32_t>(offsetof(SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89, ___cjkLv1Table_8)); } inline uint8_t* get_cjkLv1Table_8() const { return ___cjkLv1Table_8; } inline uint8_t** get_address_of_cjkLv1Table_8() { return &___cjkLv1Table_8; } inline void set_cjkLv1Table_8(uint8_t* value) { ___cjkLv1Table_8 = value; } inline static int32_t get_offset_of_cjkLv2Table_9() { return static_cast<int32_t>(offsetof(SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89, ___cjkLv2Table_9)); } inline uint8_t* get_cjkLv2Table_9() const { return ___cjkLv2Table_9; } inline uint8_t** get_address_of_cjkLv2Table_9() { return &___cjkLv2Table_9; } inline void set_cjkLv2Table_9(uint8_t* value) { ___cjkLv2Table_9 = value; } inline static int32_t get_offset_of_cjkLv2Indexer_10() { return static_cast<int32_t>(offsetof(SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89, ___cjkLv2Indexer_10)); } inline CodePointIndexer_tA70DBD5101E826E30EEF124C2EEE1019B539DB4A * get_cjkLv2Indexer_10() const { return ___cjkLv2Indexer_10; } inline CodePointIndexer_tA70DBD5101E826E30EEF124C2EEE1019B539DB4A ** get_address_of_cjkLv2Indexer_10() { return &___cjkLv2Indexer_10; } inline void set_cjkLv2Indexer_10(CodePointIndexer_tA70DBD5101E826E30EEF124C2EEE1019B539DB4A * value) { ___cjkLv2Indexer_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___cjkLv2Indexer_10), (void*)value); } inline static int32_t get_offset_of_lcid_11() { return static_cast<int32_t>(offsetof(SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89, ___lcid_11)); } inline int32_t get_lcid_11() const { return ___lcid_11; } inline int32_t* get_address_of_lcid_11() { return &___lcid_11; } inline void set_lcid_11(int32_t value) { ___lcid_11 = value; } inline static int32_t get_offset_of_frenchSort_12() { return static_cast<int32_t>(offsetof(SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89, ___frenchSort_12)); } inline bool get_frenchSort_12() const { return ___frenchSort_12; } inline bool* get_address_of_frenchSort_12() { return &___frenchSort_12; } inline void set_frenchSort_12(bool value) { ___frenchSort_12 = value; } }; struct SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89_StaticFields { public: // System.Boolean Mono.Globalization.Unicode.SimpleCollator::QuickCheckDisabled bool ___QuickCheckDisabled_0; // Mono.Globalization.Unicode.SimpleCollator Mono.Globalization.Unicode.SimpleCollator::invariant SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * ___invariant_1; public: inline static int32_t get_offset_of_QuickCheckDisabled_0() { return static_cast<int32_t>(offsetof(SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89_StaticFields, ___QuickCheckDisabled_0)); } inline bool get_QuickCheckDisabled_0() const { return ___QuickCheckDisabled_0; } inline bool* get_address_of_QuickCheckDisabled_0() { return &___QuickCheckDisabled_0; } inline void set_QuickCheckDisabled_0(bool value) { ___QuickCheckDisabled_0 = value; } inline static int32_t get_offset_of_invariant_1() { return static_cast<int32_t>(offsetof(SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89_StaticFields, ___invariant_1)); } inline SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * get_invariant_1() const { return ___invariant_1; } inline SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 ** get_address_of_invariant_1() { return &___invariant_1; } inline void set_invariant_1(SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * value) { ___invariant_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___invariant_1), (void*)value); } }; struct Il2CppArrayBounds; // System.Array // System.Attribute struct Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 : public RuntimeObject { public: public: }; // System.Collections.CaseInsensitiveComparer struct CaseInsensitiveComparer_tF9935EB25E69CEF5A3B17CE8D22E2797F23B17BE : public RuntimeObject { public: // System.Globalization.CompareInfo System.Collections.CaseInsensitiveComparer::m_compareInfo CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ___m_compareInfo_0; public: inline static int32_t get_offset_of_m_compareInfo_0() { return static_cast<int32_t>(offsetof(CaseInsensitiveComparer_tF9935EB25E69CEF5A3B17CE8D22E2797F23B17BE, ___m_compareInfo_0)); } inline CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * get_m_compareInfo_0() const { return ___m_compareInfo_0; } inline CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 ** get_address_of_m_compareInfo_0() { return &___m_compareInfo_0; } inline void set_m_compareInfo_0(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * value) { ___m_compareInfo_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_compareInfo_0), (void*)value); } }; // System.Collections.CaseInsensitiveHashCodeProvider struct CaseInsensitiveHashCodeProvider_tC6D5564219051252BBC7B49F78CC8173105F0C34 : public RuntimeObject { public: // System.Globalization.TextInfo System.Collections.CaseInsensitiveHashCodeProvider::m_text TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * ___m_text_0; public: inline static int32_t get_offset_of_m_text_0() { return static_cast<int32_t>(offsetof(CaseInsensitiveHashCodeProvider_tC6D5564219051252BBC7B49F78CC8173105F0C34, ___m_text_0)); } inline TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * get_m_text_0() const { return ___m_text_0; } inline TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 ** get_address_of_m_text_0() { return &___m_text_0; } inline void set_m_text_0(TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * value) { ___m_text_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_text_0), (void*)value); } }; // System.Collections.Generic.Comparer`1<System.String> struct Comparer_1_tC8913CC0230510AB5B82485EAEF003DA0F4B9903 : public RuntimeObject { public: public: }; struct Comparer_1_tC8913CC0230510AB5B82485EAEF003DA0F4B9903_StaticFields { public: // System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer Comparer_1_tC8913CC0230510AB5B82485EAEF003DA0F4B9903 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_tC8913CC0230510AB5B82485EAEF003DA0F4B9903_StaticFields, ___defaultComparer_0)); } inline Comparer_1_tC8913CC0230510AB5B82485EAEF003DA0F4B9903 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline Comparer_1_tC8913CC0230510AB5B82485EAEF003DA0F4B9903 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(Comparer_1_tC8913CC0230510AB5B82485EAEF003DA0F4B9903 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value); } }; // System.Collections.Generic.Comparer`1<System.UInt64> struct Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC : public RuntimeObject { public: public: }; struct Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC_StaticFields { public: // System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC_StaticFields, ___defaultComparer_0)); } inline Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC * get_defaultComparer_0() const { return ___defaultComparer_0; } inline Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2_KeyCollection<System.Int32,System.String> struct KeyCollection_t2F25BAF319A40DA5241F076B74BB90B72F16822F : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_KeyCollection::dictionary Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(KeyCollection_t2F25BAF319A40DA5241F076B74BB90B72F16822F, ___dictionary_0)); } inline Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2_KeyCollection<System.String,System.String> struct KeyCollection_tC73654392B284B89334464107B696C9BD89776D9 : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_KeyCollection::dictionary Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(KeyCollection_tC73654392B284B89334464107B696C9BD89776D9, ___dictionary_0)); } inline Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2_KeyCollection<System.UInt64,System.String> struct KeyCollection_t03F00DD1AC4F92F5138CAB2CC1235582FD0B8B1D : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_KeyCollection::dictionary Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(KeyCollection_t03F00DD1AC4F92F5138CAB2CC1235582FD0B8B1D, ___dictionary_0)); } inline Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2_ValueCollection<System.String,System.Type> struct ValueCollection_t7916CDE541FFBF8945E39B059894001AE50AD9CC : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection::dictionary Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A * ___dictionary_0; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(ValueCollection_t7916CDE541FFBF8945E39B059894001AE50AD9CC, ___dictionary_0)); } inline Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Int32,System.String> struct Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C : 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_t69CCD9E4E7050700879917C9CB7E5E88F89235B1* ___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_t2F25BAF319A40DA5241F076B74BB90B72F16822F * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_tEDEE983AB5C1AD1832785DBAED94462C85312A6F * ___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_t4EFE6A1D6502662B911688316C6920444A18CF0C, ___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_t4EFE6A1D6502662B911688316C6920444A18CF0C, ___entries_1)); } inline EntryU5BU5D_t69CCD9E4E7050700879917C9CB7E5E88F89235B1* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t69CCD9E4E7050700879917C9CB7E5E88F89235B1** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t69CCD9E4E7050700879917C9CB7E5E88F89235B1* 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_t4EFE6A1D6502662B911688316C6920444A18CF0C, ___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_t4EFE6A1D6502662B911688316C6920444A18CF0C, ___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_t4EFE6A1D6502662B911688316C6920444A18CF0C, ___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_t4EFE6A1D6502662B911688316C6920444A18CF0C, ___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_t4EFE6A1D6502662B911688316C6920444A18CF0C, ___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_t4EFE6A1D6502662B911688316C6920444A18CF0C, ___keys_7)); } inline KeyCollection_t2F25BAF319A40DA5241F076B74BB90B72F16822F * get_keys_7() const { return ___keys_7; } inline KeyCollection_t2F25BAF319A40DA5241F076B74BB90B72F16822F ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t2F25BAF319A40DA5241F076B74BB90B72F16822F * 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_t4EFE6A1D6502662B911688316C6920444A18CF0C, ___values_8)); } inline ValueCollection_tEDEE983AB5C1AD1832785DBAED94462C85312A6F * get_values_8() const { return ___values_8; } inline ValueCollection_tEDEE983AB5C1AD1832785DBAED94462C85312A6F ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tEDEE983AB5C1AD1832785DBAED94462C85312A6F * 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_t4EFE6A1D6502662B911688316C6920444A18CF0C, ____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.String,Mono.Globalization.Unicode.SimpleCollator> struct Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 : 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_tC1DD130BD4A49A65C91E4A8211C674A3C5B3A09E* ___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_t80C19162A3C18EDC90209882B2FBC96555382FD6 * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t5F6247B1A36BB27A8A498A6E5B1E017A5D8B3AD1 * ___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_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3, ___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_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3, ___entries_1)); } inline EntryU5BU5D_tC1DD130BD4A49A65C91E4A8211C674A3C5B3A09E* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tC1DD130BD4A49A65C91E4A8211C674A3C5B3A09E** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tC1DD130BD4A49A65C91E4A8211C674A3C5B3A09E* 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_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3, ___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_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3, ___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_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3, ___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_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3, ___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_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3, ___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_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3, ___keys_7)); } inline KeyCollection_t80C19162A3C18EDC90209882B2FBC96555382FD6 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t80C19162A3C18EDC90209882B2FBC96555382FD6 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t80C19162A3C18EDC90209882B2FBC96555382FD6 * 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_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3, ___values_8)); } inline ValueCollection_t5F6247B1A36BB27A8A498A6E5B1E017A5D8B3AD1 * get_values_8() const { return ___values_8; } inline ValueCollection_t5F6247B1A36BB27A8A498A6E5B1E017A5D8B3AD1 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t5F6247B1A36BB27A8A498A6E5B1E017A5D8B3AD1 * 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_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3, ____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.String,System.Collections.Generic.List`1<System.Int32>> struct Dictionary_2_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28 : 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_t60C6F39C129F0ED5FC3442C36FBFFB0170A77B12* ___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_tF46D9B339F84866040D5D2B543BD9B30BA50CD76 * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_tD67DD0079B75647C364C199FF479C7B83AE29B48 * ___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_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28, ___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_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28, ___entries_1)); } inline EntryU5BU5D_t60C6F39C129F0ED5FC3442C36FBFFB0170A77B12* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t60C6F39C129F0ED5FC3442C36FBFFB0170A77B12** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t60C6F39C129F0ED5FC3442C36FBFFB0170A77B12* 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_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28, ___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_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28, ___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_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28, ___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_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28, ___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_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28, ___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_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28, ___keys_7)); } inline KeyCollection_tF46D9B339F84866040D5D2B543BD9B30BA50CD76 * get_keys_7() const { return ___keys_7; } inline KeyCollection_tF46D9B339F84866040D5D2B543BD9B30BA50CD76 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tF46D9B339F84866040D5D2B543BD9B30BA50CD76 * 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_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28, ___values_8)); } inline ValueCollection_tD67DD0079B75647C364C199FF479C7B83AE29B48 * get_values_8() const { return ___values_8; } inline ValueCollection_tD67DD0079B75647C364C199FF479C7B83AE29B48 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tD67DD0079B75647C364C199FF479C7B83AE29B48 * 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_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28, ____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.String,System.String> struct Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC : 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_t034347107F1D23C91DE1D712EA637D904789415C* ___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_tC73654392B284B89334464107B696C9BD89776D9 * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_tA3B972EF56F7C97E35054155C33556C55FAAFD43 * ___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_t931BF283048C4E74FC063C3036E5F3FE328861FC, ___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_t931BF283048C4E74FC063C3036E5F3FE328861FC, ___entries_1)); } inline EntryU5BU5D_t034347107F1D23C91DE1D712EA637D904789415C* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t034347107F1D23C91DE1D712EA637D904789415C** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t034347107F1D23C91DE1D712EA637D904789415C* 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_t931BF283048C4E74FC063C3036E5F3FE328861FC, ___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_t931BF283048C4E74FC063C3036E5F3FE328861FC, ___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_t931BF283048C4E74FC063C3036E5F3FE328861FC, ___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_t931BF283048C4E74FC063C3036E5F3FE328861FC, ___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_t931BF283048C4E74FC063C3036E5F3FE328861FC, ___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_t931BF283048C4E74FC063C3036E5F3FE328861FC, ___keys_7)); } inline KeyCollection_tC73654392B284B89334464107B696C9BD89776D9 * get_keys_7() const { return ___keys_7; } inline KeyCollection_tC73654392B284B89334464107B696C9BD89776D9 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tC73654392B284B89334464107B696C9BD89776D9 * 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_t931BF283048C4E74FC063C3036E5F3FE328861FC, ___values_8)); } inline ValueCollection_tA3B972EF56F7C97E35054155C33556C55FAAFD43 * get_values_8() const { return ___values_8; } inline ValueCollection_tA3B972EF56F7C97E35054155C33556C55FAAFD43 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tA3B972EF56F7C97E35054155C33556C55FAAFD43 * 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_t931BF283048C4E74FC063C3036E5F3FE328861FC, ____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.String,System.Type> struct Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A : 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_t40A3139ED5D085E35C0FFBF75DD94D0BCDDBFA18* ___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_tC6A23F2E0D8E3FAF9FA1D73F0833F395051C828A * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t7916CDE541FFBF8945E39B059894001AE50AD9CC * ___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_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A, ___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_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A, ___entries_1)); } inline EntryU5BU5D_t40A3139ED5D085E35C0FFBF75DD94D0BCDDBFA18* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t40A3139ED5D085E35C0FFBF75DD94D0BCDDBFA18** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t40A3139ED5D085E35C0FFBF75DD94D0BCDDBFA18* 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_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A, ___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_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A, ___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_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A, ___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_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A, ___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_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A, ___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_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A, ___keys_7)); } inline KeyCollection_tC6A23F2E0D8E3FAF9FA1D73F0833F395051C828A * get_keys_7() const { return ___keys_7; } inline KeyCollection_tC6A23F2E0D8E3FAF9FA1D73F0833F395051C828A ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tC6A23F2E0D8E3FAF9FA1D73F0833F395051C828A * 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_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A, ___values_8)); } inline ValueCollection_t7916CDE541FFBF8945E39B059894001AE50AD9CC * get_values_8() const { return ___values_8; } inline ValueCollection_t7916CDE541FFBF8945E39B059894001AE50AD9CC ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t7916CDE541FFBF8945E39B059894001AE50AD9CC * 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_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A, ____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.UInt64,System.String> struct Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 : 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_t3E794099C0DF651976750CB2F90140C061415231* ___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_t03F00DD1AC4F92F5138CAB2CC1235582FD0B8B1D * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t18D4CECE87AD2E5ED15C77ECA8B755689EE8AC96 * ___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_tA0E200FAB662D54E654E440E09CBBCC17D831833, ___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_tA0E200FAB662D54E654E440E09CBBCC17D831833, ___entries_1)); } inline EntryU5BU5D_t3E794099C0DF651976750CB2F90140C061415231* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t3E794099C0DF651976750CB2F90140C061415231** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t3E794099C0DF651976750CB2F90140C061415231* 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_tA0E200FAB662D54E654E440E09CBBCC17D831833, ___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_tA0E200FAB662D54E654E440E09CBBCC17D831833, ___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_tA0E200FAB662D54E654E440E09CBBCC17D831833, ___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_tA0E200FAB662D54E654E440E09CBBCC17D831833, ___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_tA0E200FAB662D54E654E440E09CBBCC17D831833, ___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_tA0E200FAB662D54E654E440E09CBBCC17D831833, ___keys_7)); } inline KeyCollection_t03F00DD1AC4F92F5138CAB2CC1235582FD0B8B1D * get_keys_7() const { return ___keys_7; } inline KeyCollection_t03F00DD1AC4F92F5138CAB2CC1235582FD0B8B1D ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t03F00DD1AC4F92F5138CAB2CC1235582FD0B8B1D * 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_tA0E200FAB662D54E654E440E09CBBCC17D831833, ___values_8)); } inline ValueCollection_t18D4CECE87AD2E5ED15C77ECA8B755689EE8AC96 * get_values_8() const { return ___values_8; } inline ValueCollection_t18D4CECE87AD2E5ED15C77ECA8B755689EE8AC96 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t18D4CECE87AD2E5ED15C77ECA8B755689EE8AC96 * 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_tA0E200FAB662D54E654E440E09CBBCC17D831833, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.List`1<System.Diagnostics.Tracing.FieldMetadata> struct List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items FieldMetadataU5BU5D_tBDB9B5E46662C93C301E095F1DC2B0B1B8FE9796* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A, ____items_1)); } inline FieldMetadataU5BU5D_tBDB9B5E46662C93C301E095F1DC2B0B1B8FE9796* get__items_1() const { return ____items_1; } inline FieldMetadataU5BU5D_tBDB9B5E46662C93C301E095F1DC2B0B1B8FE9796** get_address_of__items_1() { return &____items_1; } inline void set__items_1(FieldMetadataU5BU5D_tBDB9B5E46662C93C301E095F1DC2B0B1B8FE9796* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; struct List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray FieldMetadataU5BU5D_tBDB9B5E46662C93C301E095F1DC2B0B1B8FE9796* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A_StaticFields, ____emptyArray_5)); } inline FieldMetadataU5BU5D_tBDB9B5E46662C93C301E095F1DC2B0B1B8FE9796* get__emptyArray_5() const { return ____emptyArray_5; } inline FieldMetadataU5BU5D_tBDB9B5E46662C93C301E095F1DC2B0B1B8FE9796** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(FieldMetadataU5BU5D_tBDB9B5E46662C93C301E095F1DC2B0B1B8FE9796* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1<System.Diagnostics.Tracing.PropertyAnalysis> struct List_1_t759B86C3AE2A2F5A5B70559ABC92F3CDAEB4DBEC : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t759B86C3AE2A2F5A5B70559ABC92F3CDAEB4DBEC, ____items_1)); } inline PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB* get__items_1() const { return ____items_1; } inline PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB** get_address_of__items_1() { return &____items_1; } inline void set__items_1(PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t759B86C3AE2A2F5A5B70559ABC92F3CDAEB4DBEC, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t759B86C3AE2A2F5A5B70559ABC92F3CDAEB4DBEC, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t759B86C3AE2A2F5A5B70559ABC92F3CDAEB4DBEC, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; struct List_1_t759B86C3AE2A2F5A5B70559ABC92F3CDAEB4DBEC_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t759B86C3AE2A2F5A5B70559ABC92F3CDAEB4DBEC_StaticFields, ____emptyArray_5)); } inline PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB* get__emptyArray_5() const { return ____emptyArray_5; } inline PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1<System.Globalization.CultureInfo> struct List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items CultureInfoU5BU5D_t5ABD12F26C65E5F6F3E7916401EAA322BA2BDF31* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t74F59DD36FAE0CFB087612565C42CAD359647832, ____items_1)); } inline CultureInfoU5BU5D_t5ABD12F26C65E5F6F3E7916401EAA322BA2BDF31* get__items_1() const { return ____items_1; } inline CultureInfoU5BU5D_t5ABD12F26C65E5F6F3E7916401EAA322BA2BDF31** get_address_of__items_1() { return &____items_1; } inline void set__items_1(CultureInfoU5BU5D_t5ABD12F26C65E5F6F3E7916401EAA322BA2BDF31* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t74F59DD36FAE0CFB087612565C42CAD359647832, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t74F59DD36FAE0CFB087612565C42CAD359647832, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t74F59DD36FAE0CFB087612565C42CAD359647832, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; struct List_1_t74F59DD36FAE0CFB087612565C42CAD359647832_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray CultureInfoU5BU5D_t5ABD12F26C65E5F6F3E7916401EAA322BA2BDF31* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t74F59DD36FAE0CFB087612565C42CAD359647832_StaticFields, ____emptyArray_5)); } inline CultureInfoU5BU5D_t5ABD12F26C65E5F6F3E7916401EAA322BA2BDF31* get__emptyArray_5() const { return ____emptyArray_5; } inline CultureInfoU5BU5D_t5ABD12F26C65E5F6F3E7916401EAA322BA2BDF31** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(CultureInfoU5BU5D_t5ABD12F26C65E5F6F3E7916401EAA322BA2BDF31* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1<System.Int32> struct List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226, ____items_1)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get__items_1() const { return ____items_1; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of__items_1() { return &____items_1; } inline void set__items_1(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; struct List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226_StaticFields, ____emptyArray_5)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get__emptyArray_5() const { return ____emptyArray_5; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1<System.String> struct List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3, ____items_1)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get__items_1() const { return ____items_1; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of__items_1() { return &____items_1; } inline void set__items_1(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; struct List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3_StaticFields, ____emptyArray_5)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get__emptyArray_5() const { return ____emptyArray_5; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1<System.Type> struct List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0, ____items_1)); } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get__items_1() const { return ____items_1; } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of__items_1() { return &____items_1; } inline void set__items_1(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; struct List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0_StaticFields, ____emptyArray_5)); } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get__emptyArray_5() const { return ____emptyArray_5; } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1<System.UInt64> struct List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8, ____items_1)); } inline UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* get__items_1() const { return ____items_1; } inline UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4** get_address_of__items_1() { return &____items_1; } inline void set__items_1(UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; struct List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8_StaticFields, ____emptyArray_5)); } inline UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* get__emptyArray_5() const { return ____emptyArray_5; } inline UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object> struct ReadOnlyCollection_1_t5D996E967221C71E4EC5CC11210C3076432D5A50 : public RuntimeObject { public: // System.Collections.Generic.IList`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1::list RuntimeObject* ___list_0; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t5D996E967221C71E4EC5CC11210C3076432D5A50, ___list_0)); } inline RuntimeObject* get_list_0() const { return ___list_0; } inline RuntimeObject** get_address_of_list_0() { return &___list_0; } inline void set_list_0(RuntimeObject* value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } }; // System.Collections.ObjectModel.ReadOnlyCollection`1<System.String> struct ReadOnlyCollection_1_tB9E469CEA1A95F21BDF5C8594323E208E5454BE0 : public RuntimeObject { public: // System.Collections.Generic.IList`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1::list RuntimeObject* ___list_0; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_tB9E469CEA1A95F21BDF5C8594323E208E5454BE0, ___list_0)); } inline RuntimeObject* get_list_0() const { return ___list_0; } inline RuntimeObject** get_address_of_list_0() { return &___list_0; } inline void set_list_0(RuntimeObject* value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } }; // System.CompatibilitySwitches struct CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91 : public RuntimeObject { public: public: }; struct CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_StaticFields { public: // System.Boolean System.CompatibilitySwitches::IsAppEarlierThanSilverlight4 bool ___IsAppEarlierThanSilverlight4_0; // System.Boolean System.CompatibilitySwitches::IsAppEarlierThanWindowsPhone8 bool ___IsAppEarlierThanWindowsPhone8_1; public: inline static int32_t get_offset_of_IsAppEarlierThanSilverlight4_0() { return static_cast<int32_t>(offsetof(CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_StaticFields, ___IsAppEarlierThanSilverlight4_0)); } inline bool get_IsAppEarlierThanSilverlight4_0() const { return ___IsAppEarlierThanSilverlight4_0; } inline bool* get_address_of_IsAppEarlierThanSilverlight4_0() { return &___IsAppEarlierThanSilverlight4_0; } inline void set_IsAppEarlierThanSilverlight4_0(bool value) { ___IsAppEarlierThanSilverlight4_0 = value; } inline static int32_t get_offset_of_IsAppEarlierThanWindowsPhone8_1() { return static_cast<int32_t>(offsetof(CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_StaticFields, ___IsAppEarlierThanWindowsPhone8_1)); } inline bool get_IsAppEarlierThanWindowsPhone8_1() const { return ___IsAppEarlierThanWindowsPhone8_1; } inline bool* get_address_of_IsAppEarlierThanWindowsPhone8_1() { return &___IsAppEarlierThanWindowsPhone8_1; } inline void set_IsAppEarlierThanWindowsPhone8_1(bool value) { ___IsAppEarlierThanWindowsPhone8_1 = value; } }; // System.Diagnostics.StackFrame struct StackFrame_tD06959DD2B585E9BEB73C60AB5C110DE69F23A00 : public RuntimeObject { public: // System.Int32 System.Diagnostics.StackFrame::ilOffset int32_t ___ilOffset_1; // System.Int32 System.Diagnostics.StackFrame::nativeOffset int32_t ___nativeOffset_2; // System.Int64 System.Diagnostics.StackFrame::methodAddress int64_t ___methodAddress_3; // System.UInt32 System.Diagnostics.StackFrame::methodIndex uint32_t ___methodIndex_4; // System.Reflection.MethodBase System.Diagnostics.StackFrame::methodBase MethodBase_t * ___methodBase_5; // System.String System.Diagnostics.StackFrame::fileName String_t* ___fileName_6; // System.Int32 System.Diagnostics.StackFrame::lineNumber int32_t ___lineNumber_7; // System.Int32 System.Diagnostics.StackFrame::columnNumber int32_t ___columnNumber_8; // System.String System.Diagnostics.StackFrame::internalMethodName String_t* ___internalMethodName_9; public: inline static int32_t get_offset_of_ilOffset_1() { return static_cast<int32_t>(offsetof(StackFrame_tD06959DD2B585E9BEB73C60AB5C110DE69F23A00, ___ilOffset_1)); } inline int32_t get_ilOffset_1() const { return ___ilOffset_1; } inline int32_t* get_address_of_ilOffset_1() { return &___ilOffset_1; } inline void set_ilOffset_1(int32_t value) { ___ilOffset_1 = value; } inline static int32_t get_offset_of_nativeOffset_2() { return static_cast<int32_t>(offsetof(StackFrame_tD06959DD2B585E9BEB73C60AB5C110DE69F23A00, ___nativeOffset_2)); } inline int32_t get_nativeOffset_2() const { return ___nativeOffset_2; } inline int32_t* get_address_of_nativeOffset_2() { return &___nativeOffset_2; } inline void set_nativeOffset_2(int32_t value) { ___nativeOffset_2 = value; } inline static int32_t get_offset_of_methodAddress_3() { return static_cast<int32_t>(offsetof(StackFrame_tD06959DD2B585E9BEB73C60AB5C110DE69F23A00, ___methodAddress_3)); } inline int64_t get_methodAddress_3() const { return ___methodAddress_3; } inline int64_t* get_address_of_methodAddress_3() { return &___methodAddress_3; } inline void set_methodAddress_3(int64_t value) { ___methodAddress_3 = value; } inline static int32_t get_offset_of_methodIndex_4() { return static_cast<int32_t>(offsetof(StackFrame_tD06959DD2B585E9BEB73C60AB5C110DE69F23A00, ___methodIndex_4)); } inline uint32_t get_methodIndex_4() const { return ___methodIndex_4; } inline uint32_t* get_address_of_methodIndex_4() { return &___methodIndex_4; } inline void set_methodIndex_4(uint32_t value) { ___methodIndex_4 = value; } inline static int32_t get_offset_of_methodBase_5() { return static_cast<int32_t>(offsetof(StackFrame_tD06959DD2B585E9BEB73C60AB5C110DE69F23A00, ___methodBase_5)); } inline MethodBase_t * get_methodBase_5() const { return ___methodBase_5; } inline MethodBase_t ** get_address_of_methodBase_5() { return &___methodBase_5; } inline void set_methodBase_5(MethodBase_t * value) { ___methodBase_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___methodBase_5), (void*)value); } inline static int32_t get_offset_of_fileName_6() { return static_cast<int32_t>(offsetof(StackFrame_tD06959DD2B585E9BEB73C60AB5C110DE69F23A00, ___fileName_6)); } inline String_t* get_fileName_6() const { return ___fileName_6; } inline String_t** get_address_of_fileName_6() { return &___fileName_6; } inline void set_fileName_6(String_t* value) { ___fileName_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___fileName_6), (void*)value); } inline static int32_t get_offset_of_lineNumber_7() { return static_cast<int32_t>(offsetof(StackFrame_tD06959DD2B585E9BEB73C60AB5C110DE69F23A00, ___lineNumber_7)); } inline int32_t get_lineNumber_7() const { return ___lineNumber_7; } inline int32_t* get_address_of_lineNumber_7() { return &___lineNumber_7; } inline void set_lineNumber_7(int32_t value) { ___lineNumber_7 = value; } inline static int32_t get_offset_of_columnNumber_8() { return static_cast<int32_t>(offsetof(StackFrame_tD06959DD2B585E9BEB73C60AB5C110DE69F23A00, ___columnNumber_8)); } inline int32_t get_columnNumber_8() const { return ___columnNumber_8; } inline int32_t* get_address_of_columnNumber_8() { return &___columnNumber_8; } inline void set_columnNumber_8(int32_t value) { ___columnNumber_8 = value; } inline static int32_t get_offset_of_internalMethodName_9() { return static_cast<int32_t>(offsetof(StackFrame_tD06959DD2B585E9BEB73C60AB5C110DE69F23A00, ___internalMethodName_9)); } inline String_t* get_internalMethodName_9() const { return ___internalMethodName_9; } inline String_t** get_address_of_internalMethodName_9() { return &___internalMethodName_9; } inline void set_internalMethodName_9(String_t* value) { ___internalMethodName_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___internalMethodName_9), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Diagnostics.StackFrame struct StackFrame_tD06959DD2B585E9BEB73C60AB5C110DE69F23A00_marshaled_pinvoke { int32_t ___ilOffset_1; int32_t ___nativeOffset_2; int64_t ___methodAddress_3; uint32_t ___methodIndex_4; MethodBase_t * ___methodBase_5; char* ___fileName_6; int32_t ___lineNumber_7; int32_t ___columnNumber_8; char* ___internalMethodName_9; }; // Native definition for COM marshalling of System.Diagnostics.StackFrame struct StackFrame_tD06959DD2B585E9BEB73C60AB5C110DE69F23A00_marshaled_com { int32_t ___ilOffset_1; int32_t ___nativeOffset_2; int64_t ___methodAddress_3; uint32_t ___methodIndex_4; MethodBase_t * ___methodBase_5; Il2CppChar* ___fileName_6; int32_t ___lineNumber_7; int32_t ___columnNumber_8; Il2CppChar* ___internalMethodName_9; }; // System.Diagnostics.StackTrace struct StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99 : public RuntimeObject { public: // System.Diagnostics.StackFrame[] System.Diagnostics.StackTrace::frames StackFrameU5BU5D_t5075A2805A51162E94A9CF2F2881DC51B78EA80D* ___frames_1; // System.Diagnostics.StackTrace[] System.Diagnostics.StackTrace::captured_traces StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_2; // System.Boolean System.Diagnostics.StackTrace::debug_info bool ___debug_info_3; public: inline static int32_t get_offset_of_frames_1() { return static_cast<int32_t>(offsetof(StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99, ___frames_1)); } inline StackFrameU5BU5D_t5075A2805A51162E94A9CF2F2881DC51B78EA80D* get_frames_1() const { return ___frames_1; } inline StackFrameU5BU5D_t5075A2805A51162E94A9CF2F2881DC51B78EA80D** get_address_of_frames_1() { return &___frames_1; } inline void set_frames_1(StackFrameU5BU5D_t5075A2805A51162E94A9CF2F2881DC51B78EA80D* value) { ___frames_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___frames_1), (void*)value); } inline static int32_t get_offset_of_captured_traces_2() { return static_cast<int32_t>(offsetof(StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99, ___captured_traces_2)); } inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* get_captured_traces_2() const { return ___captured_traces_2; } inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196** get_address_of_captured_traces_2() { return &___captured_traces_2; } inline void set_captured_traces_2(StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* value) { ___captured_traces_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___captured_traces_2), (void*)value); } inline static int32_t get_offset_of_debug_info_3() { return static_cast<int32_t>(offsetof(StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99, ___debug_info_3)); } inline bool get_debug_info_3() const { return ___debug_info_3; } inline bool* get_address_of_debug_info_3() { return &___debug_info_3; } inline void set_debug_info_3(bool value) { ___debug_info_3 = value; } }; struct StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99_StaticFields { public: // System.Boolean System.Diagnostics.StackTrace::isAotidSet bool ___isAotidSet_4; // System.String System.Diagnostics.StackTrace::aotid String_t* ___aotid_5; public: inline static int32_t get_offset_of_isAotidSet_4() { return static_cast<int32_t>(offsetof(StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99_StaticFields, ___isAotidSet_4)); } inline bool get_isAotidSet_4() const { return ___isAotidSet_4; } inline bool* get_address_of_isAotidSet_4() { return &___isAotidSet_4; } inline void set_isAotidSet_4(bool value) { ___isAotidSet_4 = value; } inline static int32_t get_offset_of_aotid_5() { return static_cast<int32_t>(offsetof(StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99_StaticFields, ___aotid_5)); } inline String_t* get_aotid_5() const { return ___aotid_5; } inline String_t** get_address_of_aotid_5() { return &___aotid_5; } inline void set_aotid_5(String_t* value) { ___aotid_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___aotid_5), (void*)value); } }; // System.Diagnostics.Tracing.ConcurrentSetItem`2<System.Collections.Generic.KeyValuePair`2<System.String,System.Diagnostics.Tracing.EventTags>,System.Diagnostics.Tracing.NameInfo> struct ConcurrentSetItem_2_tF75C8666AA6AE859719571013C6765518785D0DA : public RuntimeObject { public: public: }; // System.Diagnostics.Tracing.EventListener struct EventListener_t9B86F76EF72340DCFA9AD7715776E2C3988144A6 : public RuntimeObject { public: // System.EventHandler`1<System.Diagnostics.Tracing.EventSourceCreatedEventArgs> System.Diagnostics.Tracing.EventListener::_EventSourceCreated EventHandler_1_tE9CADA60E04DEA35665DBABBF7DE192763FACFBE * ____EventSourceCreated_1; // System.EventHandler`1<System.Diagnostics.Tracing.EventWrittenEventArgs> System.Diagnostics.Tracing.EventListener::EventWritten EventHandler_1_t4CAFC32F107417E2417FCBD053FD1744C2CDDED6 * ___EventWritten_2; // System.Diagnostics.Tracing.EventListener modreq(System.Runtime.CompilerServices.IsVolatile) System.Diagnostics.Tracing.EventListener::m_Next EventListener_t9B86F76EF72340DCFA9AD7715776E2C3988144A6 * ___m_Next_3; // System.Diagnostics.Tracing.ActivityFilter System.Diagnostics.Tracing.EventListener::m_activityFilter ActivityFilter_t0752727D4698E64AAC232FD9DB1FC68735A9EAE8 * ___m_activityFilter_4; public: inline static int32_t get_offset_of__EventSourceCreated_1() { return static_cast<int32_t>(offsetof(EventListener_t9B86F76EF72340DCFA9AD7715776E2C3988144A6, ____EventSourceCreated_1)); } inline EventHandler_1_tE9CADA60E04DEA35665DBABBF7DE192763FACFBE * get__EventSourceCreated_1() const { return ____EventSourceCreated_1; } inline EventHandler_1_tE9CADA60E04DEA35665DBABBF7DE192763FACFBE ** get_address_of__EventSourceCreated_1() { return &____EventSourceCreated_1; } inline void set__EventSourceCreated_1(EventHandler_1_tE9CADA60E04DEA35665DBABBF7DE192763FACFBE * value) { ____EventSourceCreated_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____EventSourceCreated_1), (void*)value); } inline static int32_t get_offset_of_EventWritten_2() { return static_cast<int32_t>(offsetof(EventListener_t9B86F76EF72340DCFA9AD7715776E2C3988144A6, ___EventWritten_2)); } inline EventHandler_1_t4CAFC32F107417E2417FCBD053FD1744C2CDDED6 * get_EventWritten_2() const { return ___EventWritten_2; } inline EventHandler_1_t4CAFC32F107417E2417FCBD053FD1744C2CDDED6 ** get_address_of_EventWritten_2() { return &___EventWritten_2; } inline void set_EventWritten_2(EventHandler_1_t4CAFC32F107417E2417FCBD053FD1744C2CDDED6 * value) { ___EventWritten_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___EventWritten_2), (void*)value); } inline static int32_t get_offset_of_m_Next_3() { return static_cast<int32_t>(offsetof(EventListener_t9B86F76EF72340DCFA9AD7715776E2C3988144A6, ___m_Next_3)); } inline EventListener_t9B86F76EF72340DCFA9AD7715776E2C3988144A6 * get_m_Next_3() const { return ___m_Next_3; } inline EventListener_t9B86F76EF72340DCFA9AD7715776E2C3988144A6 ** get_address_of_m_Next_3() { return &___m_Next_3; } inline void set_m_Next_3(EventListener_t9B86F76EF72340DCFA9AD7715776E2C3988144A6 * value) { ___m_Next_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Next_3), (void*)value); } inline static int32_t get_offset_of_m_activityFilter_4() { return static_cast<int32_t>(offsetof(EventListener_t9B86F76EF72340DCFA9AD7715776E2C3988144A6, ___m_activityFilter_4)); } inline ActivityFilter_t0752727D4698E64AAC232FD9DB1FC68735A9EAE8 * get_m_activityFilter_4() const { return ___m_activityFilter_4; } inline ActivityFilter_t0752727D4698E64AAC232FD9DB1FC68735A9EAE8 ** get_address_of_m_activityFilter_4() { return &___m_activityFilter_4; } inline void set_m_activityFilter_4(ActivityFilter_t0752727D4698E64AAC232FD9DB1FC68735A9EAE8 * value) { ___m_activityFilter_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_activityFilter_4), (void*)value); } }; struct EventListener_t9B86F76EF72340DCFA9AD7715776E2C3988144A6_StaticFields { public: // System.Object System.Diagnostics.Tracing.EventListener::s_EventSourceCreatedLock RuntimeObject * ___s_EventSourceCreatedLock_0; // System.Diagnostics.Tracing.EventListener System.Diagnostics.Tracing.EventListener::s_Listeners EventListener_t9B86F76EF72340DCFA9AD7715776E2C3988144A6 * ___s_Listeners_5; // System.Collections.Generic.List`1<System.WeakReference> System.Diagnostics.Tracing.EventListener::s_EventSources List_1_t0B19BE4139518EFD1F11815FD931281B09EA15EF * ___s_EventSources_6; // System.Boolean System.Diagnostics.Tracing.EventListener::s_CreatingListener bool ___s_CreatingListener_7; // System.Boolean System.Diagnostics.Tracing.EventListener::s_EventSourceShutdownRegistered bool ___s_EventSourceShutdownRegistered_8; public: inline static int32_t get_offset_of_s_EventSourceCreatedLock_0() { return static_cast<int32_t>(offsetof(EventListener_t9B86F76EF72340DCFA9AD7715776E2C3988144A6_StaticFields, ___s_EventSourceCreatedLock_0)); } inline RuntimeObject * get_s_EventSourceCreatedLock_0() const { return ___s_EventSourceCreatedLock_0; } inline RuntimeObject ** get_address_of_s_EventSourceCreatedLock_0() { return &___s_EventSourceCreatedLock_0; } inline void set_s_EventSourceCreatedLock_0(RuntimeObject * value) { ___s_EventSourceCreatedLock_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_EventSourceCreatedLock_0), (void*)value); } inline static int32_t get_offset_of_s_Listeners_5() { return static_cast<int32_t>(offsetof(EventListener_t9B86F76EF72340DCFA9AD7715776E2C3988144A6_StaticFields, ___s_Listeners_5)); } inline EventListener_t9B86F76EF72340DCFA9AD7715776E2C3988144A6 * get_s_Listeners_5() const { return ___s_Listeners_5; } inline EventListener_t9B86F76EF72340DCFA9AD7715776E2C3988144A6 ** get_address_of_s_Listeners_5() { return &___s_Listeners_5; } inline void set_s_Listeners_5(EventListener_t9B86F76EF72340DCFA9AD7715776E2C3988144A6 * value) { ___s_Listeners_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_Listeners_5), (void*)value); } inline static int32_t get_offset_of_s_EventSources_6() { return static_cast<int32_t>(offsetof(EventListener_t9B86F76EF72340DCFA9AD7715776E2C3988144A6_StaticFields, ___s_EventSources_6)); } inline List_1_t0B19BE4139518EFD1F11815FD931281B09EA15EF * get_s_EventSources_6() const { return ___s_EventSources_6; } inline List_1_t0B19BE4139518EFD1F11815FD931281B09EA15EF ** get_address_of_s_EventSources_6() { return &___s_EventSources_6; } inline void set_s_EventSources_6(List_1_t0B19BE4139518EFD1F11815FD931281B09EA15EF * value) { ___s_EventSources_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_EventSources_6), (void*)value); } inline static int32_t get_offset_of_s_CreatingListener_7() { return static_cast<int32_t>(offsetof(EventListener_t9B86F76EF72340DCFA9AD7715776E2C3988144A6_StaticFields, ___s_CreatingListener_7)); } inline bool get_s_CreatingListener_7() const { return ___s_CreatingListener_7; } inline bool* get_address_of_s_CreatingListener_7() { return &___s_CreatingListener_7; } inline void set_s_CreatingListener_7(bool value) { ___s_CreatingListener_7 = value; } inline static int32_t get_offset_of_s_EventSourceShutdownRegistered_8() { return static_cast<int32_t>(offsetof(EventListener_t9B86F76EF72340DCFA9AD7715776E2C3988144A6_StaticFields, ___s_EventSourceShutdownRegistered_8)); } inline bool get_s_EventSourceShutdownRegistered_8() const { return ___s_EventSourceShutdownRegistered_8; } inline bool* get_address_of_s_EventSourceShutdownRegistered_8() { return &___s_EventSourceShutdownRegistered_8; } inline void set_s_EventSourceShutdownRegistered_8(bool value) { ___s_EventSourceShutdownRegistered_8 = value; } }; // System.Diagnostics.Tracing.ManifestBuilder_<>c__DisplayClass22_0 struct U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F : public RuntimeObject { public: // System.Text.StringBuilder System.Diagnostics.Tracing.ManifestBuilder_<>c__DisplayClass22_0::stringBuilder StringBuilder_t * ___stringBuilder_0; // System.String System.Diagnostics.Tracing.ManifestBuilder_<>c__DisplayClass22_0::eventMessage String_t* ___eventMessage_1; // System.Int32 System.Diagnostics.Tracing.ManifestBuilder_<>c__DisplayClass22_0::writtenSoFar int32_t ___writtenSoFar_2; public: inline static int32_t get_offset_of_stringBuilder_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F, ___stringBuilder_0)); } inline StringBuilder_t * get_stringBuilder_0() const { return ___stringBuilder_0; } inline StringBuilder_t ** get_address_of_stringBuilder_0() { return &___stringBuilder_0; } inline void set_stringBuilder_0(StringBuilder_t * value) { ___stringBuilder_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___stringBuilder_0), (void*)value); } inline static int32_t get_offset_of_eventMessage_1() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F, ___eventMessage_1)); } inline String_t* get_eventMessage_1() const { return ___eventMessage_1; } inline String_t** get_address_of_eventMessage_1() { return &___eventMessage_1; } inline void set_eventMessage_1(String_t* value) { ___eventMessage_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___eventMessage_1), (void*)value); } inline static int32_t get_offset_of_writtenSoFar_2() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F, ___writtenSoFar_2)); } inline int32_t get_writtenSoFar_2() const { return ___writtenSoFar_2; } inline int32_t* get_address_of_writtenSoFar_2() { return &___writtenSoFar_2; } inline void set_writtenSoFar_2(int32_t value) { ___writtenSoFar_2 = value; } }; // System.Diagnostics.Tracing.ManifestBuilder_<>c__DisplayClass22_1 struct U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A : public RuntimeObject { public: // System.Int32 System.Diagnostics.Tracing.ManifestBuilder_<>c__DisplayClass22_1::i int32_t ___i_0; // System.Diagnostics.Tracing.ManifestBuilder_<>c__DisplayClass22_0 System.Diagnostics.Tracing.ManifestBuilder_<>c__DisplayClass22_1::CSU24<>8__locals1 U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * ___CSU24U3CU3E8__locals1_1; public: inline static int32_t get_offset_of_i_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A, ___i_0)); } inline int32_t get_i_0() const { return ___i_0; } inline int32_t* get_address_of_i_0() { return &___i_0; } inline void set_i_0(int32_t value) { ___i_0 = value; } inline static int32_t get_offset_of_CSU24U3CU3E8__locals1_1() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A, ___CSU24U3CU3E8__locals1_1)); } inline U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * get_CSU24U3CU3E8__locals1_1() const { return ___CSU24U3CU3E8__locals1_1; } inline U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F ** get_address_of_CSU24U3CU3E8__locals1_1() { return &___CSU24U3CU3E8__locals1_1; } inline void set_CSU24U3CU3E8__locals1_1(U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * value) { ___CSU24U3CU3E8__locals1_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___CSU24U3CU3E8__locals1_1), (void*)value); } }; // System.Diagnostics.Tracing.PropertyAnalysis struct PropertyAnalysis_t3DC0F773245CD968BED647345E53535D422CF46A : public RuntimeObject { public: // System.String System.Diagnostics.Tracing.PropertyAnalysis::name String_t* ___name_0; // System.Reflection.MethodInfo System.Diagnostics.Tracing.PropertyAnalysis::getterInfo MethodInfo_t * ___getterInfo_1; // System.Diagnostics.Tracing.TraceLoggingTypeInfo System.Diagnostics.Tracing.PropertyAnalysis::typeInfo TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * ___typeInfo_2; // System.Diagnostics.Tracing.EventFieldAttribute System.Diagnostics.Tracing.PropertyAnalysis::fieldAttribute EventFieldAttribute_tCD8E252D7D673724F2980B794282B715E16A675C * ___fieldAttribute_3; public: inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(PropertyAnalysis_t3DC0F773245CD968BED647345E53535D422CF46A, ___name_0)); } inline String_t* get_name_0() const { return ___name_0; } inline String_t** get_address_of_name_0() { return &___name_0; } inline void set_name_0(String_t* value) { ___name_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___name_0), (void*)value); } inline static int32_t get_offset_of_getterInfo_1() { return static_cast<int32_t>(offsetof(PropertyAnalysis_t3DC0F773245CD968BED647345E53535D422CF46A, ___getterInfo_1)); } inline MethodInfo_t * get_getterInfo_1() const { return ___getterInfo_1; } inline MethodInfo_t ** get_address_of_getterInfo_1() { return &___getterInfo_1; } inline void set_getterInfo_1(MethodInfo_t * value) { ___getterInfo_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___getterInfo_1), (void*)value); } inline static int32_t get_offset_of_typeInfo_2() { return static_cast<int32_t>(offsetof(PropertyAnalysis_t3DC0F773245CD968BED647345E53535D422CF46A, ___typeInfo_2)); } inline TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * get_typeInfo_2() const { return ___typeInfo_2; } inline TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F ** get_address_of_typeInfo_2() { return &___typeInfo_2; } inline void set_typeInfo_2(TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * value) { ___typeInfo_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___typeInfo_2), (void*)value); } inline static int32_t get_offset_of_fieldAttribute_3() { return static_cast<int32_t>(offsetof(PropertyAnalysis_t3DC0F773245CD968BED647345E53535D422CF46A, ___fieldAttribute_3)); } inline EventFieldAttribute_tCD8E252D7D673724F2980B794282B715E16A675C * get_fieldAttribute_3() const { return ___fieldAttribute_3; } inline EventFieldAttribute_tCD8E252D7D673724F2980B794282B715E16A675C ** get_address_of_fieldAttribute_3() { return &___fieldAttribute_3; } inline void set_fieldAttribute_3(EventFieldAttribute_tCD8E252D7D673724F2980B794282B715E16A675C * value) { ___fieldAttribute_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___fieldAttribute_3), (void*)value); } }; // System.Diagnostics.Tracing.TraceLoggingDataCollector struct TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA : public RuntimeObject { public: public: }; struct TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA_StaticFields { public: // System.Diagnostics.Tracing.TraceLoggingDataCollector System.Diagnostics.Tracing.TraceLoggingDataCollector::Instance TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * ___Instance_0; public: inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA_StaticFields, ___Instance_0)); } inline TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * get_Instance_0() const { return ___Instance_0; } inline TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA ** get_address_of_Instance_0() { return &___Instance_0; } inline void set_Instance_0(TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * value) { ___Instance_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value); } }; // System.Diagnostics.Tracing.TraceLoggingMetadataCollector_Impl struct Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F : public RuntimeObject { public: // System.Collections.Generic.List`1<System.Diagnostics.Tracing.FieldMetadata> System.Diagnostics.Tracing.TraceLoggingMetadataCollector_Impl::fields List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A * ___fields_0; // System.Int16 System.Diagnostics.Tracing.TraceLoggingMetadataCollector_Impl::scratchSize int16_t ___scratchSize_1; // System.SByte System.Diagnostics.Tracing.TraceLoggingMetadataCollector_Impl::dataCount int8_t ___dataCount_2; // System.SByte System.Diagnostics.Tracing.TraceLoggingMetadataCollector_Impl::pinCount int8_t ___pinCount_3; // System.Int32 System.Diagnostics.Tracing.TraceLoggingMetadataCollector_Impl::bufferNesting int32_t ___bufferNesting_4; // System.Boolean System.Diagnostics.Tracing.TraceLoggingMetadataCollector_Impl::scalar bool ___scalar_5; public: inline static int32_t get_offset_of_fields_0() { return static_cast<int32_t>(offsetof(Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F, ___fields_0)); } inline List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A * get_fields_0() const { return ___fields_0; } inline List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A ** get_address_of_fields_0() { return &___fields_0; } inline void set_fields_0(List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A * value) { ___fields_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___fields_0), (void*)value); } inline static int32_t get_offset_of_scratchSize_1() { return static_cast<int32_t>(offsetof(Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F, ___scratchSize_1)); } inline int16_t get_scratchSize_1() const { return ___scratchSize_1; } inline int16_t* get_address_of_scratchSize_1() { return &___scratchSize_1; } inline void set_scratchSize_1(int16_t value) { ___scratchSize_1 = value; } inline static int32_t get_offset_of_dataCount_2() { return static_cast<int32_t>(offsetof(Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F, ___dataCount_2)); } inline int8_t get_dataCount_2() const { return ___dataCount_2; } inline int8_t* get_address_of_dataCount_2() { return &___dataCount_2; } inline void set_dataCount_2(int8_t value) { ___dataCount_2 = value; } inline static int32_t get_offset_of_pinCount_3() { return static_cast<int32_t>(offsetof(Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F, ___pinCount_3)); } inline int8_t get_pinCount_3() const { return ___pinCount_3; } inline int8_t* get_address_of_pinCount_3() { return &___pinCount_3; } inline void set_pinCount_3(int8_t value) { ___pinCount_3 = value; } inline static int32_t get_offset_of_bufferNesting_4() { return static_cast<int32_t>(offsetof(Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F, ___bufferNesting_4)); } inline int32_t get_bufferNesting_4() const { return ___bufferNesting_4; } inline int32_t* get_address_of_bufferNesting_4() { return &___bufferNesting_4; } inline void set_bufferNesting_4(int32_t value) { ___bufferNesting_4 = value; } inline static int32_t get_offset_of_scalar_5() { return static_cast<int32_t>(offsetof(Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F, ___scalar_5)); } inline bool get_scalar_5() const { return ___scalar_5; } inline bool* get_address_of_scalar_5() { return &___scalar_5; } inline void set_scalar_5(bool value) { ___scalar_5 = value; } }; // System.Empty struct Empty_t31C7ECDF7D102AFFCE029D8AB11D8595F0316ED2 : public RuntimeObject { public: public: }; struct Empty_t31C7ECDF7D102AFFCE029D8AB11D8595F0316ED2_StaticFields { public: // System.Empty System.Empty::Value Empty_t31C7ECDF7D102AFFCE029D8AB11D8595F0316ED2 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(Empty_t31C7ECDF7D102AFFCE029D8AB11D8595F0316ED2_StaticFields, ___Value_0)); } inline Empty_t31C7ECDF7D102AFFCE029D8AB11D8595F0316ED2 * get_Value_0() const { return ___Value_0; } inline Empty_t31C7ECDF7D102AFFCE029D8AB11D8595F0316ED2 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(Empty_t31C7ECDF7D102AFFCE029D8AB11D8595F0316ED2 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value); } }; // System.Enum_ValuesAndNames struct ValuesAndNames_t48A099BB10887A683F62017FAD199FB2088CBDD2 : public RuntimeObject { public: // System.UInt64[] System.Enum_ValuesAndNames::Values UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* ___Values_0; // System.String[] System.Enum_ValuesAndNames::Names StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___Names_1; public: inline static int32_t get_offset_of_Values_0() { return static_cast<int32_t>(offsetof(ValuesAndNames_t48A099BB10887A683F62017FAD199FB2088CBDD2, ___Values_0)); } inline UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* get_Values_0() const { return ___Values_0; } inline UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4** get_address_of_Values_0() { return &___Values_0; } inline void set_Values_0(UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* value) { ___Values_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Values_0), (void*)value); } inline static int32_t get_offset_of_Names_1() { return static_cast<int32_t>(offsetof(ValuesAndNames_t48A099BB10887A683F62017FAD199FB2088CBDD2, ___Names_1)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_Names_1() const { return ___Names_1; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_Names_1() { return &___Names_1; } inline void set_Names_1(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___Names_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Names_1), (void*)value); } }; // System.Environment struct Environment_tC93BF7477A1AEA39D05EDFEBAFF62EE5353FF806 : public RuntimeObject { public: public: }; struct Environment_tC93BF7477A1AEA39D05EDFEBAFF62EE5353FF806_StaticFields { public: // System.String System.Environment::nl String_t* ___nl_1; // System.OperatingSystem System.Environment::os OperatingSystem_tBB05846D5AA6960FFEB42C59E5FE359255C2BE83 * ___os_2; public: inline static int32_t get_offset_of_nl_1() { return static_cast<int32_t>(offsetof(Environment_tC93BF7477A1AEA39D05EDFEBAFF62EE5353FF806_StaticFields, ___nl_1)); } inline String_t* get_nl_1() const { return ___nl_1; } inline String_t** get_address_of_nl_1() { return &___nl_1; } inline void set_nl_1(String_t* value) { ___nl_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___nl_1), (void*)value); } inline static int32_t get_offset_of_os_2() { return static_cast<int32_t>(offsetof(Environment_tC93BF7477A1AEA39D05EDFEBAFF62EE5353FF806_StaticFields, ___os_2)); } inline OperatingSystem_tBB05846D5AA6960FFEB42C59E5FE359255C2BE83 * get_os_2() const { return ___os_2; } inline OperatingSystem_tBB05846D5AA6960FFEB42C59E5FE359255C2BE83 ** get_address_of_os_2() { return &___os_2; } inline void set_os_2(OperatingSystem_tBB05846D5AA6960FFEB42C59E5FE359255C2BE83 * value) { ___os_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___os_2), (void*)value); } }; // System.EventArgs struct EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E : public RuntimeObject { public: public: }; struct EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_StaticFields { public: // System.EventArgs System.EventArgs::Empty EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * ___Empty_0; public: inline static int32_t get_offset_of_Empty_0() { return static_cast<int32_t>(offsetof(EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_StaticFields, ___Empty_0)); } inline EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * get_Empty_0() const { return ___Empty_0; } inline EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E ** get_address_of_Empty_0() { return &___Empty_0; } inline void set_Empty_0(EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * value) { ___Empty_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Empty_0), (void*)value); } }; // System.GC struct GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D : public RuntimeObject { public: public: }; struct GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_StaticFields { public: // System.Object System.GC::EPHEMERON_TOMBSTONE RuntimeObject * ___EPHEMERON_TOMBSTONE_0; public: inline static int32_t get_offset_of_EPHEMERON_TOMBSTONE_0() { return static_cast<int32_t>(offsetof(GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_StaticFields, ___EPHEMERON_TOMBSTONE_0)); } inline RuntimeObject * get_EPHEMERON_TOMBSTONE_0() const { return ___EPHEMERON_TOMBSTONE_0; } inline RuntimeObject ** get_address_of_EPHEMERON_TOMBSTONE_0() { return &___EPHEMERON_TOMBSTONE_0; } inline void set_EPHEMERON_TOMBSTONE_0(RuntimeObject * value) { ___EPHEMERON_TOMBSTONE_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___EPHEMERON_TOMBSTONE_0), (void*)value); } }; // System.Globalization.Bootstring struct Bootstring_t9E3CD00FBB61B43CDF0873C571322A4387693F41 : public RuntimeObject { public: // System.Char System.Globalization.Bootstring::delimiter Il2CppChar ___delimiter_0; // System.Int32 System.Globalization.Bootstring::base_num int32_t ___base_num_1; // System.Int32 System.Globalization.Bootstring::tmin int32_t ___tmin_2; // System.Int32 System.Globalization.Bootstring::tmax int32_t ___tmax_3; // System.Int32 System.Globalization.Bootstring::skew int32_t ___skew_4; // System.Int32 System.Globalization.Bootstring::damp int32_t ___damp_5; // System.Int32 System.Globalization.Bootstring::initial_bias int32_t ___initial_bias_6; // System.Int32 System.Globalization.Bootstring::initial_n int32_t ___initial_n_7; public: inline static int32_t get_offset_of_delimiter_0() { return static_cast<int32_t>(offsetof(Bootstring_t9E3CD00FBB61B43CDF0873C571322A4387693F41, ___delimiter_0)); } inline Il2CppChar get_delimiter_0() const { return ___delimiter_0; } inline Il2CppChar* get_address_of_delimiter_0() { return &___delimiter_0; } inline void set_delimiter_0(Il2CppChar value) { ___delimiter_0 = value; } inline static int32_t get_offset_of_base_num_1() { return static_cast<int32_t>(offsetof(Bootstring_t9E3CD00FBB61B43CDF0873C571322A4387693F41, ___base_num_1)); } inline int32_t get_base_num_1() const { return ___base_num_1; } inline int32_t* get_address_of_base_num_1() { return &___base_num_1; } inline void set_base_num_1(int32_t value) { ___base_num_1 = value; } inline static int32_t get_offset_of_tmin_2() { return static_cast<int32_t>(offsetof(Bootstring_t9E3CD00FBB61B43CDF0873C571322A4387693F41, ___tmin_2)); } inline int32_t get_tmin_2() const { return ___tmin_2; } inline int32_t* get_address_of_tmin_2() { return &___tmin_2; } inline void set_tmin_2(int32_t value) { ___tmin_2 = value; } inline static int32_t get_offset_of_tmax_3() { return static_cast<int32_t>(offsetof(Bootstring_t9E3CD00FBB61B43CDF0873C571322A4387693F41, ___tmax_3)); } inline int32_t get_tmax_3() const { return ___tmax_3; } inline int32_t* get_address_of_tmax_3() { return &___tmax_3; } inline void set_tmax_3(int32_t value) { ___tmax_3 = value; } inline static int32_t get_offset_of_skew_4() { return static_cast<int32_t>(offsetof(Bootstring_t9E3CD00FBB61B43CDF0873C571322A4387693F41, ___skew_4)); } inline int32_t get_skew_4() const { return ___skew_4; } inline int32_t* get_address_of_skew_4() { return &___skew_4; } inline void set_skew_4(int32_t value) { ___skew_4 = value; } inline static int32_t get_offset_of_damp_5() { return static_cast<int32_t>(offsetof(Bootstring_t9E3CD00FBB61B43CDF0873C571322A4387693F41, ___damp_5)); } inline int32_t get_damp_5() const { return ___damp_5; } inline int32_t* get_address_of_damp_5() { return &___damp_5; } inline void set_damp_5(int32_t value) { ___damp_5 = value; } inline static int32_t get_offset_of_initial_bias_6() { return static_cast<int32_t>(offsetof(Bootstring_t9E3CD00FBB61B43CDF0873C571322A4387693F41, ___initial_bias_6)); } inline int32_t get_initial_bias_6() const { return ___initial_bias_6; } inline int32_t* get_address_of_initial_bias_6() { return &___initial_bias_6; } inline void set_initial_bias_6(int32_t value) { ___initial_bias_6 = value; } inline static int32_t get_offset_of_initial_n_7() { return static_cast<int32_t>(offsetof(Bootstring_t9E3CD00FBB61B43CDF0873C571322A4387693F41, ___initial_n_7)); } inline int32_t get_initial_n_7() const { return ___initial_n_7; } inline int32_t* get_address_of_initial_n_7() { return &___initial_n_7; } inline void set_initial_n_7(int32_t value) { ___initial_n_7 = value; } }; // System.Globalization.Calendar struct Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 : public RuntimeObject { public: // System.Int32 System.Globalization.Calendar::m_currentEraValue int32_t ___m_currentEraValue_0; // System.Boolean System.Globalization.Calendar::m_isReadOnly bool ___m_isReadOnly_1; // System.Int32 System.Globalization.Calendar::twoDigitYearMax int32_t ___twoDigitYearMax_2; public: inline static int32_t get_offset_of_m_currentEraValue_0() { return static_cast<int32_t>(offsetof(Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5, ___m_currentEraValue_0)); } inline int32_t get_m_currentEraValue_0() const { return ___m_currentEraValue_0; } inline int32_t* get_address_of_m_currentEraValue_0() { return &___m_currentEraValue_0; } inline void set_m_currentEraValue_0(int32_t value) { ___m_currentEraValue_0 = value; } inline static int32_t get_offset_of_m_isReadOnly_1() { return static_cast<int32_t>(offsetof(Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5, ___m_isReadOnly_1)); } inline bool get_m_isReadOnly_1() const { return ___m_isReadOnly_1; } inline bool* get_address_of_m_isReadOnly_1() { return &___m_isReadOnly_1; } inline void set_m_isReadOnly_1(bool value) { ___m_isReadOnly_1 = value; } inline static int32_t get_offset_of_twoDigitYearMax_2() { return static_cast<int32_t>(offsetof(Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5, ___twoDigitYearMax_2)); } inline int32_t get_twoDigitYearMax_2() const { return ___twoDigitYearMax_2; } inline int32_t* get_address_of_twoDigitYearMax_2() { return &___twoDigitYearMax_2; } inline void set_twoDigitYearMax_2(int32_t value) { ___twoDigitYearMax_2 = value; } }; // System.Globalization.CalendarData struct CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E : public RuntimeObject { public: // System.String System.Globalization.CalendarData::sNativeName String_t* ___sNativeName_1; // System.String[] System.Globalization.CalendarData::saShortDates StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___saShortDates_2; // System.String[] System.Globalization.CalendarData::saYearMonths StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___saYearMonths_3; // System.String[] System.Globalization.CalendarData::saLongDates StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___saLongDates_4; // System.String System.Globalization.CalendarData::sMonthDay String_t* ___sMonthDay_5; // System.String[] System.Globalization.CalendarData::saEraNames StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___saEraNames_6; // System.String[] System.Globalization.CalendarData::saAbbrevEraNames StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___saAbbrevEraNames_7; // System.String[] System.Globalization.CalendarData::saAbbrevEnglishEraNames StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___saAbbrevEnglishEraNames_8; // System.String[] System.Globalization.CalendarData::saDayNames StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___saDayNames_9; // System.String[] System.Globalization.CalendarData::saAbbrevDayNames StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___saAbbrevDayNames_10; // System.String[] System.Globalization.CalendarData::saSuperShortDayNames StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___saSuperShortDayNames_11; // System.String[] System.Globalization.CalendarData::saMonthNames StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___saMonthNames_12; // System.String[] System.Globalization.CalendarData::saAbbrevMonthNames StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___saAbbrevMonthNames_13; // System.String[] System.Globalization.CalendarData::saMonthGenitiveNames StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___saMonthGenitiveNames_14; // System.String[] System.Globalization.CalendarData::saAbbrevMonthGenitiveNames StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___saAbbrevMonthGenitiveNames_15; // System.String[] System.Globalization.CalendarData::saLeapYearMonthNames StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___saLeapYearMonthNames_16; // System.Int32 System.Globalization.CalendarData::iTwoDigitYearMax int32_t ___iTwoDigitYearMax_17; // System.Int32 System.Globalization.CalendarData::iCurrentEra int32_t ___iCurrentEra_18; // System.Boolean System.Globalization.CalendarData::bUseUserOverrides bool ___bUseUserOverrides_19; public: inline static int32_t get_offset_of_sNativeName_1() { return static_cast<int32_t>(offsetof(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E, ___sNativeName_1)); } inline String_t* get_sNativeName_1() const { return ___sNativeName_1; } inline String_t** get_address_of_sNativeName_1() { return &___sNativeName_1; } inline void set_sNativeName_1(String_t* value) { ___sNativeName_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___sNativeName_1), (void*)value); } inline static int32_t get_offset_of_saShortDates_2() { return static_cast<int32_t>(offsetof(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E, ___saShortDates_2)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_saShortDates_2() const { return ___saShortDates_2; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_saShortDates_2() { return &___saShortDates_2; } inline void set_saShortDates_2(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___saShortDates_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___saShortDates_2), (void*)value); } inline static int32_t get_offset_of_saYearMonths_3() { return static_cast<int32_t>(offsetof(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E, ___saYearMonths_3)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_saYearMonths_3() const { return ___saYearMonths_3; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_saYearMonths_3() { return &___saYearMonths_3; } inline void set_saYearMonths_3(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___saYearMonths_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___saYearMonths_3), (void*)value); } inline static int32_t get_offset_of_saLongDates_4() { return static_cast<int32_t>(offsetof(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E, ___saLongDates_4)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_saLongDates_4() const { return ___saLongDates_4; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_saLongDates_4() { return &___saLongDates_4; } inline void set_saLongDates_4(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___saLongDates_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___saLongDates_4), (void*)value); } inline static int32_t get_offset_of_sMonthDay_5() { return static_cast<int32_t>(offsetof(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E, ___sMonthDay_5)); } inline String_t* get_sMonthDay_5() const { return ___sMonthDay_5; } inline String_t** get_address_of_sMonthDay_5() { return &___sMonthDay_5; } inline void set_sMonthDay_5(String_t* value) { ___sMonthDay_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___sMonthDay_5), (void*)value); } inline static int32_t get_offset_of_saEraNames_6() { return static_cast<int32_t>(offsetof(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E, ___saEraNames_6)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_saEraNames_6() const { return ___saEraNames_6; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_saEraNames_6() { return &___saEraNames_6; } inline void set_saEraNames_6(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___saEraNames_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___saEraNames_6), (void*)value); } inline static int32_t get_offset_of_saAbbrevEraNames_7() { return static_cast<int32_t>(offsetof(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E, ___saAbbrevEraNames_7)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_saAbbrevEraNames_7() const { return ___saAbbrevEraNames_7; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_saAbbrevEraNames_7() { return &___saAbbrevEraNames_7; } inline void set_saAbbrevEraNames_7(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___saAbbrevEraNames_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___saAbbrevEraNames_7), (void*)value); } inline static int32_t get_offset_of_saAbbrevEnglishEraNames_8() { return static_cast<int32_t>(offsetof(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E, ___saAbbrevEnglishEraNames_8)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_saAbbrevEnglishEraNames_8() const { return ___saAbbrevEnglishEraNames_8; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_saAbbrevEnglishEraNames_8() { return &___saAbbrevEnglishEraNames_8; } inline void set_saAbbrevEnglishEraNames_8(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___saAbbrevEnglishEraNames_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___saAbbrevEnglishEraNames_8), (void*)value); } inline static int32_t get_offset_of_saDayNames_9() { return static_cast<int32_t>(offsetof(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E, ___saDayNames_9)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_saDayNames_9() const { return ___saDayNames_9; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_saDayNames_9() { return &___saDayNames_9; } inline void set_saDayNames_9(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___saDayNames_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___saDayNames_9), (void*)value); } inline static int32_t get_offset_of_saAbbrevDayNames_10() { return static_cast<int32_t>(offsetof(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E, ___saAbbrevDayNames_10)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_saAbbrevDayNames_10() const { return ___saAbbrevDayNames_10; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_saAbbrevDayNames_10() { return &___saAbbrevDayNames_10; } inline void set_saAbbrevDayNames_10(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___saAbbrevDayNames_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___saAbbrevDayNames_10), (void*)value); } inline static int32_t get_offset_of_saSuperShortDayNames_11() { return static_cast<int32_t>(offsetof(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E, ___saSuperShortDayNames_11)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_saSuperShortDayNames_11() const { return ___saSuperShortDayNames_11; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_saSuperShortDayNames_11() { return &___saSuperShortDayNames_11; } inline void set_saSuperShortDayNames_11(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___saSuperShortDayNames_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___saSuperShortDayNames_11), (void*)value); } inline static int32_t get_offset_of_saMonthNames_12() { return static_cast<int32_t>(offsetof(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E, ___saMonthNames_12)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_saMonthNames_12() const { return ___saMonthNames_12; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_saMonthNames_12() { return &___saMonthNames_12; } inline void set_saMonthNames_12(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___saMonthNames_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___saMonthNames_12), (void*)value); } inline static int32_t get_offset_of_saAbbrevMonthNames_13() { return static_cast<int32_t>(offsetof(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E, ___saAbbrevMonthNames_13)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_saAbbrevMonthNames_13() const { return ___saAbbrevMonthNames_13; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_saAbbrevMonthNames_13() { return &___saAbbrevMonthNames_13; } inline void set_saAbbrevMonthNames_13(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___saAbbrevMonthNames_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___saAbbrevMonthNames_13), (void*)value); } inline static int32_t get_offset_of_saMonthGenitiveNames_14() { return static_cast<int32_t>(offsetof(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E, ___saMonthGenitiveNames_14)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_saMonthGenitiveNames_14() const { return ___saMonthGenitiveNames_14; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_saMonthGenitiveNames_14() { return &___saMonthGenitiveNames_14; } inline void set_saMonthGenitiveNames_14(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___saMonthGenitiveNames_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___saMonthGenitiveNames_14), (void*)value); } inline static int32_t get_offset_of_saAbbrevMonthGenitiveNames_15() { return static_cast<int32_t>(offsetof(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E, ___saAbbrevMonthGenitiveNames_15)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_saAbbrevMonthGenitiveNames_15() const { return ___saAbbrevMonthGenitiveNames_15; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_saAbbrevMonthGenitiveNames_15() { return &___saAbbrevMonthGenitiveNames_15; } inline void set_saAbbrevMonthGenitiveNames_15(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___saAbbrevMonthGenitiveNames_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___saAbbrevMonthGenitiveNames_15), (void*)value); } inline static int32_t get_offset_of_saLeapYearMonthNames_16() { return static_cast<int32_t>(offsetof(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E, ___saLeapYearMonthNames_16)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_saLeapYearMonthNames_16() const { return ___saLeapYearMonthNames_16; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_saLeapYearMonthNames_16() { return &___saLeapYearMonthNames_16; } inline void set_saLeapYearMonthNames_16(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___saLeapYearMonthNames_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___saLeapYearMonthNames_16), (void*)value); } inline static int32_t get_offset_of_iTwoDigitYearMax_17() { return static_cast<int32_t>(offsetof(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E, ___iTwoDigitYearMax_17)); } inline int32_t get_iTwoDigitYearMax_17() const { return ___iTwoDigitYearMax_17; } inline int32_t* get_address_of_iTwoDigitYearMax_17() { return &___iTwoDigitYearMax_17; } inline void set_iTwoDigitYearMax_17(int32_t value) { ___iTwoDigitYearMax_17 = value; } inline static int32_t get_offset_of_iCurrentEra_18() { return static_cast<int32_t>(offsetof(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E, ___iCurrentEra_18)); } inline int32_t get_iCurrentEra_18() const { return ___iCurrentEra_18; } inline int32_t* get_address_of_iCurrentEra_18() { return &___iCurrentEra_18; } inline void set_iCurrentEra_18(int32_t value) { ___iCurrentEra_18 = value; } inline static int32_t get_offset_of_bUseUserOverrides_19() { return static_cast<int32_t>(offsetof(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E, ___bUseUserOverrides_19)); } inline bool get_bUseUserOverrides_19() const { return ___bUseUserOverrides_19; } inline bool* get_address_of_bUseUserOverrides_19() { return &___bUseUserOverrides_19; } inline void set_bUseUserOverrides_19(bool value) { ___bUseUserOverrides_19 = value; } }; struct CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_StaticFields { public: // System.Globalization.CalendarData System.Globalization.CalendarData::Invariant CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * ___Invariant_20; public: inline static int32_t get_offset_of_Invariant_20() { return static_cast<int32_t>(offsetof(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_StaticFields, ___Invariant_20)); } inline CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * get_Invariant_20() const { return ___Invariant_20; } inline CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E ** get_address_of_Invariant_20() { return &___Invariant_20; } inline void set_Invariant_20(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * value) { ___Invariant_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___Invariant_20), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Globalization.CalendarData struct CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_marshaled_pinvoke { char* ___sNativeName_1; char** ___saShortDates_2; char** ___saYearMonths_3; char** ___saLongDates_4; char* ___sMonthDay_5; char** ___saEraNames_6; char** ___saAbbrevEraNames_7; char** ___saAbbrevEnglishEraNames_8; char** ___saDayNames_9; char** ___saAbbrevDayNames_10; char** ___saSuperShortDayNames_11; char** ___saMonthNames_12; char** ___saAbbrevMonthNames_13; char** ___saMonthGenitiveNames_14; char** ___saAbbrevMonthGenitiveNames_15; char** ___saLeapYearMonthNames_16; int32_t ___iTwoDigitYearMax_17; int32_t ___iCurrentEra_18; int32_t ___bUseUserOverrides_19; }; // Native definition for COM marshalling of System.Globalization.CalendarData struct CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_marshaled_com { Il2CppChar* ___sNativeName_1; Il2CppChar** ___saShortDates_2; Il2CppChar** ___saYearMonths_3; Il2CppChar** ___saLongDates_4; Il2CppChar* ___sMonthDay_5; Il2CppChar** ___saEraNames_6; Il2CppChar** ___saAbbrevEraNames_7; Il2CppChar** ___saAbbrevEnglishEraNames_8; Il2CppChar** ___saDayNames_9; Il2CppChar** ___saAbbrevDayNames_10; Il2CppChar** ___saSuperShortDayNames_11; Il2CppChar** ___saMonthNames_12; Il2CppChar** ___saAbbrevMonthNames_13; Il2CppChar** ___saMonthGenitiveNames_14; Il2CppChar** ___saAbbrevMonthGenitiveNames_15; Il2CppChar** ___saLeapYearMonthNames_16; int32_t ___iTwoDigitYearMax_17; int32_t ___iCurrentEra_18; int32_t ___bUseUserOverrides_19; }; // System.Globalization.CharUnicodeInfo struct CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F : public RuntimeObject { public: public: }; struct CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_StaticFields { public: // System.UInt16[] System.Globalization.CharUnicodeInfo::s_pCategoryLevel1Index UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* ___s_pCategoryLevel1Index_0; // System.Byte[] System.Globalization.CharUnicodeInfo::s_pCategoriesValue ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___s_pCategoriesValue_1; // System.UInt16[] System.Globalization.CharUnicodeInfo::s_pNumericLevel1Index UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* ___s_pNumericLevel1Index_2; // System.Byte[] System.Globalization.CharUnicodeInfo::s_pNumericValues ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___s_pNumericValues_3; // System.UInt16[] System.Globalization.CharUnicodeInfo::s_pDigitValues UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* ___s_pDigitValues_4; public: inline static int32_t get_offset_of_s_pCategoryLevel1Index_0() { return static_cast<int32_t>(offsetof(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_StaticFields, ___s_pCategoryLevel1Index_0)); } inline UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* get_s_pCategoryLevel1Index_0() const { return ___s_pCategoryLevel1Index_0; } inline UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E** get_address_of_s_pCategoryLevel1Index_0() { return &___s_pCategoryLevel1Index_0; } inline void set_s_pCategoryLevel1Index_0(UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* value) { ___s_pCategoryLevel1Index_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_pCategoryLevel1Index_0), (void*)value); } inline static int32_t get_offset_of_s_pCategoriesValue_1() { return static_cast<int32_t>(offsetof(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_StaticFields, ___s_pCategoriesValue_1)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_s_pCategoriesValue_1() const { return ___s_pCategoriesValue_1; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_s_pCategoriesValue_1() { return &___s_pCategoriesValue_1; } inline void set_s_pCategoriesValue_1(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___s_pCategoriesValue_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_pCategoriesValue_1), (void*)value); } inline static int32_t get_offset_of_s_pNumericLevel1Index_2() { return static_cast<int32_t>(offsetof(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_StaticFields, ___s_pNumericLevel1Index_2)); } inline UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* get_s_pNumericLevel1Index_2() const { return ___s_pNumericLevel1Index_2; } inline UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E** get_address_of_s_pNumericLevel1Index_2() { return &___s_pNumericLevel1Index_2; } inline void set_s_pNumericLevel1Index_2(UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* value) { ___s_pNumericLevel1Index_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_pNumericLevel1Index_2), (void*)value); } inline static int32_t get_offset_of_s_pNumericValues_3() { return static_cast<int32_t>(offsetof(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_StaticFields, ___s_pNumericValues_3)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_s_pNumericValues_3() const { return ___s_pNumericValues_3; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_s_pNumericValues_3() { return &___s_pNumericValues_3; } inline void set_s_pNumericValues_3(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___s_pNumericValues_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_pNumericValues_3), (void*)value); } inline static int32_t get_offset_of_s_pDigitValues_4() { return static_cast<int32_t>(offsetof(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_StaticFields, ___s_pDigitValues_4)); } inline UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* get_s_pDigitValues_4() const { return ___s_pDigitValues_4; } inline UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E** get_address_of_s_pDigitValues_4() { return &___s_pDigitValues_4; } inline void set_s_pDigitValues_4(UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* value) { ___s_pDigitValues_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_pDigitValues_4), (void*)value); } }; // System.Globalization.CharUnicodeInfo_Debug struct Debug_tDC29095ECA525AF90EC7761505C859A0A14E79DC : public RuntimeObject { public: public: }; // System.Globalization.CodePageDataItem struct CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB : public RuntimeObject { public: // System.Int32 System.Globalization.CodePageDataItem::m_dataIndex int32_t ___m_dataIndex_0; // System.Int32 System.Globalization.CodePageDataItem::m_uiFamilyCodePage int32_t ___m_uiFamilyCodePage_1; // System.UInt32 System.Globalization.CodePageDataItem::m_flags uint32_t ___m_flags_2; public: inline static int32_t get_offset_of_m_dataIndex_0() { return static_cast<int32_t>(offsetof(CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB, ___m_dataIndex_0)); } inline int32_t get_m_dataIndex_0() const { return ___m_dataIndex_0; } inline int32_t* get_address_of_m_dataIndex_0() { return &___m_dataIndex_0; } inline void set_m_dataIndex_0(int32_t value) { ___m_dataIndex_0 = value; } inline static int32_t get_offset_of_m_uiFamilyCodePage_1() { return static_cast<int32_t>(offsetof(CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB, ___m_uiFamilyCodePage_1)); } inline int32_t get_m_uiFamilyCodePage_1() const { return ___m_uiFamilyCodePage_1; } inline int32_t* get_address_of_m_uiFamilyCodePage_1() { return &___m_uiFamilyCodePage_1; } inline void set_m_uiFamilyCodePage_1(int32_t value) { ___m_uiFamilyCodePage_1 = value; } inline static int32_t get_offset_of_m_flags_2() { return static_cast<int32_t>(offsetof(CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB, ___m_flags_2)); } inline uint32_t get_m_flags_2() const { return ___m_flags_2; } inline uint32_t* get_address_of_m_flags_2() { return &___m_flags_2; } inline void set_m_flags_2(uint32_t value) { ___m_flags_2 = value; } }; struct CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB_StaticFields { public: // System.Char[] System.Globalization.CodePageDataItem::sep CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___sep_3; public: inline static int32_t get_offset_of_sep_3() { return static_cast<int32_t>(offsetof(CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB_StaticFields, ___sep_3)); } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_sep_3() const { return ___sep_3; } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_sep_3() { return &___sep_3; } inline void set_sep_3(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value) { ___sep_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___sep_3), (void*)value); } }; // System.Globalization.CultureData struct CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD : public RuntimeObject { public: // System.String System.Globalization.CultureData::sAM1159 String_t* ___sAM1159_0; // System.String System.Globalization.CultureData::sPM2359 String_t* ___sPM2359_1; // System.String System.Globalization.CultureData::sTimeSeparator String_t* ___sTimeSeparator_2; // System.String[] modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureData::saLongTimes StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___saLongTimes_3; // System.String[] modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureData::saShortTimes StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___saShortTimes_4; // System.Int32 System.Globalization.CultureData::iFirstDayOfWeek int32_t ___iFirstDayOfWeek_5; // System.Int32 System.Globalization.CultureData::iFirstWeekOfYear int32_t ___iFirstWeekOfYear_6; // System.Int32[] modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureData::waCalendars Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___waCalendars_7; // System.Globalization.CalendarData[] System.Globalization.CultureData::calendars CalendarDataU5BU5D_t97B534060896C542563D812BB6E4B3CB688B92AD* ___calendars_8; // System.String System.Globalization.CultureData::sISO639Language String_t* ___sISO639Language_9; // System.String System.Globalization.CultureData::sRealName String_t* ___sRealName_10; // System.Boolean System.Globalization.CultureData::bUseOverrides bool ___bUseOverrides_11; // System.Int32 System.Globalization.CultureData::calendarId int32_t ___calendarId_12; // System.Int32 System.Globalization.CultureData::numberIndex int32_t ___numberIndex_13; // System.Int32 System.Globalization.CultureData::iDefaultAnsiCodePage int32_t ___iDefaultAnsiCodePage_14; // System.Int32 System.Globalization.CultureData::iDefaultOemCodePage int32_t ___iDefaultOemCodePage_15; // System.Int32 System.Globalization.CultureData::iDefaultMacCodePage int32_t ___iDefaultMacCodePage_16; // System.Int32 System.Globalization.CultureData::iDefaultEbcdicCodePage int32_t ___iDefaultEbcdicCodePage_17; // System.Boolean System.Globalization.CultureData::isRightToLeft bool ___isRightToLeft_18; // System.String System.Globalization.CultureData::sListSeparator String_t* ___sListSeparator_19; public: inline static int32_t get_offset_of_sAM1159_0() { return static_cast<int32_t>(offsetof(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD, ___sAM1159_0)); } inline String_t* get_sAM1159_0() const { return ___sAM1159_0; } inline String_t** get_address_of_sAM1159_0() { return &___sAM1159_0; } inline void set_sAM1159_0(String_t* value) { ___sAM1159_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___sAM1159_0), (void*)value); } inline static int32_t get_offset_of_sPM2359_1() { return static_cast<int32_t>(offsetof(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD, ___sPM2359_1)); } inline String_t* get_sPM2359_1() const { return ___sPM2359_1; } inline String_t** get_address_of_sPM2359_1() { return &___sPM2359_1; } inline void set_sPM2359_1(String_t* value) { ___sPM2359_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___sPM2359_1), (void*)value); } inline static int32_t get_offset_of_sTimeSeparator_2() { return static_cast<int32_t>(offsetof(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD, ___sTimeSeparator_2)); } inline String_t* get_sTimeSeparator_2() const { return ___sTimeSeparator_2; } inline String_t** get_address_of_sTimeSeparator_2() { return &___sTimeSeparator_2; } inline void set_sTimeSeparator_2(String_t* value) { ___sTimeSeparator_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___sTimeSeparator_2), (void*)value); } inline static int32_t get_offset_of_saLongTimes_3() { return static_cast<int32_t>(offsetof(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD, ___saLongTimes_3)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_saLongTimes_3() const { return ___saLongTimes_3; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_saLongTimes_3() { return &___saLongTimes_3; } inline void set_saLongTimes_3(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___saLongTimes_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___saLongTimes_3), (void*)value); } inline static int32_t get_offset_of_saShortTimes_4() { return static_cast<int32_t>(offsetof(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD, ___saShortTimes_4)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_saShortTimes_4() const { return ___saShortTimes_4; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_saShortTimes_4() { return &___saShortTimes_4; } inline void set_saShortTimes_4(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___saShortTimes_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___saShortTimes_4), (void*)value); } inline static int32_t get_offset_of_iFirstDayOfWeek_5() { return static_cast<int32_t>(offsetof(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD, ___iFirstDayOfWeek_5)); } inline int32_t get_iFirstDayOfWeek_5() const { return ___iFirstDayOfWeek_5; } inline int32_t* get_address_of_iFirstDayOfWeek_5() { return &___iFirstDayOfWeek_5; } inline void set_iFirstDayOfWeek_5(int32_t value) { ___iFirstDayOfWeek_5 = value; } inline static int32_t get_offset_of_iFirstWeekOfYear_6() { return static_cast<int32_t>(offsetof(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD, ___iFirstWeekOfYear_6)); } inline int32_t get_iFirstWeekOfYear_6() const { return ___iFirstWeekOfYear_6; } inline int32_t* get_address_of_iFirstWeekOfYear_6() { return &___iFirstWeekOfYear_6; } inline void set_iFirstWeekOfYear_6(int32_t value) { ___iFirstWeekOfYear_6 = value; } inline static int32_t get_offset_of_waCalendars_7() { return static_cast<int32_t>(offsetof(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD, ___waCalendars_7)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_waCalendars_7() const { return ___waCalendars_7; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_waCalendars_7() { return &___waCalendars_7; } inline void set_waCalendars_7(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___waCalendars_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___waCalendars_7), (void*)value); } inline static int32_t get_offset_of_calendars_8() { return static_cast<int32_t>(offsetof(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD, ___calendars_8)); } inline CalendarDataU5BU5D_t97B534060896C542563D812BB6E4B3CB688B92AD* get_calendars_8() const { return ___calendars_8; } inline CalendarDataU5BU5D_t97B534060896C542563D812BB6E4B3CB688B92AD** get_address_of_calendars_8() { return &___calendars_8; } inline void set_calendars_8(CalendarDataU5BU5D_t97B534060896C542563D812BB6E4B3CB688B92AD* value) { ___calendars_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___calendars_8), (void*)value); } inline static int32_t get_offset_of_sISO639Language_9() { return static_cast<int32_t>(offsetof(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD, ___sISO639Language_9)); } inline String_t* get_sISO639Language_9() const { return ___sISO639Language_9; } inline String_t** get_address_of_sISO639Language_9() { return &___sISO639Language_9; } inline void set_sISO639Language_9(String_t* value) { ___sISO639Language_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___sISO639Language_9), (void*)value); } inline static int32_t get_offset_of_sRealName_10() { return static_cast<int32_t>(offsetof(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD, ___sRealName_10)); } inline String_t* get_sRealName_10() const { return ___sRealName_10; } inline String_t** get_address_of_sRealName_10() { return &___sRealName_10; } inline void set_sRealName_10(String_t* value) { ___sRealName_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___sRealName_10), (void*)value); } inline static int32_t get_offset_of_bUseOverrides_11() { return static_cast<int32_t>(offsetof(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD, ___bUseOverrides_11)); } inline bool get_bUseOverrides_11() const { return ___bUseOverrides_11; } inline bool* get_address_of_bUseOverrides_11() { return &___bUseOverrides_11; } inline void set_bUseOverrides_11(bool value) { ___bUseOverrides_11 = value; } inline static int32_t get_offset_of_calendarId_12() { return static_cast<int32_t>(offsetof(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD, ___calendarId_12)); } inline int32_t get_calendarId_12() const { return ___calendarId_12; } inline int32_t* get_address_of_calendarId_12() { return &___calendarId_12; } inline void set_calendarId_12(int32_t value) { ___calendarId_12 = value; } inline static int32_t get_offset_of_numberIndex_13() { return static_cast<int32_t>(offsetof(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD, ___numberIndex_13)); } inline int32_t get_numberIndex_13() const { return ___numberIndex_13; } inline int32_t* get_address_of_numberIndex_13() { return &___numberIndex_13; } inline void set_numberIndex_13(int32_t value) { ___numberIndex_13 = value; } inline static int32_t get_offset_of_iDefaultAnsiCodePage_14() { return static_cast<int32_t>(offsetof(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD, ___iDefaultAnsiCodePage_14)); } inline int32_t get_iDefaultAnsiCodePage_14() const { return ___iDefaultAnsiCodePage_14; } inline int32_t* get_address_of_iDefaultAnsiCodePage_14() { return &___iDefaultAnsiCodePage_14; } inline void set_iDefaultAnsiCodePage_14(int32_t value) { ___iDefaultAnsiCodePage_14 = value; } inline static int32_t get_offset_of_iDefaultOemCodePage_15() { return static_cast<int32_t>(offsetof(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD, ___iDefaultOemCodePage_15)); } inline int32_t get_iDefaultOemCodePage_15() const { return ___iDefaultOemCodePage_15; } inline int32_t* get_address_of_iDefaultOemCodePage_15() { return &___iDefaultOemCodePage_15; } inline void set_iDefaultOemCodePage_15(int32_t value) { ___iDefaultOemCodePage_15 = value; } inline static int32_t get_offset_of_iDefaultMacCodePage_16() { return static_cast<int32_t>(offsetof(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD, ___iDefaultMacCodePage_16)); } inline int32_t get_iDefaultMacCodePage_16() const { return ___iDefaultMacCodePage_16; } inline int32_t* get_address_of_iDefaultMacCodePage_16() { return &___iDefaultMacCodePage_16; } inline void set_iDefaultMacCodePage_16(int32_t value) { ___iDefaultMacCodePage_16 = value; } inline static int32_t get_offset_of_iDefaultEbcdicCodePage_17() { return static_cast<int32_t>(offsetof(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD, ___iDefaultEbcdicCodePage_17)); } inline int32_t get_iDefaultEbcdicCodePage_17() const { return ___iDefaultEbcdicCodePage_17; } inline int32_t* get_address_of_iDefaultEbcdicCodePage_17() { return &___iDefaultEbcdicCodePage_17; } inline void set_iDefaultEbcdicCodePage_17(int32_t value) { ___iDefaultEbcdicCodePage_17 = value; } inline static int32_t get_offset_of_isRightToLeft_18() { return static_cast<int32_t>(offsetof(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD, ___isRightToLeft_18)); } inline bool get_isRightToLeft_18() const { return ___isRightToLeft_18; } inline bool* get_address_of_isRightToLeft_18() { return &___isRightToLeft_18; } inline void set_isRightToLeft_18(bool value) { ___isRightToLeft_18 = value; } inline static int32_t get_offset_of_sListSeparator_19() { return static_cast<int32_t>(offsetof(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD, ___sListSeparator_19)); } inline String_t* get_sListSeparator_19() const { return ___sListSeparator_19; } inline String_t** get_address_of_sListSeparator_19() { return &___sListSeparator_19; } inline void set_sListSeparator_19(String_t* value) { ___sListSeparator_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___sListSeparator_19), (void*)value); } }; struct CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_StaticFields { public: // System.Globalization.CultureData System.Globalization.CultureData::s_Invariant CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * ___s_Invariant_20; public: inline static int32_t get_offset_of_s_Invariant_20() { return static_cast<int32_t>(offsetof(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_StaticFields, ___s_Invariant_20)); } inline CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * get_s_Invariant_20() const { return ___s_Invariant_20; } inline CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD ** get_address_of_s_Invariant_20() { return &___s_Invariant_20; } inline void set_s_Invariant_20(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * value) { ___s_Invariant_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_Invariant_20), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Globalization.CultureData struct CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_pinvoke { char* ___sAM1159_0; char* ___sPM2359_1; char* ___sTimeSeparator_2; char** ___saLongTimes_3; char** ___saShortTimes_4; int32_t ___iFirstDayOfWeek_5; int32_t ___iFirstWeekOfYear_6; Il2CppSafeArray/*NONE*/* ___waCalendars_7; CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_marshaled_pinvoke** ___calendars_8; char* ___sISO639Language_9; char* ___sRealName_10; int32_t ___bUseOverrides_11; int32_t ___calendarId_12; int32_t ___numberIndex_13; int32_t ___iDefaultAnsiCodePage_14; int32_t ___iDefaultOemCodePage_15; int32_t ___iDefaultMacCodePage_16; int32_t ___iDefaultEbcdicCodePage_17; int32_t ___isRightToLeft_18; char* ___sListSeparator_19; }; // Native definition for COM marshalling of System.Globalization.CultureData struct CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_com { Il2CppChar* ___sAM1159_0; Il2CppChar* ___sPM2359_1; Il2CppChar* ___sTimeSeparator_2; Il2CppChar** ___saLongTimes_3; Il2CppChar** ___saShortTimes_4; int32_t ___iFirstDayOfWeek_5; int32_t ___iFirstWeekOfYear_6; Il2CppSafeArray/*NONE*/* ___waCalendars_7; CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_marshaled_com** ___calendars_8; Il2CppChar* ___sISO639Language_9; Il2CppChar* ___sRealName_10; int32_t ___bUseOverrides_11; int32_t ___calendarId_12; int32_t ___numberIndex_13; int32_t ___iDefaultAnsiCodePage_14; int32_t ___iDefaultOemCodePage_15; int32_t ___iDefaultMacCodePage_16; int32_t ___iDefaultEbcdicCodePage_17; int32_t ___isRightToLeft_18; Il2CppChar* ___sListSeparator_19; }; // System.Globalization.CultureInfo struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F : public RuntimeObject { public: // System.Boolean System.Globalization.CultureInfo::m_isReadOnly bool ___m_isReadOnly_3; // System.Int32 System.Globalization.CultureInfo::cultureID int32_t ___cultureID_4; // System.Int32 System.Globalization.CultureInfo::parent_lcid int32_t ___parent_lcid_5; // System.Int32 System.Globalization.CultureInfo::datetime_index int32_t ___datetime_index_6; // System.Int32 System.Globalization.CultureInfo::number_index int32_t ___number_index_7; // System.Int32 System.Globalization.CultureInfo::default_calendar_type int32_t ___default_calendar_type_8; // System.Boolean System.Globalization.CultureInfo::m_useUserOverride bool ___m_useUserOverride_9; // System.Globalization.NumberFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::numInfo NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numInfo_10; // System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::dateTimeInfo DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dateTimeInfo_11; // System.Globalization.TextInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::textInfo TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * ___textInfo_12; // System.String System.Globalization.CultureInfo::m_name String_t* ___m_name_13; // System.String System.Globalization.CultureInfo::englishname String_t* ___englishname_14; // System.String System.Globalization.CultureInfo::nativename String_t* ___nativename_15; // System.String System.Globalization.CultureInfo::iso3lang String_t* ___iso3lang_16; // System.String System.Globalization.CultureInfo::iso2lang String_t* ___iso2lang_17; // System.String System.Globalization.CultureInfo::win3lang String_t* ___win3lang_18; // System.String System.Globalization.CultureInfo::territory String_t* ___territory_19; // System.String[] System.Globalization.CultureInfo::native_calendar_names StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___native_calendar_names_20; // System.Globalization.CompareInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::compareInfo CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ___compareInfo_21; // System.Void* System.Globalization.CultureInfo::textinfo_data void* ___textinfo_data_22; // System.Int32 System.Globalization.CultureInfo::m_dataItem int32_t ___m_dataItem_23; // System.Globalization.Calendar System.Globalization.CultureInfo::calendar Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * ___calendar_24; // System.Globalization.CultureInfo System.Globalization.CultureInfo::parent_culture CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___parent_culture_25; // System.Boolean System.Globalization.CultureInfo::constructed bool ___constructed_26; // System.Byte[] System.Globalization.CultureInfo::cached_serialized_form ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___cached_serialized_form_27; // System.Globalization.CultureData System.Globalization.CultureInfo::m_cultureData CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * ___m_cultureData_28; // System.Boolean System.Globalization.CultureInfo::m_isInherited bool ___m_isInherited_29; public: inline static int32_t get_offset_of_m_isReadOnly_3() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_isReadOnly_3)); } inline bool get_m_isReadOnly_3() const { return ___m_isReadOnly_3; } inline bool* get_address_of_m_isReadOnly_3() { return &___m_isReadOnly_3; } inline void set_m_isReadOnly_3(bool value) { ___m_isReadOnly_3 = value; } inline static int32_t get_offset_of_cultureID_4() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___cultureID_4)); } inline int32_t get_cultureID_4() const { return ___cultureID_4; } inline int32_t* get_address_of_cultureID_4() { return &___cultureID_4; } inline void set_cultureID_4(int32_t value) { ___cultureID_4 = value; } inline static int32_t get_offset_of_parent_lcid_5() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___parent_lcid_5)); } inline int32_t get_parent_lcid_5() const { return ___parent_lcid_5; } inline int32_t* get_address_of_parent_lcid_5() { return &___parent_lcid_5; } inline void set_parent_lcid_5(int32_t value) { ___parent_lcid_5 = value; } inline static int32_t get_offset_of_datetime_index_6() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___datetime_index_6)); } inline int32_t get_datetime_index_6() const { return ___datetime_index_6; } inline int32_t* get_address_of_datetime_index_6() { return &___datetime_index_6; } inline void set_datetime_index_6(int32_t value) { ___datetime_index_6 = value; } inline static int32_t get_offset_of_number_index_7() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___number_index_7)); } inline int32_t get_number_index_7() const { return ___number_index_7; } inline int32_t* get_address_of_number_index_7() { return &___number_index_7; } inline void set_number_index_7(int32_t value) { ___number_index_7 = value; } inline static int32_t get_offset_of_default_calendar_type_8() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___default_calendar_type_8)); } inline int32_t get_default_calendar_type_8() const { return ___default_calendar_type_8; } inline int32_t* get_address_of_default_calendar_type_8() { return &___default_calendar_type_8; } inline void set_default_calendar_type_8(int32_t value) { ___default_calendar_type_8 = value; } inline static int32_t get_offset_of_m_useUserOverride_9() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_useUserOverride_9)); } inline bool get_m_useUserOverride_9() const { return ___m_useUserOverride_9; } inline bool* get_address_of_m_useUserOverride_9() { return &___m_useUserOverride_9; } inline void set_m_useUserOverride_9(bool value) { ___m_useUserOverride_9 = value; } inline static int32_t get_offset_of_numInfo_10() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___numInfo_10)); } inline NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * get_numInfo_10() const { return ___numInfo_10; } inline NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 ** get_address_of_numInfo_10() { return &___numInfo_10; } inline void set_numInfo_10(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * value) { ___numInfo_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___numInfo_10), (void*)value); } inline static int32_t get_offset_of_dateTimeInfo_11() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___dateTimeInfo_11)); } inline DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * get_dateTimeInfo_11() const { return ___dateTimeInfo_11; } inline DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** get_address_of_dateTimeInfo_11() { return &___dateTimeInfo_11; } inline void set_dateTimeInfo_11(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * value) { ___dateTimeInfo_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___dateTimeInfo_11), (void*)value); } inline static int32_t get_offset_of_textInfo_12() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___textInfo_12)); } inline TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * get_textInfo_12() const { return ___textInfo_12; } inline TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 ** get_address_of_textInfo_12() { return &___textInfo_12; } inline void set_textInfo_12(TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * value) { ___textInfo_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___textInfo_12), (void*)value); } inline static int32_t get_offset_of_m_name_13() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_name_13)); } inline String_t* get_m_name_13() const { return ___m_name_13; } inline String_t** get_address_of_m_name_13() { return &___m_name_13; } inline void set_m_name_13(String_t* value) { ___m_name_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_name_13), (void*)value); } inline static int32_t get_offset_of_englishname_14() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___englishname_14)); } inline String_t* get_englishname_14() const { return ___englishname_14; } inline String_t** get_address_of_englishname_14() { return &___englishname_14; } inline void set_englishname_14(String_t* value) { ___englishname_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___englishname_14), (void*)value); } inline static int32_t get_offset_of_nativename_15() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___nativename_15)); } inline String_t* get_nativename_15() const { return ___nativename_15; } inline String_t** get_address_of_nativename_15() { return &___nativename_15; } inline void set_nativename_15(String_t* value) { ___nativename_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___nativename_15), (void*)value); } inline static int32_t get_offset_of_iso3lang_16() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___iso3lang_16)); } inline String_t* get_iso3lang_16() const { return ___iso3lang_16; } inline String_t** get_address_of_iso3lang_16() { return &___iso3lang_16; } inline void set_iso3lang_16(String_t* value) { ___iso3lang_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___iso3lang_16), (void*)value); } inline static int32_t get_offset_of_iso2lang_17() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___iso2lang_17)); } inline String_t* get_iso2lang_17() const { return ___iso2lang_17; } inline String_t** get_address_of_iso2lang_17() { return &___iso2lang_17; } inline void set_iso2lang_17(String_t* value) { ___iso2lang_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___iso2lang_17), (void*)value); } inline static int32_t get_offset_of_win3lang_18() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___win3lang_18)); } inline String_t* get_win3lang_18() const { return ___win3lang_18; } inline String_t** get_address_of_win3lang_18() { return &___win3lang_18; } inline void set_win3lang_18(String_t* value) { ___win3lang_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___win3lang_18), (void*)value); } inline static int32_t get_offset_of_territory_19() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___territory_19)); } inline String_t* get_territory_19() const { return ___territory_19; } inline String_t** get_address_of_territory_19() { return &___territory_19; } inline void set_territory_19(String_t* value) { ___territory_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___territory_19), (void*)value); } inline static int32_t get_offset_of_native_calendar_names_20() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___native_calendar_names_20)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_native_calendar_names_20() const { return ___native_calendar_names_20; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_native_calendar_names_20() { return &___native_calendar_names_20; } inline void set_native_calendar_names_20(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___native_calendar_names_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___native_calendar_names_20), (void*)value); } inline static int32_t get_offset_of_compareInfo_21() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___compareInfo_21)); } inline CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * get_compareInfo_21() const { return ___compareInfo_21; } inline CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 ** get_address_of_compareInfo_21() { return &___compareInfo_21; } inline void set_compareInfo_21(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * value) { ___compareInfo_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___compareInfo_21), (void*)value); } inline static int32_t get_offset_of_textinfo_data_22() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___textinfo_data_22)); } inline void* get_textinfo_data_22() const { return ___textinfo_data_22; } inline void** get_address_of_textinfo_data_22() { return &___textinfo_data_22; } inline void set_textinfo_data_22(void* value) { ___textinfo_data_22 = value; } inline static int32_t get_offset_of_m_dataItem_23() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_dataItem_23)); } inline int32_t get_m_dataItem_23() const { return ___m_dataItem_23; } inline int32_t* get_address_of_m_dataItem_23() { return &___m_dataItem_23; } inline void set_m_dataItem_23(int32_t value) { ___m_dataItem_23 = value; } inline static int32_t get_offset_of_calendar_24() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___calendar_24)); } inline Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * get_calendar_24() const { return ___calendar_24; } inline Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 ** get_address_of_calendar_24() { return &___calendar_24; } inline void set_calendar_24(Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * value) { ___calendar_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___calendar_24), (void*)value); } inline static int32_t get_offset_of_parent_culture_25() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___parent_culture_25)); } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_parent_culture_25() const { return ___parent_culture_25; } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_parent_culture_25() { return &___parent_culture_25; } inline void set_parent_culture_25(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value) { ___parent_culture_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___parent_culture_25), (void*)value); } inline static int32_t get_offset_of_constructed_26() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___constructed_26)); } inline bool get_constructed_26() const { return ___constructed_26; } inline bool* get_address_of_constructed_26() { return &___constructed_26; } inline void set_constructed_26(bool value) { ___constructed_26 = value; } inline static int32_t get_offset_of_cached_serialized_form_27() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___cached_serialized_form_27)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_cached_serialized_form_27() const { return ___cached_serialized_form_27; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_cached_serialized_form_27() { return &___cached_serialized_form_27; } inline void set_cached_serialized_form_27(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___cached_serialized_form_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___cached_serialized_form_27), (void*)value); } inline static int32_t get_offset_of_m_cultureData_28() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_cultureData_28)); } inline CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * get_m_cultureData_28() const { return ___m_cultureData_28; } inline CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD ** get_address_of_m_cultureData_28() { return &___m_cultureData_28; } inline void set_m_cultureData_28(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * value) { ___m_cultureData_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_cultureData_28), (void*)value); } inline static int32_t get_offset_of_m_isInherited_29() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_isInherited_29)); } inline bool get_m_isInherited_29() const { return ___m_isInherited_29; } inline bool* get_address_of_m_isInherited_29() { return &___m_isInherited_29; } inline void set_m_isInherited_29(bool value) { ___m_isInherited_29 = value; } }; struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields { public: // System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::invariant_culture_info CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___invariant_culture_info_0; // System.Object System.Globalization.CultureInfo::shared_table_lock RuntimeObject * ___shared_table_lock_1; // System.Globalization.CultureInfo System.Globalization.CultureInfo::default_current_culture CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___default_current_culture_2; // System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentUICulture CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___s_DefaultThreadCurrentUICulture_33; // System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentCulture CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___s_DefaultThreadCurrentCulture_34; // System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_number Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B * ___shared_by_number_35; // System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_name Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25 * ___shared_by_name_36; // System.Boolean System.Globalization.CultureInfo::IsTaiwanSku bool ___IsTaiwanSku_37; public: inline static int32_t get_offset_of_invariant_culture_info_0() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___invariant_culture_info_0)); } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_invariant_culture_info_0() const { return ___invariant_culture_info_0; } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_invariant_culture_info_0() { return &___invariant_culture_info_0; } inline void set_invariant_culture_info_0(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value) { ___invariant_culture_info_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___invariant_culture_info_0), (void*)value); } inline static int32_t get_offset_of_shared_table_lock_1() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___shared_table_lock_1)); } inline RuntimeObject * get_shared_table_lock_1() const { return ___shared_table_lock_1; } inline RuntimeObject ** get_address_of_shared_table_lock_1() { return &___shared_table_lock_1; } inline void set_shared_table_lock_1(RuntimeObject * value) { ___shared_table_lock_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___shared_table_lock_1), (void*)value); } inline static int32_t get_offset_of_default_current_culture_2() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___default_current_culture_2)); } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_default_current_culture_2() const { return ___default_current_culture_2; } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_default_current_culture_2() { return &___default_current_culture_2; } inline void set_default_current_culture_2(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value) { ___default_current_culture_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___default_current_culture_2), (void*)value); } inline static int32_t get_offset_of_s_DefaultThreadCurrentUICulture_33() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___s_DefaultThreadCurrentUICulture_33)); } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_s_DefaultThreadCurrentUICulture_33() const { return ___s_DefaultThreadCurrentUICulture_33; } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_s_DefaultThreadCurrentUICulture_33() { return &___s_DefaultThreadCurrentUICulture_33; } inline void set_s_DefaultThreadCurrentUICulture_33(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value) { ___s_DefaultThreadCurrentUICulture_33 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_DefaultThreadCurrentUICulture_33), (void*)value); } inline static int32_t get_offset_of_s_DefaultThreadCurrentCulture_34() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___s_DefaultThreadCurrentCulture_34)); } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_s_DefaultThreadCurrentCulture_34() const { return ___s_DefaultThreadCurrentCulture_34; } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_s_DefaultThreadCurrentCulture_34() { return &___s_DefaultThreadCurrentCulture_34; } inline void set_s_DefaultThreadCurrentCulture_34(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value) { ___s_DefaultThreadCurrentCulture_34 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_DefaultThreadCurrentCulture_34), (void*)value); } inline static int32_t get_offset_of_shared_by_number_35() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___shared_by_number_35)); } inline Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B * get_shared_by_number_35() const { return ___shared_by_number_35; } inline Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B ** get_address_of_shared_by_number_35() { return &___shared_by_number_35; } inline void set_shared_by_number_35(Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B * value) { ___shared_by_number_35 = value; Il2CppCodeGenWriteBarrier((void**)(&___shared_by_number_35), (void*)value); } inline static int32_t get_offset_of_shared_by_name_36() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___shared_by_name_36)); } inline Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25 * get_shared_by_name_36() const { return ___shared_by_name_36; } inline Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25 ** get_address_of_shared_by_name_36() { return &___shared_by_name_36; } inline void set_shared_by_name_36(Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25 * value) { ___shared_by_name_36 = value; Il2CppCodeGenWriteBarrier((void**)(&___shared_by_name_36), (void*)value); } inline static int32_t get_offset_of_IsTaiwanSku_37() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___IsTaiwanSku_37)); } inline bool get_IsTaiwanSku_37() const { return ___IsTaiwanSku_37; } inline bool* get_address_of_IsTaiwanSku_37() { return &___IsTaiwanSku_37; } inline void set_IsTaiwanSku_37(bool value) { ___IsTaiwanSku_37 = value; } }; // Native definition for P/Invoke marshalling of System.Globalization.CultureInfo struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_pinvoke { int32_t ___m_isReadOnly_3; int32_t ___cultureID_4; int32_t ___parent_lcid_5; int32_t ___datetime_index_6; int32_t ___number_index_7; int32_t ___default_calendar_type_8; int32_t ___m_useUserOverride_9; NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numInfo_10; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dateTimeInfo_11; TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * ___textInfo_12; char* ___m_name_13; char* ___englishname_14; char* ___nativename_15; char* ___iso3lang_16; char* ___iso2lang_17; char* ___win3lang_18; char* ___territory_19; char** ___native_calendar_names_20; CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ___compareInfo_21; void* ___textinfo_data_22; int32_t ___m_dataItem_23; Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * ___calendar_24; CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_pinvoke* ___parent_culture_25; int32_t ___constructed_26; Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27; CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_pinvoke* ___m_cultureData_28; int32_t ___m_isInherited_29; }; // Native definition for COM marshalling of System.Globalization.CultureInfo struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_com { int32_t ___m_isReadOnly_3; int32_t ___cultureID_4; int32_t ___parent_lcid_5; int32_t ___datetime_index_6; int32_t ___number_index_7; int32_t ___default_calendar_type_8; int32_t ___m_useUserOverride_9; NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numInfo_10; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dateTimeInfo_11; TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * ___textInfo_12; Il2CppChar* ___m_name_13; Il2CppChar* ___englishname_14; Il2CppChar* ___nativename_15; Il2CppChar* ___iso3lang_16; Il2CppChar* ___iso2lang_17; Il2CppChar* ___win3lang_18; Il2CppChar* ___territory_19; Il2CppChar** ___native_calendar_names_20; CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ___compareInfo_21; void* ___textinfo_data_22; int32_t ___m_dataItem_23; Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * ___calendar_24; CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_com* ___parent_culture_25; int32_t ___constructed_26; Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27; CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_com* ___m_cultureData_28; int32_t ___m_isInherited_29; }; // System.Globalization.EncodingTable struct EncodingTable_t22A8552898CDE776E92D442768930CF463B8032D : public RuntimeObject { public: public: }; struct EncodingTable_t22A8552898CDE776E92D442768930CF463B8032D_StaticFields { public: // System.Globalization.InternalEncodingDataItem[] System.Globalization.EncodingTable::encodingDataPtr InternalEncodingDataItemU5BU5D_t0579A8C6FC0871F0230E51290511BF0C9C706C68* ___encodingDataPtr_0; // System.Globalization.InternalCodePageDataItem[] System.Globalization.EncodingTable::codePageDataPtr InternalCodePageDataItemU5BU5D_t94CE8C20C6D99D9F2F13E2E7FA2C44007AE27834* ___codePageDataPtr_1; // System.Int32 System.Globalization.EncodingTable::lastEncodingItem int32_t ___lastEncodingItem_2; // System.Collections.Hashtable System.Globalization.EncodingTable::hashByName Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___hashByName_3; // System.Collections.Hashtable System.Globalization.EncodingTable::hashByCodePage Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___hashByCodePage_4; public: inline static int32_t get_offset_of_encodingDataPtr_0() { return static_cast<int32_t>(offsetof(EncodingTable_t22A8552898CDE776E92D442768930CF463B8032D_StaticFields, ___encodingDataPtr_0)); } inline InternalEncodingDataItemU5BU5D_t0579A8C6FC0871F0230E51290511BF0C9C706C68* get_encodingDataPtr_0() const { return ___encodingDataPtr_0; } inline InternalEncodingDataItemU5BU5D_t0579A8C6FC0871F0230E51290511BF0C9C706C68** get_address_of_encodingDataPtr_0() { return &___encodingDataPtr_0; } inline void set_encodingDataPtr_0(InternalEncodingDataItemU5BU5D_t0579A8C6FC0871F0230E51290511BF0C9C706C68* value) { ___encodingDataPtr_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___encodingDataPtr_0), (void*)value); } inline static int32_t get_offset_of_codePageDataPtr_1() { return static_cast<int32_t>(offsetof(EncodingTable_t22A8552898CDE776E92D442768930CF463B8032D_StaticFields, ___codePageDataPtr_1)); } inline InternalCodePageDataItemU5BU5D_t94CE8C20C6D99D9F2F13E2E7FA2C44007AE27834* get_codePageDataPtr_1() const { return ___codePageDataPtr_1; } inline InternalCodePageDataItemU5BU5D_t94CE8C20C6D99D9F2F13E2E7FA2C44007AE27834** get_address_of_codePageDataPtr_1() { return &___codePageDataPtr_1; } inline void set_codePageDataPtr_1(InternalCodePageDataItemU5BU5D_t94CE8C20C6D99D9F2F13E2E7FA2C44007AE27834* value) { ___codePageDataPtr_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___codePageDataPtr_1), (void*)value); } inline static int32_t get_offset_of_lastEncodingItem_2() { return static_cast<int32_t>(offsetof(EncodingTable_t22A8552898CDE776E92D442768930CF463B8032D_StaticFields, ___lastEncodingItem_2)); } inline int32_t get_lastEncodingItem_2() const { return ___lastEncodingItem_2; } inline int32_t* get_address_of_lastEncodingItem_2() { return &___lastEncodingItem_2; } inline void set_lastEncodingItem_2(int32_t value) { ___lastEncodingItem_2 = value; } inline static int32_t get_offset_of_hashByName_3() { return static_cast<int32_t>(offsetof(EncodingTable_t22A8552898CDE776E92D442768930CF463B8032D_StaticFields, ___hashByName_3)); } inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_hashByName_3() const { return ___hashByName_3; } inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_hashByName_3() { return &___hashByName_3; } inline void set_hashByName_3(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value) { ___hashByName_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___hashByName_3), (void*)value); } inline static int32_t get_offset_of_hashByCodePage_4() { return static_cast<int32_t>(offsetof(EncodingTable_t22A8552898CDE776E92D442768930CF463B8032D_StaticFields, ___hashByCodePage_4)); } inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_hashByCodePage_4() const { return ___hashByCodePage_4; } inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_hashByCodePage_4() { return &___hashByCodePage_4; } inline void set_hashByCodePage_4(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value) { ___hashByCodePage_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___hashByCodePage_4), (void*)value); } }; // System.MarshalByRefObject struct MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF : public RuntimeObject { public: // System.Object System.MarshalByRefObject::_identity RuntimeObject * ____identity_0; public: inline static int32_t get_offset_of__identity_0() { return static_cast<int32_t>(offsetof(MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF, ____identity_0)); } inline RuntimeObject * get__identity_0() const { return ____identity_0; } inline RuntimeObject ** get_address_of__identity_0() { return &____identity_0; } inline void set__identity_0(RuntimeObject * value) { ____identity_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____identity_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.MarshalByRefObject struct MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_pinvoke { Il2CppIUnknown* ____identity_0; }; // Native definition for COM marshalling of System.MarshalByRefObject struct MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_com { Il2CppIUnknown* ____identity_0; }; // System.Reflection.MemberInfo struct MemberInfo_t : public RuntimeObject { public: public: }; // System.Resources.ResourceSet struct ResourceSet_t10641C682C1DFE03D88203324E6C4846273AF3EE : public RuntimeObject { public: // System.Resources.IResourceReader System.Resources.ResourceSet::Reader RuntimeObject* ___Reader_0; // System.Collections.Hashtable System.Resources.ResourceSet::Table Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___Table_1; // System.Collections.Hashtable System.Resources.ResourceSet::_caseInsensitiveTable Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ____caseInsensitiveTable_2; public: inline static int32_t get_offset_of_Reader_0() { return static_cast<int32_t>(offsetof(ResourceSet_t10641C682C1DFE03D88203324E6C4846273AF3EE, ___Reader_0)); } inline RuntimeObject* get_Reader_0() const { return ___Reader_0; } inline RuntimeObject** get_address_of_Reader_0() { return &___Reader_0; } inline void set_Reader_0(RuntimeObject* value) { ___Reader_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Reader_0), (void*)value); } inline static int32_t get_offset_of_Table_1() { return static_cast<int32_t>(offsetof(ResourceSet_t10641C682C1DFE03D88203324E6C4846273AF3EE, ___Table_1)); } inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_Table_1() const { return ___Table_1; } inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_Table_1() { return &___Table_1; } inline void set_Table_1(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value) { ___Table_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Table_1), (void*)value); } inline static int32_t get_offset_of__caseInsensitiveTable_2() { return static_cast<int32_t>(offsetof(ResourceSet_t10641C682C1DFE03D88203324E6C4846273AF3EE, ____caseInsensitiveTable_2)); } inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get__caseInsensitiveTable_2() const { return ____caseInsensitiveTable_2; } inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of__caseInsensitiveTable_2() { return &____caseInsensitiveTable_2; } inline void set__caseInsensitiveTable_2(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value) { ____caseInsensitiveTable_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____caseInsensitiveTable_2), (void*)value); } }; // System.Runtime.ConstrainedExecution.CriticalFinalizerObject struct CriticalFinalizerObject_t8B006E1DEE084E781F5C0F3283E9226E28894DD9 : public RuntimeObject { public: public: }; // System.Runtime.ExceptionServices.ExceptionDispatchInfo struct ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A : public RuntimeObject { public: // System.Exception System.Runtime.ExceptionServices.ExceptionDispatchInfo::m_Exception Exception_t * ___m_Exception_0; // System.Object System.Runtime.ExceptionServices.ExceptionDispatchInfo::m_stackTrace RuntimeObject * ___m_stackTrace_1; public: inline static int32_t get_offset_of_m_Exception_0() { return static_cast<int32_t>(offsetof(ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A, ___m_Exception_0)); } inline Exception_t * get_m_Exception_0() const { return ___m_Exception_0; } inline Exception_t ** get_address_of_m_Exception_0() { return &___m_Exception_0; } inline void set_m_Exception_0(Exception_t * value) { ___m_Exception_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Exception_0), (void*)value); } inline static int32_t get_offset_of_m_stackTrace_1() { return static_cast<int32_t>(offsetof(ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A, ___m_stackTrace_1)); } inline RuntimeObject * get_m_stackTrace_1() const { return ___m_stackTrace_1; } inline RuntimeObject ** get_address_of_m_stackTrace_1() { return &___m_stackTrace_1; } inline void set_m_stackTrace_1(RuntimeObject * value) { ___m_stackTrace_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_stackTrace_1), (void*)value); } }; // System.Runtime.Serialization.SafeSerializationManager struct SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 : public RuntimeObject { public: // System.Collections.Generic.IList`1<System.Object> System.Runtime.Serialization.SafeSerializationManager::m_serializedStates RuntimeObject* ___m_serializedStates_0; // System.Runtime.Serialization.SerializationInfo System.Runtime.Serialization.SafeSerializationManager::m_savedSerializationInfo SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___m_savedSerializationInfo_1; // System.Object System.Runtime.Serialization.SafeSerializationManager::m_realObject RuntimeObject * ___m_realObject_2; // System.RuntimeType System.Runtime.Serialization.SafeSerializationManager::m_realType RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___m_realType_3; // System.EventHandler`1<System.Runtime.Serialization.SafeSerializationEventArgs> System.Runtime.Serialization.SafeSerializationManager::SerializeObjectState EventHandler_1_t2FAACD646FEA53CF34DD74BB21333F2B9175DD81 * ___SerializeObjectState_4; public: inline static int32_t get_offset_of_m_serializedStates_0() { return static_cast<int32_t>(offsetof(SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770, ___m_serializedStates_0)); } inline RuntimeObject* get_m_serializedStates_0() const { return ___m_serializedStates_0; } inline RuntimeObject** get_address_of_m_serializedStates_0() { return &___m_serializedStates_0; } inline void set_m_serializedStates_0(RuntimeObject* value) { ___m_serializedStates_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_serializedStates_0), (void*)value); } inline static int32_t get_offset_of_m_savedSerializationInfo_1() { return static_cast<int32_t>(offsetof(SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770, ___m_savedSerializationInfo_1)); } inline SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * get_m_savedSerializationInfo_1() const { return ___m_savedSerializationInfo_1; } inline SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 ** get_address_of_m_savedSerializationInfo_1() { return &___m_savedSerializationInfo_1; } inline void set_m_savedSerializationInfo_1(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * value) { ___m_savedSerializationInfo_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_savedSerializationInfo_1), (void*)value); } inline static int32_t get_offset_of_m_realObject_2() { return static_cast<int32_t>(offsetof(SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770, ___m_realObject_2)); } inline RuntimeObject * get_m_realObject_2() const { return ___m_realObject_2; } inline RuntimeObject ** get_address_of_m_realObject_2() { return &___m_realObject_2; } inline void set_m_realObject_2(RuntimeObject * value) { ___m_realObject_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_realObject_2), (void*)value); } inline static int32_t get_offset_of_m_realType_3() { return static_cast<int32_t>(offsetof(SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770, ___m_realType_3)); } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_m_realType_3() const { return ___m_realType_3; } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_m_realType_3() { return &___m_realType_3; } inline void set_m_realType_3(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value) { ___m_realType_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_realType_3), (void*)value); } inline static int32_t get_offset_of_SerializeObjectState_4() { return static_cast<int32_t>(offsetof(SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770, ___SerializeObjectState_4)); } inline EventHandler_1_t2FAACD646FEA53CF34DD74BB21333F2B9175DD81 * get_SerializeObjectState_4() const { return ___SerializeObjectState_4; } inline EventHandler_1_t2FAACD646FEA53CF34DD74BB21333F2B9175DD81 ** get_address_of_SerializeObjectState_4() { return &___SerializeObjectState_4; } inline void set_SerializeObjectState_4(EventHandler_1_t2FAACD646FEA53CF34DD74BB21333F2B9175DD81 * value) { ___SerializeObjectState_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___SerializeObjectState_4), (void*)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.StringComparer struct StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE : public RuntimeObject { public: public: }; struct StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_StaticFields { public: // System.StringComparer System.StringComparer::_invariantCulture StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * ____invariantCulture_0; // System.StringComparer System.StringComparer::_invariantCultureIgnoreCase StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * ____invariantCultureIgnoreCase_1; // System.StringComparer System.StringComparer::_ordinal StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * ____ordinal_2; // System.StringComparer System.StringComparer::_ordinalIgnoreCase StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * ____ordinalIgnoreCase_3; public: inline static int32_t get_offset_of__invariantCulture_0() { return static_cast<int32_t>(offsetof(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_StaticFields, ____invariantCulture_0)); } inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * get__invariantCulture_0() const { return ____invariantCulture_0; } inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE ** get_address_of__invariantCulture_0() { return &____invariantCulture_0; } inline void set__invariantCulture_0(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * value) { ____invariantCulture_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____invariantCulture_0), (void*)value); } inline static int32_t get_offset_of__invariantCultureIgnoreCase_1() { return static_cast<int32_t>(offsetof(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_StaticFields, ____invariantCultureIgnoreCase_1)); } inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * get__invariantCultureIgnoreCase_1() const { return ____invariantCultureIgnoreCase_1; } inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE ** get_address_of__invariantCultureIgnoreCase_1() { return &____invariantCultureIgnoreCase_1; } inline void set__invariantCultureIgnoreCase_1(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * value) { ____invariantCultureIgnoreCase_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____invariantCultureIgnoreCase_1), (void*)value); } inline static int32_t get_offset_of__ordinal_2() { return static_cast<int32_t>(offsetof(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_StaticFields, ____ordinal_2)); } inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * get__ordinal_2() const { return ____ordinal_2; } inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE ** get_address_of__ordinal_2() { return &____ordinal_2; } inline void set__ordinal_2(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * value) { ____ordinal_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____ordinal_2), (void*)value); } inline static int32_t get_offset_of__ordinalIgnoreCase_3() { return static_cast<int32_t>(offsetof(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_StaticFields, ____ordinalIgnoreCase_3)); } inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * get__ordinalIgnoreCase_3() const { return ____ordinalIgnoreCase_3; } inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE ** get_address_of__ordinalIgnoreCase_3() { return &____ordinalIgnoreCase_3; } inline void set__ordinalIgnoreCase_3(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * value) { ____ordinalIgnoreCase_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____ordinalIgnoreCase_3), (void*)value); } }; // System.Text.Encoding struct Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 : public RuntimeObject { public: // System.Int32 System.Text.Encoding::m_codePage int32_t ___m_codePage_9; // System.Globalization.CodePageDataItem System.Text.Encoding::dataItem CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB * ___dataItem_10; // System.Boolean System.Text.Encoding::m_deserializedFromEverett bool ___m_deserializedFromEverett_11; // System.Boolean System.Text.Encoding::m_isReadOnly bool ___m_isReadOnly_12; // System.Text.EncoderFallback System.Text.Encoding::encoderFallback EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * ___encoderFallback_13; // System.Text.DecoderFallback System.Text.Encoding::decoderFallback DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * ___decoderFallback_14; public: inline static int32_t get_offset_of_m_codePage_9() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___m_codePage_9)); } inline int32_t get_m_codePage_9() const { return ___m_codePage_9; } inline int32_t* get_address_of_m_codePage_9() { return &___m_codePage_9; } inline void set_m_codePage_9(int32_t value) { ___m_codePage_9 = value; } inline static int32_t get_offset_of_dataItem_10() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___dataItem_10)); } inline CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB * get_dataItem_10() const { return ___dataItem_10; } inline CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB ** get_address_of_dataItem_10() { return &___dataItem_10; } inline void set_dataItem_10(CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB * value) { ___dataItem_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___dataItem_10), (void*)value); } inline static int32_t get_offset_of_m_deserializedFromEverett_11() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___m_deserializedFromEverett_11)); } inline bool get_m_deserializedFromEverett_11() const { return ___m_deserializedFromEverett_11; } inline bool* get_address_of_m_deserializedFromEverett_11() { return &___m_deserializedFromEverett_11; } inline void set_m_deserializedFromEverett_11(bool value) { ___m_deserializedFromEverett_11 = value; } inline static int32_t get_offset_of_m_isReadOnly_12() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___m_isReadOnly_12)); } inline bool get_m_isReadOnly_12() const { return ___m_isReadOnly_12; } inline bool* get_address_of_m_isReadOnly_12() { return &___m_isReadOnly_12; } inline void set_m_isReadOnly_12(bool value) { ___m_isReadOnly_12 = value; } inline static int32_t get_offset_of_encoderFallback_13() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___encoderFallback_13)); } inline EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * get_encoderFallback_13() const { return ___encoderFallback_13; } inline EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 ** get_address_of_encoderFallback_13() { return &___encoderFallback_13; } inline void set_encoderFallback_13(EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * value) { ___encoderFallback_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___encoderFallback_13), (void*)value); } inline static int32_t get_offset_of_decoderFallback_14() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___decoderFallback_14)); } inline DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * get_decoderFallback_14() const { return ___decoderFallback_14; } inline DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 ** get_address_of_decoderFallback_14() { return &___decoderFallback_14; } inline void set_decoderFallback_14(DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * value) { ___decoderFallback_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___decoderFallback_14), (void*)value); } }; struct Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields { public: // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::defaultEncoding Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___defaultEncoding_0; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::unicodeEncoding Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___unicodeEncoding_1; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::bigEndianUnicode Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___bigEndianUnicode_2; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf7Encoding Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___utf7Encoding_3; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf8Encoding Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___utf8Encoding_4; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf32Encoding Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___utf32Encoding_5; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::asciiEncoding Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___asciiEncoding_6; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::latin1Encoding Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___latin1Encoding_7; // System.Collections.Hashtable modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::encodings Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___encodings_8; // System.Object System.Text.Encoding::s_InternalSyncObject RuntimeObject * ___s_InternalSyncObject_15; public: inline static int32_t get_offset_of_defaultEncoding_0() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___defaultEncoding_0)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_defaultEncoding_0() const { return ___defaultEncoding_0; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_defaultEncoding_0() { return &___defaultEncoding_0; } inline void set_defaultEncoding_0(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___defaultEncoding_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultEncoding_0), (void*)value); } inline static int32_t get_offset_of_unicodeEncoding_1() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___unicodeEncoding_1)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_unicodeEncoding_1() const { return ___unicodeEncoding_1; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_unicodeEncoding_1() { return &___unicodeEncoding_1; } inline void set_unicodeEncoding_1(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___unicodeEncoding_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___unicodeEncoding_1), (void*)value); } inline static int32_t get_offset_of_bigEndianUnicode_2() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___bigEndianUnicode_2)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_bigEndianUnicode_2() const { return ___bigEndianUnicode_2; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_bigEndianUnicode_2() { return &___bigEndianUnicode_2; } inline void set_bigEndianUnicode_2(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___bigEndianUnicode_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___bigEndianUnicode_2), (void*)value); } inline static int32_t get_offset_of_utf7Encoding_3() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___utf7Encoding_3)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_utf7Encoding_3() const { return ___utf7Encoding_3; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_utf7Encoding_3() { return &___utf7Encoding_3; } inline void set_utf7Encoding_3(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___utf7Encoding_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___utf7Encoding_3), (void*)value); } inline static int32_t get_offset_of_utf8Encoding_4() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___utf8Encoding_4)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_utf8Encoding_4() const { return ___utf8Encoding_4; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_utf8Encoding_4() { return &___utf8Encoding_4; } inline void set_utf8Encoding_4(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___utf8Encoding_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___utf8Encoding_4), (void*)value); } inline static int32_t get_offset_of_utf32Encoding_5() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___utf32Encoding_5)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_utf32Encoding_5() const { return ___utf32Encoding_5; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_utf32Encoding_5() { return &___utf32Encoding_5; } inline void set_utf32Encoding_5(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___utf32Encoding_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___utf32Encoding_5), (void*)value); } inline static int32_t get_offset_of_asciiEncoding_6() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___asciiEncoding_6)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_asciiEncoding_6() const { return ___asciiEncoding_6; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_asciiEncoding_6() { return &___asciiEncoding_6; } inline void set_asciiEncoding_6(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___asciiEncoding_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___asciiEncoding_6), (void*)value); } inline static int32_t get_offset_of_latin1Encoding_7() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___latin1Encoding_7)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_latin1Encoding_7() const { return ___latin1Encoding_7; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_latin1Encoding_7() { return &___latin1Encoding_7; } inline void set_latin1Encoding_7(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___latin1Encoding_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___latin1Encoding_7), (void*)value); } inline static int32_t get_offset_of_encodings_8() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___encodings_8)); } inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_encodings_8() const { return ___encodings_8; } inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_encodings_8() { return &___encodings_8; } inline void set_encodings_8(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value) { ___encodings_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___encodings_8), (void*)value); } inline static int32_t get_offset_of_s_InternalSyncObject_15() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___s_InternalSyncObject_15)); } inline RuntimeObject * get_s_InternalSyncObject_15() const { return ___s_InternalSyncObject_15; } inline RuntimeObject ** get_address_of_s_InternalSyncObject_15() { return &___s_InternalSyncObject_15; } inline void set_s_InternalSyncObject_15(RuntimeObject * value) { ___s_InternalSyncObject_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_InternalSyncObject_15), (void*)value); } }; // System.Text.StringBuilder struct StringBuilder_t : public RuntimeObject { public: // System.Char[] System.Text.StringBuilder::m_ChunkChars CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___m_ChunkChars_0; // System.Text.StringBuilder System.Text.StringBuilder::m_ChunkPrevious StringBuilder_t * ___m_ChunkPrevious_1; // System.Int32 System.Text.StringBuilder::m_ChunkLength int32_t ___m_ChunkLength_2; // System.Int32 System.Text.StringBuilder::m_ChunkOffset int32_t ___m_ChunkOffset_3; // System.Int32 System.Text.StringBuilder::m_MaxCapacity int32_t ___m_MaxCapacity_4; public: inline static int32_t get_offset_of_m_ChunkChars_0() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkChars_0)); } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_m_ChunkChars_0() const { return ___m_ChunkChars_0; } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_m_ChunkChars_0() { return &___m_ChunkChars_0; } inline void set_m_ChunkChars_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value) { ___m_ChunkChars_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ChunkChars_0), (void*)value); } inline static int32_t get_offset_of_m_ChunkPrevious_1() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkPrevious_1)); } inline StringBuilder_t * get_m_ChunkPrevious_1() const { return ___m_ChunkPrevious_1; } inline StringBuilder_t ** get_address_of_m_ChunkPrevious_1() { return &___m_ChunkPrevious_1; } inline void set_m_ChunkPrevious_1(StringBuilder_t * value) { ___m_ChunkPrevious_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ChunkPrevious_1), (void*)value); } inline static int32_t get_offset_of_m_ChunkLength_2() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkLength_2)); } inline int32_t get_m_ChunkLength_2() const { return ___m_ChunkLength_2; } inline int32_t* get_address_of_m_ChunkLength_2() { return &___m_ChunkLength_2; } inline void set_m_ChunkLength_2(int32_t value) { ___m_ChunkLength_2 = value; } inline static int32_t get_offset_of_m_ChunkOffset_3() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkOffset_3)); } inline int32_t get_m_ChunkOffset_3() const { return ___m_ChunkOffset_3; } inline int32_t* get_address_of_m_ChunkOffset_3() { return &___m_ChunkOffset_3; } inline void set_m_ChunkOffset_3(int32_t value) { ___m_ChunkOffset_3 = value; } inline static int32_t get_offset_of_m_MaxCapacity_4() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_MaxCapacity_4)); } inline int32_t get_m_MaxCapacity_4() const { return ___m_MaxCapacity_4; } inline int32_t* get_address_of_m_MaxCapacity_4() { return &___m_MaxCapacity_4; } inline void set_m_MaxCapacity_4(int32_t value) { ___m_MaxCapacity_4 = value; } }; // System.ValueType struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF : public RuntimeObject { public: public: }; // Native definition for P/Invoke marshalling of System.ValueType struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_pinvoke { }; // Native definition for COM marshalling of System.ValueType struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_com { }; // System.Version struct Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD : public RuntimeObject { public: // System.Int32 System.Version::_Major int32_t ____Major_0; // System.Int32 System.Version::_Minor int32_t ____Minor_1; // System.Int32 System.Version::_Build int32_t ____Build_2; // System.Int32 System.Version::_Revision int32_t ____Revision_3; public: inline static int32_t get_offset_of__Major_0() { return static_cast<int32_t>(offsetof(Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD, ____Major_0)); } inline int32_t get__Major_0() const { return ____Major_0; } inline int32_t* get_address_of__Major_0() { return &____Major_0; } inline void set__Major_0(int32_t value) { ____Major_0 = value; } inline static int32_t get_offset_of__Minor_1() { return static_cast<int32_t>(offsetof(Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD, ____Minor_1)); } inline int32_t get__Minor_1() const { return ____Minor_1; } inline int32_t* get_address_of__Minor_1() { return &____Minor_1; } inline void set__Minor_1(int32_t value) { ____Minor_1 = value; } inline static int32_t get_offset_of__Build_2() { return static_cast<int32_t>(offsetof(Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD, ____Build_2)); } inline int32_t get__Build_2() const { return ____Build_2; } inline int32_t* get_address_of__Build_2() { return &____Build_2; } inline void set__Build_2(int32_t value) { ____Build_2 = value; } inline static int32_t get_offset_of__Revision_3() { return static_cast<int32_t>(offsetof(Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD, ____Revision_3)); } inline int32_t get__Revision_3() const { return ____Revision_3; } inline int32_t* get_address_of__Revision_3() { return &____Revision_3; } inline void set__Revision_3(int32_t value) { ____Revision_3 = value; } }; struct Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD_StaticFields { public: // System.Char[] System.Version::SeparatorsArray CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___SeparatorsArray_4; public: inline static int32_t get_offset_of_SeparatorsArray_4() { return static_cast<int32_t>(offsetof(Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD_StaticFields, ___SeparatorsArray_4)); } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_SeparatorsArray_4() const { return ___SeparatorsArray_4; } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_SeparatorsArray_4() { return &___SeparatorsArray_4; } inline void set_SeparatorsArray_4(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value) { ___SeparatorsArray_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___SeparatorsArray_4), (void*)value); } }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D10 struct __StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C__padding[10]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1018 struct __StaticArrayInitTypeSizeU3D1018_t7825BE1556EFF874DAFDC230EB69C85A48DBCBC4 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D1018_t7825BE1556EFF874DAFDC230EB69C85A48DBCBC4__padding[1018]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1080 struct __StaticArrayInitTypeSizeU3D1080_tCE36DA14009C45CFDEA7F63618BE90F8DF89AC84 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D1080_tCE36DA14009C45CFDEA7F63618BE90F8DF89AC84__padding[1080]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D11614 struct __StaticArrayInitTypeSizeU3D11614_tDF34959BE752359A89A4A577B8798D2D66A5E7F5 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D11614_tDF34959BE752359A89A4A577B8798D2D66A5E7F5__padding[11614]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 struct __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879__padding[12]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D120 struct __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252__padding[120]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1208 struct __StaticArrayInitTypeSizeU3D1208_tC58894ECFE2C4FFD2B8FCDF958800099A737C1DD { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D1208_tC58894ECFE2C4FFD2B8FCDF958800099A737C1DD__padding[1208]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D128 struct __StaticArrayInitTypeSizeU3D128_t1B13688BD6EA82B964734FF8C3181161EF5624B1 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D128_t1B13688BD6EA82B964734FF8C3181161EF5624B1__padding[128]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D130 struct __StaticArrayInitTypeSizeU3D130_t732A6F42953325ADC5746FF1A652A2974473AF4F { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D130_t732A6F42953325ADC5746FF1A652A2974473AF4F__padding[130]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1450 struct __StaticArrayInitTypeSizeU3D1450_t58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D1450_t58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4__padding[1450]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D16 struct __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341__padding[16]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D162 struct __StaticArrayInitTypeSizeU3D162_tFFF125F871C6A7DE42BE37AC907E2E2149A861AA { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D162_tFFF125F871C6A7DE42BE37AC907E2E2149A861AA__padding[162]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1665 struct __StaticArrayInitTypeSizeU3D1665_tCD7752863825B82B07752CCE72A581C169E19C20 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D1665_tCD7752863825B82B07752CCE72A581C169E19C20__padding[1665]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D174 struct __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F__padding[174]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2100 struct __StaticArrayInitTypeSizeU3D2100_t75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D2100_t75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA__padding[2100]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D212 struct __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF__padding[212]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D21252 struct __StaticArrayInitTypeSizeU3D21252_tCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D21252_tCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462__padding[21252]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2350 struct __StaticArrayInitTypeSizeU3D2350_t96984AEF232104302694B7EFDA3F92BC42BF207D { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D2350_t96984AEF232104302694B7EFDA3F92BC42BF207D__padding[2350]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2382 struct __StaticArrayInitTypeSizeU3D2382_tB4AF2C49C5120B6EB285BA4D247340D8E243A1BA { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D2382_tB4AF2C49C5120B6EB285BA4D247340D8E243A1BA__padding[2382]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D24 struct __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123__padding[24]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D240 struct __StaticArrayInitTypeSizeU3D240_t5643A77865294845ACC505FE42EA1067CAC04FD8 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D240_t5643A77865294845ACC505FE42EA1067CAC04FD8__padding[240]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D256 struct __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F__padding[256]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D262 struct __StaticArrayInitTypeSizeU3D262_t93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D262_t93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7__padding[262]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D288 struct __StaticArrayInitTypeSizeU3D288_t7B40D7F3A8D262F90A76460FF94E92CE08AFCF55 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D288_t7B40D7F3A8D262F90A76460FF94E92CE08AFCF55__padding[288]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3 struct __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E__padding[3]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D32 struct __StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472__padding[32]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D320 struct __StaticArrayInitTypeSizeU3D320_t48B9242FB90DB2A21A723BBAB141500A9641EB49 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D320_t48B9242FB90DB2A21A723BBAB141500A9641EB49__padding[320]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D36 struct __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17__padding[36]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D360 struct __StaticArrayInitTypeSizeU3D360_tFF8371303424DEBAE608051BAA970E5AFB409DF7 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D360_tFF8371303424DEBAE608051BAA970E5AFB409DF7__padding[360]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D38 struct __StaticArrayInitTypeSizeU3D38_tA52D24A5F9970582D6B55437967C9BD32E03F05D { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D38_tA52D24A5F9970582D6B55437967C9BD32E03F05D__padding[38]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 struct __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04__padding[40]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D42 struct __StaticArrayInitTypeSizeU3D42_t3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D42_t3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4__padding[42]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D44 struct __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F__padding[44]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D52 struct __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A__padding[52]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D6 struct __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78__padding[6]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D64 struct __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6__padding[64]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 struct __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1__padding[72]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D76 struct __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB__padding[76]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D84 struct __StaticArrayInitTypeSizeU3D84_tF52293EFB26AA1D2C169389BB83253C5BAE8076A { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D84_tF52293EFB26AA1D2C169389BB83253C5BAE8076A__padding[84]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D94 struct __StaticArrayInitTypeSizeU3D94_t23554D8B96399688002A3BE81C7C15EFB011DEC6 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D94_t23554D8B96399688002A3BE81C7C15EFB011DEC6__padding[94]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D998 struct __StaticArrayInitTypeSizeU3D998_t8A5C9782706B510180A1B9C9F7E96F8F48421B8C { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D998_t8A5C9782706B510180A1B9C9F7E96F8F48421B8C__padding[998]; }; public: }; // System.Boolean struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C { public: // System.Boolean System.Boolean::m_value bool ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C, ___m_value_0)); } inline bool get_m_value_0() const { return ___m_value_0; } inline bool* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(bool value) { ___m_value_0 = value; } }; struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields { public: // System.String System.Boolean::TrueString String_t* ___TrueString_5; // System.String System.Boolean::FalseString String_t* ___FalseString_6; public: inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___TrueString_5)); } inline String_t* get_TrueString_5() const { return ___TrueString_5; } inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; } inline void set_TrueString_5(String_t* value) { ___TrueString_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value); } inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___FalseString_6)); } inline String_t* get_FalseString_6() const { return ___FalseString_6; } inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; } inline void set_FalseString_6(String_t* value) { ___FalseString_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value); } }; // System.Byte struct Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07 { public: // System.Byte System.Byte::m_value uint8_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07, ___m_value_0)); } inline uint8_t get_m_value_0() const { return ___m_value_0; } inline uint8_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint8_t value) { ___m_value_0 = value; } }; // System.Char struct Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9 { public: // System.Char System.Char::m_value Il2CppChar ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9, ___m_value_0)); } inline Il2CppChar get_m_value_0() const { return ___m_value_0; } inline Il2CppChar* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(Il2CppChar value) { ___m_value_0 = value; } }; struct Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_StaticFields { public: // System.Byte[] System.Char::categoryForLatin1 ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___categoryForLatin1_3; public: inline static int32_t get_offset_of_categoryForLatin1_3() { return static_cast<int32_t>(offsetof(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_StaticFields, ___categoryForLatin1_3)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_categoryForLatin1_3() const { return ___categoryForLatin1_3; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_categoryForLatin1_3() { return &___categoryForLatin1_3; } inline void set_categoryForLatin1_3(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___categoryForLatin1_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___categoryForLatin1_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.Object,System.Object> struct Enumerator_tB5076FB1730C18188DBB208FD1B6870FC5A660E6 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::currentValue RuntimeObject * ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tB5076FB1730C18188DBB208FD1B6870FC5A660E6, ___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_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tB5076FB1730C18188DBB208FD1B6870FC5A660E6, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tB5076FB1730C18188DBB208FD1B6870FC5A660E6, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_tB5076FB1730C18188DBB208FD1B6870FC5A660E6, ___currentValue_3)); } inline RuntimeObject * get_currentValue_3() const { return ___currentValue_3; } inline RuntimeObject ** get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(RuntimeObject * value) { ___currentValue_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentValue_3), (void*)value); } }; // System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator<System.String,System.Type> struct Enumerator_tABA216358668DD188BBA6A59F0C67AE9AF312CD4 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::dictionary Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::version int32_t ___version_2; // TValue System.Collections.Generic.Dictionary`2_ValueCollection_Enumerator::currentValue Type_t * ___currentValue_3; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tABA216358668DD188BBA6A59F0C67AE9AF312CD4, ___dictionary_0)); } inline Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tABA216358668DD188BBA6A59F0C67AE9AF312CD4, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tABA216358668DD188BBA6A59F0C67AE9AF312CD4, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentValue_3() { return static_cast<int32_t>(offsetof(Enumerator_tABA216358668DD188BBA6A59F0C67AE9AF312CD4, ___currentValue_3)); } inline Type_t * get_currentValue_3() const { return ___currentValue_3; } inline Type_t ** get_address_of_currentValue_3() { return &___currentValue_3; } inline void set_currentValue_3(Type_t * value) { ___currentValue_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentValue_3), (void*)value); } }; // System.Collections.Generic.List`1_Enumerator<System.Diagnostics.Tracing.FieldMetadata> struct Enumerator_t1702FC15AAB92C75120937BC12A636955F7ED3BE { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A * ___list_0; // System.Int32 System.Collections.Generic.List`1_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1_Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1_Enumerator::current FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t1702FC15AAB92C75120937BC12A636955F7ED3BE, ___list_0)); } inline List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A * get_list_0() const { return ___list_0; } inline List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t1702FC15AAB92C75120937BC12A636955F7ED3BE, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t1702FC15AAB92C75120937BC12A636955F7ED3BE, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t1702FC15AAB92C75120937BC12A636955F7ED3BE, ___current_3)); } inline FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * get_current_3() const { return ___current_3; } inline FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC ** get_address_of_current_3() { return &___current_3; } inline void set_current_3(FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value); } }; // System.Collections.Generic.List`1_Enumerator<System.Globalization.CultureInfo> struct Enumerator_tFAF40259E587A0C56311F14FEBDCF69C3916B5A9 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 * ___list_0; // System.Int32 System.Collections.Generic.List`1_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1_Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1_Enumerator::current CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_tFAF40259E587A0C56311F14FEBDCF69C3916B5A9, ___list_0)); } inline List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 * get_list_0() const { return ___list_0; } inline List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tFAF40259E587A0C56311F14FEBDCF69C3916B5A9, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tFAF40259E587A0C56311F14FEBDCF69C3916B5A9, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tFAF40259E587A0C56311F14FEBDCF69C3916B5A9, ___current_3)); } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_current_3() const { return ___current_3; } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_current_3() { return &___current_3; } inline void set_current_3(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value); } }; // System.Collections.Generic.List`1_Enumerator<System.Int32> struct Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * ___list_0; // System.Int32 System.Collections.Generic.List`1_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1_Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1_Enumerator::current int32_t ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2, ___list_0)); } inline List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * get_list_0() const { return ___list_0; } inline List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2, ___current_3)); } inline int32_t get_current_3() const { return ___current_3; } inline int32_t* get_address_of_current_3() { return &___current_3; } inline void set_current_3(int32_t value) { ___current_3 = value; } }; // System.Collections.Generic.List`1_Enumerator<System.Object> struct Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * ___list_0; // System.Int32 System.Collections.Generic.List`1_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1_Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1_Enumerator::current RuntimeObject * ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD, ___list_0)); } inline List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * get_list_0() const { return ___list_0; } inline List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD, ___current_3)); } inline RuntimeObject * get_current_3() const { return ___current_3; } inline RuntimeObject ** get_address_of_current_3() { return &___current_3; } inline void set_current_3(RuntimeObject * value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value); } }; // System.Collections.Generic.List`1_Enumerator<System.UInt64> struct Enumerator_t46B8FA0EA6058B0B5871CE816B84FA8AAF77208B { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8 * ___list_0; // System.Int32 System.Collections.Generic.List`1_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1_Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1_Enumerator::current uint64_t ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t46B8FA0EA6058B0B5871CE816B84FA8AAF77208B, ___list_0)); } inline List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8 * get_list_0() const { return ___list_0; } inline List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t46B8FA0EA6058B0B5871CE816B84FA8AAF77208B, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t46B8FA0EA6058B0B5871CE816B84FA8AAF77208B, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t46B8FA0EA6058B0B5871CE816B84FA8AAF77208B, ___current_3)); } inline uint64_t get_current_3() const { return ___current_3; } inline uint64_t* get_address_of_current_3() { return &___current_3; } inline void set_current_3(uint64_t value) { ___current_3 = value; } }; // System.DateTime struct DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 { public: // System.UInt64 System.DateTime::dateData uint64_t ___dateData_44; public: inline static int32_t get_offset_of_dateData_44() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132, ___dateData_44)); } inline uint64_t get_dateData_44() const { return ___dateData_44; } inline uint64_t* get_address_of_dateData_44() { return &___dateData_44; } inline void set_dateData_44(uint64_t value) { ___dateData_44 = value; } }; struct DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields { public: // System.Int32[] System.DateTime::DaysToMonth365 Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___DaysToMonth365_29; // System.Int32[] System.DateTime::DaysToMonth366 Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___DaysToMonth366_30; // System.DateTime System.DateTime::MinValue DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___MinValue_31; // System.DateTime System.DateTime::MaxValue DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___MaxValue_32; public: inline static int32_t get_offset_of_DaysToMonth365_29() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___DaysToMonth365_29)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_DaysToMonth365_29() const { return ___DaysToMonth365_29; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_DaysToMonth365_29() { return &___DaysToMonth365_29; } inline void set_DaysToMonth365_29(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___DaysToMonth365_29 = value; Il2CppCodeGenWriteBarrier((void**)(&___DaysToMonth365_29), (void*)value); } inline static int32_t get_offset_of_DaysToMonth366_30() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___DaysToMonth366_30)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_DaysToMonth366_30() const { return ___DaysToMonth366_30; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_DaysToMonth366_30() { return &___DaysToMonth366_30; } inline void set_DaysToMonth366_30(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___DaysToMonth366_30 = value; Il2CppCodeGenWriteBarrier((void**)(&___DaysToMonth366_30), (void*)value); } inline static int32_t get_offset_of_MinValue_31() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___MinValue_31)); } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_MinValue_31() const { return ___MinValue_31; } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_MinValue_31() { return &___MinValue_31; } inline void set_MinValue_31(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value) { ___MinValue_31 = value; } inline static int32_t get_offset_of_MaxValue_32() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___MaxValue_32)); } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_MaxValue_32() const { return ___MaxValue_32; } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_MaxValue_32() { return &___MaxValue_32; } inline void set_MaxValue_32(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value) { ___MaxValue_32 = value; } }; // System.Decimal struct Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 { public: // System.Int32 System.Decimal::flags int32_t ___flags_14; // System.Int32 System.Decimal::hi int32_t ___hi_15; // System.Int32 System.Decimal::lo int32_t ___lo_16; // System.Int32 System.Decimal::mid int32_t ___mid_17; public: inline static int32_t get_offset_of_flags_14() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___flags_14)); } inline int32_t get_flags_14() const { return ___flags_14; } inline int32_t* get_address_of_flags_14() { return &___flags_14; } inline void set_flags_14(int32_t value) { ___flags_14 = value; } inline static int32_t get_offset_of_hi_15() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___hi_15)); } inline int32_t get_hi_15() const { return ___hi_15; } inline int32_t* get_address_of_hi_15() { return &___hi_15; } inline void set_hi_15(int32_t value) { ___hi_15 = value; } inline static int32_t get_offset_of_lo_16() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___lo_16)); } inline int32_t get_lo_16() const { return ___lo_16; } inline int32_t* get_address_of_lo_16() { return &___lo_16; } inline void set_lo_16(int32_t value) { ___lo_16 = value; } inline static int32_t get_offset_of_mid_17() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___mid_17)); } inline int32_t get_mid_17() const { return ___mid_17; } inline int32_t* get_address_of_mid_17() { return &___mid_17; } inline void set_mid_17(int32_t value) { ___mid_17 = value; } }; struct Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields { public: // System.UInt32[] System.Decimal::Powers10 UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___Powers10_6; // System.Decimal System.Decimal::Zero Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___Zero_7; // System.Decimal System.Decimal::One Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___One_8; // System.Decimal System.Decimal::MinusOne Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___MinusOne_9; // System.Decimal System.Decimal::MaxValue Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___MaxValue_10; // System.Decimal System.Decimal::MinValue Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___MinValue_11; // System.Decimal System.Decimal::NearNegativeZero Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___NearNegativeZero_12; // System.Decimal System.Decimal::NearPositiveZero Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___NearPositiveZero_13; public: inline static int32_t get_offset_of_Powers10_6() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___Powers10_6)); } inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* get_Powers10_6() const { return ___Powers10_6; } inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB** get_address_of_Powers10_6() { return &___Powers10_6; } inline void set_Powers10_6(UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* value) { ___Powers10_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___Powers10_6), (void*)value); } inline static int32_t get_offset_of_Zero_7() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___Zero_7)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_Zero_7() const { return ___Zero_7; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_Zero_7() { return &___Zero_7; } inline void set_Zero_7(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___Zero_7 = value; } inline static int32_t get_offset_of_One_8() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___One_8)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_One_8() const { return ___One_8; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_One_8() { return &___One_8; } inline void set_One_8(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___One_8 = value; } inline static int32_t get_offset_of_MinusOne_9() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___MinusOne_9)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_MinusOne_9() const { return ___MinusOne_9; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_MinusOne_9() { return &___MinusOne_9; } inline void set_MinusOne_9(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___MinusOne_9 = value; } inline static int32_t get_offset_of_MaxValue_10() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___MaxValue_10)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_MaxValue_10() const { return ___MaxValue_10; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_MaxValue_10() { return &___MaxValue_10; } inline void set_MaxValue_10(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___MaxValue_10 = value; } inline static int32_t get_offset_of_MinValue_11() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___MinValue_11)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_MinValue_11() const { return ___MinValue_11; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_MinValue_11() { return &___MinValue_11; } inline void set_MinValue_11(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___MinValue_11 = value; } inline static int32_t get_offset_of_NearNegativeZero_12() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___NearNegativeZero_12)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_NearNegativeZero_12() const { return ___NearNegativeZero_12; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_NearNegativeZero_12() { return &___NearNegativeZero_12; } inline void set_NearNegativeZero_12(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___NearNegativeZero_12 = value; } inline static int32_t get_offset_of_NearPositiveZero_13() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___NearPositiveZero_13)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_NearPositiveZero_13() const { return ___NearPositiveZero_13; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_NearPositiveZero_13() { return &___NearPositiveZero_13; } inline void set_NearPositiveZero_13(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___NearPositiveZero_13 = value; } }; // System.Diagnostics.Tracing.ConcurrentSet`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>,System.Object> struct ConcurrentSet_2_t9516DF2A374BF5F2AFB74F8D934FD6A442A8AACA { public: // ItemType[] System.Diagnostics.Tracing.ConcurrentSet`2::items ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___items_0; public: inline static int32_t get_offset_of_items_0() { return static_cast<int32_t>(offsetof(ConcurrentSet_2_t9516DF2A374BF5F2AFB74F8D934FD6A442A8AACA, ___items_0)); } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_items_0() const { return ___items_0; } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_items_0() { return &___items_0; } inline void set_items_0(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value) { ___items_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___items_0), (void*)value); } }; // System.Diagnostics.Tracing.ConcurrentSet`2<System.Collections.Generic.KeyValuePair`2<System.String,System.Diagnostics.Tracing.EventTags>,System.Diagnostics.Tracing.NameInfo> struct ConcurrentSet_2_t9B37AE19508B10669906106353C62B3C877BFA95 { public: // ItemType[] System.Diagnostics.Tracing.ConcurrentSet`2::items NameInfoU5BU5D_t90BE93F86BB5CC5274C6ED53B8BB62D1E10A7EE7* ___items_0; public: inline static int32_t get_offset_of_items_0() { return static_cast<int32_t>(offsetof(ConcurrentSet_2_t9B37AE19508B10669906106353C62B3C877BFA95, ___items_0)); } inline NameInfoU5BU5D_t90BE93F86BB5CC5274C6ED53B8BB62D1E10A7EE7* get_items_0() const { return ___items_0; } inline NameInfoU5BU5D_t90BE93F86BB5CC5274C6ED53B8BB62D1E10A7EE7** get_address_of_items_0() { return &___items_0; } inline void set_items_0(NameInfoU5BU5D_t90BE93F86BB5CC5274C6ED53B8BB62D1E10A7EE7* value) { ___items_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___items_0), (void*)value); } }; // System.Diagnostics.Tracing.DataCollector struct DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 { public: // System.Byte* System.Diagnostics.Tracing.DataCollector::scratchEnd uint8_t* ___scratchEnd_1; // System.Diagnostics.Tracing.EventSource_EventData* System.Diagnostics.Tracing.DataCollector::datasEnd EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * ___datasEnd_2; // System.Runtime.InteropServices.GCHandle* System.Diagnostics.Tracing.DataCollector::pinsEnd GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 * ___pinsEnd_3; // System.Diagnostics.Tracing.EventSource_EventData* System.Diagnostics.Tracing.DataCollector::datasStart EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * ___datasStart_4; // System.Byte* System.Diagnostics.Tracing.DataCollector::scratch uint8_t* ___scratch_5; // System.Diagnostics.Tracing.EventSource_EventData* System.Diagnostics.Tracing.DataCollector::datas EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * ___datas_6; // System.Runtime.InteropServices.GCHandle* System.Diagnostics.Tracing.DataCollector::pins GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 * ___pins_7; // System.Byte[] System.Diagnostics.Tracing.DataCollector::buffer ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer_8; // System.Int32 System.Diagnostics.Tracing.DataCollector::bufferPos int32_t ___bufferPos_9; // System.Int32 System.Diagnostics.Tracing.DataCollector::bufferNesting int32_t ___bufferNesting_10; // System.Boolean System.Diagnostics.Tracing.DataCollector::writingScalars bool ___writingScalars_11; public: inline static int32_t get_offset_of_scratchEnd_1() { return static_cast<int32_t>(offsetof(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660, ___scratchEnd_1)); } inline uint8_t* get_scratchEnd_1() const { return ___scratchEnd_1; } inline uint8_t** get_address_of_scratchEnd_1() { return &___scratchEnd_1; } inline void set_scratchEnd_1(uint8_t* value) { ___scratchEnd_1 = value; } inline static int32_t get_offset_of_datasEnd_2() { return static_cast<int32_t>(offsetof(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660, ___datasEnd_2)); } inline EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * get_datasEnd_2() const { return ___datasEnd_2; } inline EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 ** get_address_of_datasEnd_2() { return &___datasEnd_2; } inline void set_datasEnd_2(EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * value) { ___datasEnd_2 = value; } inline static int32_t get_offset_of_pinsEnd_3() { return static_cast<int32_t>(offsetof(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660, ___pinsEnd_3)); } inline GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 * get_pinsEnd_3() const { return ___pinsEnd_3; } inline GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 ** get_address_of_pinsEnd_3() { return &___pinsEnd_3; } inline void set_pinsEnd_3(GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 * value) { ___pinsEnd_3 = value; } inline static int32_t get_offset_of_datasStart_4() { return static_cast<int32_t>(offsetof(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660, ___datasStart_4)); } inline EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * get_datasStart_4() const { return ___datasStart_4; } inline EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 ** get_address_of_datasStart_4() { return &___datasStart_4; } inline void set_datasStart_4(EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * value) { ___datasStart_4 = value; } inline static int32_t get_offset_of_scratch_5() { return static_cast<int32_t>(offsetof(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660, ___scratch_5)); } inline uint8_t* get_scratch_5() const { return ___scratch_5; } inline uint8_t** get_address_of_scratch_5() { return &___scratch_5; } inline void set_scratch_5(uint8_t* value) { ___scratch_5 = value; } inline static int32_t get_offset_of_datas_6() { return static_cast<int32_t>(offsetof(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660, ___datas_6)); } inline EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * get_datas_6() const { return ___datas_6; } inline EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 ** get_address_of_datas_6() { return &___datas_6; } inline void set_datas_6(EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * value) { ___datas_6 = value; } inline static int32_t get_offset_of_pins_7() { return static_cast<int32_t>(offsetof(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660, ___pins_7)); } inline GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 * get_pins_7() const { return ___pins_7; } inline GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 ** get_address_of_pins_7() { return &___pins_7; } inline void set_pins_7(GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 * value) { ___pins_7 = value; } inline static int32_t get_offset_of_buffer_8() { return static_cast<int32_t>(offsetof(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660, ___buffer_8)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_buffer_8() const { return ___buffer_8; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_buffer_8() { return &___buffer_8; } inline void set_buffer_8(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___buffer_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___buffer_8), (void*)value); } inline static int32_t get_offset_of_bufferPos_9() { return static_cast<int32_t>(offsetof(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660, ___bufferPos_9)); } inline int32_t get_bufferPos_9() const { return ___bufferPos_9; } inline int32_t* get_address_of_bufferPos_9() { return &___bufferPos_9; } inline void set_bufferPos_9(int32_t value) { ___bufferPos_9 = value; } inline static int32_t get_offset_of_bufferNesting_10() { return static_cast<int32_t>(offsetof(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660, ___bufferNesting_10)); } inline int32_t get_bufferNesting_10() const { return ___bufferNesting_10; } inline int32_t* get_address_of_bufferNesting_10() { return &___bufferNesting_10; } inline void set_bufferNesting_10(int32_t value) { ___bufferNesting_10 = value; } inline static int32_t get_offset_of_writingScalars_11() { return static_cast<int32_t>(offsetof(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660, ___writingScalars_11)); } inline bool get_writingScalars_11() const { return ___writingScalars_11; } inline bool* get_address_of_writingScalars_11() { return &___writingScalars_11; } inline void set_writingScalars_11(bool value) { ___writingScalars_11 = value; } }; struct DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields { public: // System.Diagnostics.Tracing.DataCollector System.Diagnostics.Tracing.DataCollector::ThreadInstance DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 ___ThreadInstance_0; public: inline static int32_t get_offset_of_ThreadInstance_0() { return static_cast<int32_t>(offsetof(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields, ___ThreadInstance_0)); } inline DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 get_ThreadInstance_0() const { return ___ThreadInstance_0; } inline DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * get_address_of_ThreadInstance_0() { return &___ThreadInstance_0; } inline void set_ThreadInstance_0(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 value) { ___ThreadInstance_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___ThreadInstance_0))->___buffer_8), (void*)NULL); } }; // Native definition for P/Invoke marshalling of System.Diagnostics.Tracing.DataCollector struct DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_marshaled_pinvoke { uint8_t* ___scratchEnd_1; EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * ___datasEnd_2; GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 * ___pinsEnd_3; EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * ___datasStart_4; uint8_t* ___scratch_5; EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * ___datas_6; GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 * ___pins_7; Il2CppSafeArray/*NONE*/* ___buffer_8; int32_t ___bufferPos_9; int32_t ___bufferNesting_10; int32_t ___writingScalars_11; }; // Native definition for COM marshalling of System.Diagnostics.Tracing.DataCollector struct DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_marshaled_com { uint8_t* ___scratchEnd_1; EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * ___datasEnd_2; GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 * ___pinsEnd_3; EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * ___datasStart_4; uint8_t* ___scratch_5; EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * ___datas_6; GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 * ___pins_7; Il2CppSafeArray/*NONE*/* ___buffer_8; int32_t ___bufferPos_9; int32_t ___bufferNesting_10; int32_t ___writingScalars_11; }; // System.Diagnostics.Tracing.EventDescriptor struct EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E { public: union { struct { union { #pragma pack(push, tp, 1) struct { // System.Int32 System.Diagnostics.Tracing.EventDescriptor::m_traceloggingId int32_t ___m_traceloggingId_0; }; #pragma pack(pop, tp) struct { int32_t ___m_traceloggingId_0_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { // System.UInt16 System.Diagnostics.Tracing.EventDescriptor::m_id uint16_t ___m_id_1; }; #pragma pack(pop, tp) struct { uint16_t ___m_id_1_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_version_2_OffsetPadding[2]; // System.Byte System.Diagnostics.Tracing.EventDescriptor::m_version uint8_t ___m_version_2; }; #pragma pack(pop, tp) struct { char ___m_version_2_OffsetPadding_forAlignmentOnly[2]; uint8_t ___m_version_2_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_channel_3_OffsetPadding[3]; // System.Byte System.Diagnostics.Tracing.EventDescriptor::m_channel uint8_t ___m_channel_3; }; #pragma pack(pop, tp) struct { char ___m_channel_3_OffsetPadding_forAlignmentOnly[3]; uint8_t ___m_channel_3_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_level_4_OffsetPadding[4]; // System.Byte System.Diagnostics.Tracing.EventDescriptor::m_level uint8_t ___m_level_4; }; #pragma pack(pop, tp) struct { char ___m_level_4_OffsetPadding_forAlignmentOnly[4]; uint8_t ___m_level_4_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_opcode_5_OffsetPadding[5]; // System.Byte System.Diagnostics.Tracing.EventDescriptor::m_opcode uint8_t ___m_opcode_5; }; #pragma pack(pop, tp) struct { char ___m_opcode_5_OffsetPadding_forAlignmentOnly[5]; uint8_t ___m_opcode_5_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_task_6_OffsetPadding[6]; // System.UInt16 System.Diagnostics.Tracing.EventDescriptor::m_task uint16_t ___m_task_6; }; #pragma pack(pop, tp) struct { char ___m_task_6_OffsetPadding_forAlignmentOnly[6]; uint16_t ___m_task_6_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___m_keywords_7_OffsetPadding[8]; // System.Int64 System.Diagnostics.Tracing.EventDescriptor::m_keywords int64_t ___m_keywords_7; }; #pragma pack(pop, tp) struct { char ___m_keywords_7_OffsetPadding_forAlignmentOnly[8]; int64_t ___m_keywords_7_forAlignmentOnly; }; }; }; uint8_t EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E__padding[16]; }; public: inline static int32_t get_offset_of_m_traceloggingId_0() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_traceloggingId_0)); } inline int32_t get_m_traceloggingId_0() const { return ___m_traceloggingId_0; } inline int32_t* get_address_of_m_traceloggingId_0() { return &___m_traceloggingId_0; } inline void set_m_traceloggingId_0(int32_t value) { ___m_traceloggingId_0 = value; } inline static int32_t get_offset_of_m_id_1() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_id_1)); } inline uint16_t get_m_id_1() const { return ___m_id_1; } inline uint16_t* get_address_of_m_id_1() { return &___m_id_1; } inline void set_m_id_1(uint16_t value) { ___m_id_1 = value; } inline static int32_t get_offset_of_m_version_2() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_version_2)); } inline uint8_t get_m_version_2() const { return ___m_version_2; } inline uint8_t* get_address_of_m_version_2() { return &___m_version_2; } inline void set_m_version_2(uint8_t value) { ___m_version_2 = value; } inline static int32_t get_offset_of_m_channel_3() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_channel_3)); } inline uint8_t get_m_channel_3() const { return ___m_channel_3; } inline uint8_t* get_address_of_m_channel_3() { return &___m_channel_3; } inline void set_m_channel_3(uint8_t value) { ___m_channel_3 = value; } inline static int32_t get_offset_of_m_level_4() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_level_4)); } inline uint8_t get_m_level_4() const { return ___m_level_4; } inline uint8_t* get_address_of_m_level_4() { return &___m_level_4; } inline void set_m_level_4(uint8_t value) { ___m_level_4 = value; } inline static int32_t get_offset_of_m_opcode_5() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_opcode_5)); } inline uint8_t get_m_opcode_5() const { return ___m_opcode_5; } inline uint8_t* get_address_of_m_opcode_5() { return &___m_opcode_5; } inline void set_m_opcode_5(uint8_t value) { ___m_opcode_5 = value; } inline static int32_t get_offset_of_m_task_6() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_task_6)); } inline uint16_t get_m_task_6() const { return ___m_task_6; } inline uint16_t* get_address_of_m_task_6() { return &___m_task_6; } inline void set_m_task_6(uint16_t value) { ___m_task_6 = value; } inline static int32_t get_offset_of_m_keywords_7() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_keywords_7)); } inline int64_t get_m_keywords_7() const { return ___m_keywords_7; } inline int64_t* get_address_of_m_keywords_7() { return &___m_keywords_7; } inline void set_m_keywords_7(int64_t value) { ___m_keywords_7 = value; } }; // System.Diagnostics.Tracing.EventSource_EventData struct EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 { public: // System.Int64 System.Diagnostics.Tracing.EventSource_EventData::m_Ptr int64_t ___m_Ptr_0; // System.Int32 System.Diagnostics.Tracing.EventSource_EventData::m_Size int32_t ___m_Size_1; // System.Int32 System.Diagnostics.Tracing.EventSource_EventData::m_Reserved int32_t ___m_Reserved_2; public: inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04, ___m_Ptr_0)); } inline int64_t get_m_Ptr_0() const { return ___m_Ptr_0; } inline int64_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; } inline void set_m_Ptr_0(int64_t value) { ___m_Ptr_0 = value; } inline static int32_t get_offset_of_m_Size_1() { return static_cast<int32_t>(offsetof(EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04, ___m_Size_1)); } inline int32_t get_m_Size_1() const { return ___m_Size_1; } inline int32_t* get_address_of_m_Size_1() { return &___m_Size_1; } inline void set_m_Size_1(int32_t value) { ___m_Size_1 = value; } inline static int32_t get_offset_of_m_Reserved_2() { return static_cast<int32_t>(offsetof(EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04, ___m_Reserved_2)); } inline int32_t get_m_Reserved_2() const { return ___m_Reserved_2; } inline int32_t* get_address_of_m_Reserved_2() { return &___m_Reserved_2; } inline void set_m_Reserved_2(int32_t value) { ___m_Reserved_2 = value; } }; // System.Diagnostics.Tracing.EventSource_Sha1ForNonSecretPurposes struct Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 { public: // System.Int64 System.Diagnostics.Tracing.EventSource_Sha1ForNonSecretPurposes::length int64_t ___length_0; // System.UInt32[] System.Diagnostics.Tracing.EventSource_Sha1ForNonSecretPurposes::w UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___w_1; // System.Int32 System.Diagnostics.Tracing.EventSource_Sha1ForNonSecretPurposes::pos int32_t ___pos_2; public: inline static int32_t get_offset_of_length_0() { return static_cast<int32_t>(offsetof(Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17, ___length_0)); } inline int64_t get_length_0() const { return ___length_0; } inline int64_t* get_address_of_length_0() { return &___length_0; } inline void set_length_0(int64_t value) { ___length_0 = value; } inline static int32_t get_offset_of_w_1() { return static_cast<int32_t>(offsetof(Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17, ___w_1)); } inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* get_w_1() const { return ___w_1; } inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB** get_address_of_w_1() { return &___w_1; } inline void set_w_1(UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* value) { ___w_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___w_1), (void*)value); } inline static int32_t get_offset_of_pos_2() { return static_cast<int32_t>(offsetof(Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17, ___pos_2)); } inline int32_t get_pos_2() const { return ___pos_2; } inline int32_t* get_address_of_pos_2() { return &___pos_2; } inline void set_pos_2(int32_t value) { ___pos_2 = value; } }; // Native definition for P/Invoke marshalling of System.Diagnostics.Tracing.EventSource/Sha1ForNonSecretPurposes struct Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17_marshaled_pinvoke { int64_t ___length_0; Il2CppSafeArray/*NONE*/* ___w_1; int32_t ___pos_2; }; // Native definition for COM marshalling of System.Diagnostics.Tracing.EventSource/Sha1ForNonSecretPurposes struct Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17_marshaled_com { int64_t ___length_0; Il2CppSafeArray/*NONE*/* ___w_1; int32_t ___pos_2; }; // System.Diagnostics.Tracing.EventSourceAttribute struct EventSourceAttribute_t7E8C5240E08345D1B46ADE585550D34D9B16D286 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 { public: // System.String System.Diagnostics.Tracing.EventSourceAttribute::<Name>k__BackingField String_t* ___U3CNameU3Ek__BackingField_0; // System.String System.Diagnostics.Tracing.EventSourceAttribute::<Guid>k__BackingField String_t* ___U3CGuidU3Ek__BackingField_1; // System.String System.Diagnostics.Tracing.EventSourceAttribute::<LocalizationResources>k__BackingField String_t* ___U3CLocalizationResourcesU3Ek__BackingField_2; public: inline static int32_t get_offset_of_U3CNameU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(EventSourceAttribute_t7E8C5240E08345D1B46ADE585550D34D9B16D286, ___U3CNameU3Ek__BackingField_0)); } inline String_t* get_U3CNameU3Ek__BackingField_0() const { return ___U3CNameU3Ek__BackingField_0; } inline String_t** get_address_of_U3CNameU3Ek__BackingField_0() { return &___U3CNameU3Ek__BackingField_0; } inline void set_U3CNameU3Ek__BackingField_0(String_t* value) { ___U3CNameU3Ek__BackingField_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CNameU3Ek__BackingField_0), (void*)value); } inline static int32_t get_offset_of_U3CGuidU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(EventSourceAttribute_t7E8C5240E08345D1B46ADE585550D34D9B16D286, ___U3CGuidU3Ek__BackingField_1)); } inline String_t* get_U3CGuidU3Ek__BackingField_1() const { return ___U3CGuidU3Ek__BackingField_1; } inline String_t** get_address_of_U3CGuidU3Ek__BackingField_1() { return &___U3CGuidU3Ek__BackingField_1; } inline void set_U3CGuidU3Ek__BackingField_1(String_t* value) { ___U3CGuidU3Ek__BackingField_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CGuidU3Ek__BackingField_1), (void*)value); } inline static int32_t get_offset_of_U3CLocalizationResourcesU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(EventSourceAttribute_t7E8C5240E08345D1B46ADE585550D34D9B16D286, ___U3CLocalizationResourcesU3Ek__BackingField_2)); } inline String_t* get_U3CLocalizationResourcesU3Ek__BackingField_2() const { return ___U3CLocalizationResourcesU3Ek__BackingField_2; } inline String_t** get_address_of_U3CLocalizationResourcesU3Ek__BackingField_2() { return &___U3CLocalizationResourcesU3Ek__BackingField_2; } inline void set_U3CLocalizationResourcesU3Ek__BackingField_2(String_t* value) { ___U3CLocalizationResourcesU3Ek__BackingField_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CLocalizationResourcesU3Ek__BackingField_2), (void*)value); } }; // System.Diagnostics.Tracing.EventSourceCreatedEventArgs struct EventSourceCreatedEventArgs_t12E0F6BDFDF8F46E6C583AB8408C30358EC85863 : public EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E { public: // System.Diagnostics.Tracing.EventSource System.Diagnostics.Tracing.EventSourceCreatedEventArgs::<EventSource>k__BackingField EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB * ___U3CEventSourceU3Ek__BackingField_1; public: inline static int32_t get_offset_of_U3CEventSourceU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(EventSourceCreatedEventArgs_t12E0F6BDFDF8F46E6C583AB8408C30358EC85863, ___U3CEventSourceU3Ek__BackingField_1)); } inline EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB * get_U3CEventSourceU3Ek__BackingField_1() const { return ___U3CEventSourceU3Ek__BackingField_1; } inline EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB ** get_address_of_U3CEventSourceU3Ek__BackingField_1() { return &___U3CEventSourceU3Ek__BackingField_1; } inline void set_U3CEventSourceU3Ek__BackingField_1(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB * value) { ___U3CEventSourceU3Ek__BackingField_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CEventSourceU3Ek__BackingField_1), (void*)value); } }; // System.Diagnostics.Tracing.NonEventAttribute struct NonEventAttribute_tEFC3FBCB594E618AF8214093944F2AC045497726 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 { public: public: }; // System.Diagnostics.Tracing.SessionMask struct SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE { public: // System.UInt32 System.Diagnostics.Tracing.SessionMask::m_mask uint32_t ___m_mask_0; public: inline static int32_t get_offset_of_m_mask_0() { return static_cast<int32_t>(offsetof(SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE, ___m_mask_0)); } inline uint32_t get_m_mask_0() const { return ___m_mask_0; } inline uint32_t* get_address_of_m_mask_0() { return &___m_mask_0; } inline void set_m_mask_0(uint32_t value) { ___m_mask_0 = value; } }; // System.Double struct Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409 { public: // System.Double System.Double::m_value double ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409, ___m_value_0)); } inline double get_m_value_0() const { return ___m_value_0; } inline double* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(double value) { ___m_value_0 = value; } }; struct Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_StaticFields { public: // System.Double System.Double::NegativeZero double ___NegativeZero_7; public: inline static int32_t get_offset_of_NegativeZero_7() { return static_cast<int32_t>(offsetof(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_StaticFields, ___NegativeZero_7)); } inline double get_NegativeZero_7() const { return ___NegativeZero_7; } inline double* get_address_of_NegativeZero_7() { return &___NegativeZero_7; } inline void set_NegativeZero_7(double value) { ___NegativeZero_7 = value; } }; // System.Enum struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 : public ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF { public: public: }; struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields { public: // System.Char[] System.Enum::enumSeperatorCharArray CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___enumSeperatorCharArray_0; public: inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields, ___enumSeperatorCharArray_0)); } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; } inline void set_enumSeperatorCharArray_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value) { ___enumSeperatorCharArray_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Enum struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_pinvoke { }; // Native definition for COM marshalling of System.Enum struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_com { }; // System.FlagsAttribute struct FlagsAttribute_t7FB7BEFA2E1F2C6E3362A5996E82697475FFE867 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 { public: public: }; // System.Globalization.InternalCodePageDataItem struct InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 { public: // System.UInt16 System.Globalization.InternalCodePageDataItem::codePage uint16_t ___codePage_0; // System.UInt16 System.Globalization.InternalCodePageDataItem::uiFamilyCodePage uint16_t ___uiFamilyCodePage_1; // System.UInt32 System.Globalization.InternalCodePageDataItem::flags uint32_t ___flags_2; // System.String System.Globalization.InternalCodePageDataItem::Names String_t* ___Names_3; public: inline static int32_t get_offset_of_codePage_0() { return static_cast<int32_t>(offsetof(InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4, ___codePage_0)); } inline uint16_t get_codePage_0() const { return ___codePage_0; } inline uint16_t* get_address_of_codePage_0() { return &___codePage_0; } inline void set_codePage_0(uint16_t value) { ___codePage_0 = value; } inline static int32_t get_offset_of_uiFamilyCodePage_1() { return static_cast<int32_t>(offsetof(InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4, ___uiFamilyCodePage_1)); } inline uint16_t get_uiFamilyCodePage_1() const { return ___uiFamilyCodePage_1; } inline uint16_t* get_address_of_uiFamilyCodePage_1() { return &___uiFamilyCodePage_1; } inline void set_uiFamilyCodePage_1(uint16_t value) { ___uiFamilyCodePage_1 = value; } inline static int32_t get_offset_of_flags_2() { return static_cast<int32_t>(offsetof(InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4, ___flags_2)); } inline uint32_t get_flags_2() const { return ___flags_2; } inline uint32_t* get_address_of_flags_2() { return &___flags_2; } inline void set_flags_2(uint32_t value) { ___flags_2 = value; } inline static int32_t get_offset_of_Names_3() { return static_cast<int32_t>(offsetof(InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4, ___Names_3)); } inline String_t* get_Names_3() const { return ___Names_3; } inline String_t** get_address_of_Names_3() { return &___Names_3; } inline void set_Names_3(String_t* value) { ___Names_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___Names_3), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Globalization.InternalCodePageDataItem struct InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_marshaled_pinvoke { uint16_t ___codePage_0; uint16_t ___uiFamilyCodePage_1; uint32_t ___flags_2; char* ___Names_3; }; // Native definition for COM marshalling of System.Globalization.InternalCodePageDataItem struct InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_marshaled_com { uint16_t ___codePage_0; uint16_t ___uiFamilyCodePage_1; uint32_t ___flags_2; Il2CppChar* ___Names_3; }; // System.Guid struct Guid_t { public: // System.Int32 System.Guid::_a int32_t ____a_1; // System.Int16 System.Guid::_b int16_t ____b_2; // System.Int16 System.Guid::_c int16_t ____c_3; // System.Byte System.Guid::_d uint8_t ____d_4; // System.Byte System.Guid::_e uint8_t ____e_5; // System.Byte System.Guid::_f uint8_t ____f_6; // System.Byte System.Guid::_g uint8_t ____g_7; // System.Byte System.Guid::_h uint8_t ____h_8; // System.Byte System.Guid::_i uint8_t ____i_9; // System.Byte System.Guid::_j uint8_t ____j_10; // System.Byte System.Guid::_k uint8_t ____k_11; public: inline static int32_t get_offset_of__a_1() { return static_cast<int32_t>(offsetof(Guid_t, ____a_1)); } inline int32_t get__a_1() const { return ____a_1; } inline int32_t* get_address_of__a_1() { return &____a_1; } inline void set__a_1(int32_t value) { ____a_1 = value; } inline static int32_t get_offset_of__b_2() { return static_cast<int32_t>(offsetof(Guid_t, ____b_2)); } inline int16_t get__b_2() const { return ____b_2; } inline int16_t* get_address_of__b_2() { return &____b_2; } inline void set__b_2(int16_t value) { ____b_2 = value; } inline static int32_t get_offset_of__c_3() { return static_cast<int32_t>(offsetof(Guid_t, ____c_3)); } inline int16_t get__c_3() const { return ____c_3; } inline int16_t* get_address_of__c_3() { return &____c_3; } inline void set__c_3(int16_t value) { ____c_3 = value; } inline static int32_t get_offset_of__d_4() { return static_cast<int32_t>(offsetof(Guid_t, ____d_4)); } inline uint8_t get__d_4() const { return ____d_4; } inline uint8_t* get_address_of__d_4() { return &____d_4; } inline void set__d_4(uint8_t value) { ____d_4 = value; } inline static int32_t get_offset_of__e_5() { return static_cast<int32_t>(offsetof(Guid_t, ____e_5)); } inline uint8_t get__e_5() const { return ____e_5; } inline uint8_t* get_address_of__e_5() { return &____e_5; } inline void set__e_5(uint8_t value) { ____e_5 = value; } inline static int32_t get_offset_of__f_6() { return static_cast<int32_t>(offsetof(Guid_t, ____f_6)); } inline uint8_t get__f_6() const { return ____f_6; } inline uint8_t* get_address_of__f_6() { return &____f_6; } inline void set__f_6(uint8_t value) { ____f_6 = value; } inline static int32_t get_offset_of__g_7() { return static_cast<int32_t>(offsetof(Guid_t, ____g_7)); } inline uint8_t get__g_7() const { return ____g_7; } inline uint8_t* get_address_of__g_7() { return &____g_7; } inline void set__g_7(uint8_t value) { ____g_7 = value; } inline static int32_t get_offset_of__h_8() { return static_cast<int32_t>(offsetof(Guid_t, ____h_8)); } inline uint8_t get__h_8() const { return ____h_8; } inline uint8_t* get_address_of__h_8() { return &____h_8; } inline void set__h_8(uint8_t value) { ____h_8 = value; } inline static int32_t get_offset_of__i_9() { return static_cast<int32_t>(offsetof(Guid_t, ____i_9)); } inline uint8_t get__i_9() const { return ____i_9; } inline uint8_t* get_address_of__i_9() { return &____i_9; } inline void set__i_9(uint8_t value) { ____i_9 = value; } inline static int32_t get_offset_of__j_10() { return static_cast<int32_t>(offsetof(Guid_t, ____j_10)); } inline uint8_t get__j_10() const { return ____j_10; } inline uint8_t* get_address_of__j_10() { return &____j_10; } inline void set__j_10(uint8_t value) { ____j_10 = value; } inline static int32_t get_offset_of__k_11() { return static_cast<int32_t>(offsetof(Guid_t, ____k_11)); } inline uint8_t get__k_11() const { return ____k_11; } inline uint8_t* get_address_of__k_11() { return &____k_11; } inline void set__k_11(uint8_t value) { ____k_11 = value; } }; struct Guid_t_StaticFields { public: // System.Guid System.Guid::Empty Guid_t ___Empty_0; // System.Object System.Guid::_rngAccess RuntimeObject * ____rngAccess_12; // System.Security.Cryptography.RandomNumberGenerator System.Guid::_rng RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * ____rng_13; public: inline static int32_t get_offset_of_Empty_0() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ___Empty_0)); } inline Guid_t get_Empty_0() const { return ___Empty_0; } inline Guid_t * get_address_of_Empty_0() { return &___Empty_0; } inline void set_Empty_0(Guid_t value) { ___Empty_0 = value; } inline static int32_t get_offset_of__rngAccess_12() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rngAccess_12)); } inline RuntimeObject * get__rngAccess_12() const { return ____rngAccess_12; } inline RuntimeObject ** get_address_of__rngAccess_12() { return &____rngAccess_12; } inline void set__rngAccess_12(RuntimeObject * value) { ____rngAccess_12 = value; Il2CppCodeGenWriteBarrier((void**)(&____rngAccess_12), (void*)value); } inline static int32_t get_offset_of__rng_13() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rng_13)); } inline RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * get__rng_13() const { return ____rng_13; } inline RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 ** get_address_of__rng_13() { return &____rng_13; } inline void set__rng_13(RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * value) { ____rng_13 = value; Il2CppCodeGenWriteBarrier((void**)(&____rng_13), (void*)value); } }; // System.IO.TextReader struct TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF { public: public: }; struct TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_StaticFields { public: // System.Func`2<System.Object,System.String> System.IO.TextReader::_ReadLineDelegate Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF * ____ReadLineDelegate_1; // System.Func`2<System.Object,System.Int32> System.IO.TextReader::_ReadDelegate Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * ____ReadDelegate_2; // System.IO.TextReader System.IO.TextReader::Null TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * ___Null_3; public: inline static int32_t get_offset_of__ReadLineDelegate_1() { return static_cast<int32_t>(offsetof(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_StaticFields, ____ReadLineDelegate_1)); } inline Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF * get__ReadLineDelegate_1() const { return ____ReadLineDelegate_1; } inline Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF ** get_address_of__ReadLineDelegate_1() { return &____ReadLineDelegate_1; } inline void set__ReadLineDelegate_1(Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF * value) { ____ReadLineDelegate_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____ReadLineDelegate_1), (void*)value); } inline static int32_t get_offset_of__ReadDelegate_2() { return static_cast<int32_t>(offsetof(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_StaticFields, ____ReadDelegate_2)); } inline Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * get__ReadDelegate_2() const { return ____ReadDelegate_2; } inline Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 ** get_address_of__ReadDelegate_2() { return &____ReadDelegate_2; } inline void set__ReadDelegate_2(Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * value) { ____ReadDelegate_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____ReadDelegate_2), (void*)value); } inline static int32_t get_offset_of_Null_3() { return static_cast<int32_t>(offsetof(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_StaticFields, ___Null_3)); } inline TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * get_Null_3() const { return ___Null_3; } inline TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A ** get_address_of_Null_3() { return &___Null_3; } inline void set_Null_3(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * value) { ___Null_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___Null_3), (void*)value); } }; // System.Int16 struct Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D { public: // System.Int16 System.Int16::m_value int16_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, ___m_value_0)); } inline int16_t get_m_value_0() const { return ___m_value_0; } inline int16_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int16_t value) { ___m_value_0 = value; } }; // System.Int32 struct Int32_t585191389E07734F19F3156FF88FB3EF4800D102 { public: // System.Int32 System.Int32::m_value int32_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int32_t585191389E07734F19F3156FF88FB3EF4800D102, ___m_value_0)); } inline int32_t get_m_value_0() const { return ___m_value_0; } inline int32_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int32_t value) { ___m_value_0 = value; } }; // System.Int64 struct Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 { public: // System.Int64 System.Int64::m_value int64_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, ___m_value_0)); } inline int64_t get_m_value_0() const { return ___m_value_0; } inline int64_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int64_t value) { ___m_value_0 = value; } }; // System.IntPtr struct IntPtr_t { public: // System.Void* System.IntPtr::m_value void* ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); } inline void* get_m_value_0() const { return ___m_value_0; } inline void** get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(void* value) { ___m_value_0 = value; } }; struct IntPtr_t_StaticFields { public: // System.IntPtr System.IntPtr::Zero intptr_t ___Zero_1; public: inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); } inline intptr_t get_Zero_1() const { return ___Zero_1; } inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; } inline void set_Zero_1(intptr_t value) { ___Zero_1 = value; } }; // System.Reflection.FieldInfo struct FieldInfo_t : public MemberInfo_t { public: public: }; // System.Reflection.MethodBase struct MethodBase_t : public MemberInfo_t { public: public: }; // System.Reflection.PropertyInfo struct PropertyInfo_t : public MemberInfo_t { public: public: }; // System.Runtime.CompilerServices.Ephemeron struct Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA { public: // System.Object System.Runtime.CompilerServices.Ephemeron::key RuntimeObject * ___key_0; // System.Object System.Runtime.CompilerServices.Ephemeron::value RuntimeObject * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA, ___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(Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA, ___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.Runtime.CompilerServices.Ephemeron struct Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_marshaled_pinvoke { Il2CppIUnknown* ___key_0; Il2CppIUnknown* ___value_1; }; // Native definition for COM marshalling of System.Runtime.CompilerServices.Ephemeron struct Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_marshaled_com { Il2CppIUnknown* ___key_0; Il2CppIUnknown* ___value_1; }; // System.Runtime.InteropServices.GCHandle struct GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 { public: // System.Int32 System.Runtime.InteropServices.GCHandle::handle int32_t ___handle_0; public: inline static int32_t get_offset_of_handle_0() { return static_cast<int32_t>(offsetof(GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3, ___handle_0)); } inline int32_t get_handle_0() const { return ___handle_0; } inline int32_t* get_address_of_handle_0() { return &___handle_0; } inline void set_handle_0(int32_t value) { ___handle_0 = value; } }; // System.SByte struct SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF { public: // System.SByte System.SByte::m_value int8_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, ___m_value_0)); } inline int8_t get_m_value_0() const { return ___m_value_0; } inline int8_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int8_t value) { ___m_value_0 = value; } }; // System.Single struct Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 { public: // System.Single System.Single::m_value float ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, ___m_value_0)); } inline float get_m_value_0() const { return ___m_value_0; } inline float* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(float value) { ___m_value_0 = value; } }; // System.Threading.Thread struct Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 : public CriticalFinalizerObject_t8B006E1DEE084E781F5C0F3283E9226E28894DD9 { public: // System.Threading.InternalThread System.Threading.Thread::internal_thread InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192 * ___internal_thread_6; // System.Object System.Threading.Thread::m_ThreadStartArg RuntimeObject * ___m_ThreadStartArg_7; // System.Object System.Threading.Thread::pending_exception RuntimeObject * ___pending_exception_8; // System.Security.Principal.IPrincipal System.Threading.Thread::principal RuntimeObject* ___principal_9; // System.Int32 System.Threading.Thread::principal_version int32_t ___principal_version_10; // System.MulticastDelegate System.Threading.Thread::m_Delegate MulticastDelegate_t * ___m_Delegate_12; // System.Threading.ExecutionContext System.Threading.Thread::m_ExecutionContext ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * ___m_ExecutionContext_13; // System.Boolean System.Threading.Thread::m_ExecutionContextBelongsToOuterScope bool ___m_ExecutionContextBelongsToOuterScope_14; public: inline static int32_t get_offset_of_internal_thread_6() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7, ___internal_thread_6)); } inline InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192 * get_internal_thread_6() const { return ___internal_thread_6; } inline InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192 ** get_address_of_internal_thread_6() { return &___internal_thread_6; } inline void set_internal_thread_6(InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192 * value) { ___internal_thread_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___internal_thread_6), (void*)value); } inline static int32_t get_offset_of_m_ThreadStartArg_7() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7, ___m_ThreadStartArg_7)); } inline RuntimeObject * get_m_ThreadStartArg_7() const { return ___m_ThreadStartArg_7; } inline RuntimeObject ** get_address_of_m_ThreadStartArg_7() { return &___m_ThreadStartArg_7; } inline void set_m_ThreadStartArg_7(RuntimeObject * value) { ___m_ThreadStartArg_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ThreadStartArg_7), (void*)value); } inline static int32_t get_offset_of_pending_exception_8() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7, ___pending_exception_8)); } inline RuntimeObject * get_pending_exception_8() const { return ___pending_exception_8; } inline RuntimeObject ** get_address_of_pending_exception_8() { return &___pending_exception_8; } inline void set_pending_exception_8(RuntimeObject * value) { ___pending_exception_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___pending_exception_8), (void*)value); } inline static int32_t get_offset_of_principal_9() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7, ___principal_9)); } inline RuntimeObject* get_principal_9() const { return ___principal_9; } inline RuntimeObject** get_address_of_principal_9() { return &___principal_9; } inline void set_principal_9(RuntimeObject* value) { ___principal_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___principal_9), (void*)value); } inline static int32_t get_offset_of_principal_version_10() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7, ___principal_version_10)); } inline int32_t get_principal_version_10() const { return ___principal_version_10; } inline int32_t* get_address_of_principal_version_10() { return &___principal_version_10; } inline void set_principal_version_10(int32_t value) { ___principal_version_10 = value; } inline static int32_t get_offset_of_m_Delegate_12() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7, ___m_Delegate_12)); } inline MulticastDelegate_t * get_m_Delegate_12() const { return ___m_Delegate_12; } inline MulticastDelegate_t ** get_address_of_m_Delegate_12() { return &___m_Delegate_12; } inline void set_m_Delegate_12(MulticastDelegate_t * value) { ___m_Delegate_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Delegate_12), (void*)value); } inline static int32_t get_offset_of_m_ExecutionContext_13() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7, ___m_ExecutionContext_13)); } inline ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * get_m_ExecutionContext_13() const { return ___m_ExecutionContext_13; } inline ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 ** get_address_of_m_ExecutionContext_13() { return &___m_ExecutionContext_13; } inline void set_m_ExecutionContext_13(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * value) { ___m_ExecutionContext_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ExecutionContext_13), (void*)value); } inline static int32_t get_offset_of_m_ExecutionContextBelongsToOuterScope_14() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7, ___m_ExecutionContextBelongsToOuterScope_14)); } inline bool get_m_ExecutionContextBelongsToOuterScope_14() const { return ___m_ExecutionContextBelongsToOuterScope_14; } inline bool* get_address_of_m_ExecutionContextBelongsToOuterScope_14() { return &___m_ExecutionContextBelongsToOuterScope_14; } inline void set_m_ExecutionContextBelongsToOuterScope_14(bool value) { ___m_ExecutionContextBelongsToOuterScope_14 = value; } }; struct Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_StaticFields { public: // System.LocalDataStoreMgr System.Threading.Thread::s_LocalDataStoreMgr LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * ___s_LocalDataStoreMgr_0; // System.Threading.AsyncLocal`1<System.Globalization.CultureInfo> System.Threading.Thread::s_asyncLocalCurrentCulture AsyncLocal_1_tD39651C2EDD14B144FF3D9B9C716F807EB57655A * ___s_asyncLocalCurrentCulture_4; // System.Threading.AsyncLocal`1<System.Globalization.CultureInfo> System.Threading.Thread::s_asyncLocalCurrentUICulture AsyncLocal_1_tD39651C2EDD14B144FF3D9B9C716F807EB57655A * ___s_asyncLocalCurrentUICulture_5; public: inline static int32_t get_offset_of_s_LocalDataStoreMgr_0() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_StaticFields, ___s_LocalDataStoreMgr_0)); } inline LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * get_s_LocalDataStoreMgr_0() const { return ___s_LocalDataStoreMgr_0; } inline LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 ** get_address_of_s_LocalDataStoreMgr_0() { return &___s_LocalDataStoreMgr_0; } inline void set_s_LocalDataStoreMgr_0(LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * value) { ___s_LocalDataStoreMgr_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_LocalDataStoreMgr_0), (void*)value); } inline static int32_t get_offset_of_s_asyncLocalCurrentCulture_4() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_StaticFields, ___s_asyncLocalCurrentCulture_4)); } inline AsyncLocal_1_tD39651C2EDD14B144FF3D9B9C716F807EB57655A * get_s_asyncLocalCurrentCulture_4() const { return ___s_asyncLocalCurrentCulture_4; } inline AsyncLocal_1_tD39651C2EDD14B144FF3D9B9C716F807EB57655A ** get_address_of_s_asyncLocalCurrentCulture_4() { return &___s_asyncLocalCurrentCulture_4; } inline void set_s_asyncLocalCurrentCulture_4(AsyncLocal_1_tD39651C2EDD14B144FF3D9B9C716F807EB57655A * value) { ___s_asyncLocalCurrentCulture_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_asyncLocalCurrentCulture_4), (void*)value); } inline static int32_t get_offset_of_s_asyncLocalCurrentUICulture_5() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_StaticFields, ___s_asyncLocalCurrentUICulture_5)); } inline AsyncLocal_1_tD39651C2EDD14B144FF3D9B9C716F807EB57655A * get_s_asyncLocalCurrentUICulture_5() const { return ___s_asyncLocalCurrentUICulture_5; } inline AsyncLocal_1_tD39651C2EDD14B144FF3D9B9C716F807EB57655A ** get_address_of_s_asyncLocalCurrentUICulture_5() { return &___s_asyncLocalCurrentUICulture_5; } inline void set_s_asyncLocalCurrentUICulture_5(AsyncLocal_1_tD39651C2EDD14B144FF3D9B9C716F807EB57655A * value) { ___s_asyncLocalCurrentUICulture_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_asyncLocalCurrentUICulture_5), (void*)value); } }; struct Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_ThreadStaticFields { public: // System.LocalDataStoreHolder System.Threading.Thread::s_LocalDataStore LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * ___s_LocalDataStore_1; // System.Globalization.CultureInfo System.Threading.Thread::m_CurrentCulture CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___m_CurrentCulture_2; // System.Globalization.CultureInfo System.Threading.Thread::m_CurrentUICulture CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___m_CurrentUICulture_3; // System.Threading.Thread System.Threading.Thread::current_thread Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * ___current_thread_11; public: inline static int32_t get_offset_of_s_LocalDataStore_1() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_ThreadStaticFields, ___s_LocalDataStore_1)); } inline LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * get_s_LocalDataStore_1() const { return ___s_LocalDataStore_1; } inline LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 ** get_address_of_s_LocalDataStore_1() { return &___s_LocalDataStore_1; } inline void set_s_LocalDataStore_1(LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * value) { ___s_LocalDataStore_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_LocalDataStore_1), (void*)value); } inline static int32_t get_offset_of_m_CurrentCulture_2() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_ThreadStaticFields, ___m_CurrentCulture_2)); } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_m_CurrentCulture_2() const { return ___m_CurrentCulture_2; } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_m_CurrentCulture_2() { return &___m_CurrentCulture_2; } inline void set_m_CurrentCulture_2(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value) { ___m_CurrentCulture_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_CurrentCulture_2), (void*)value); } inline static int32_t get_offset_of_m_CurrentUICulture_3() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_ThreadStaticFields, ___m_CurrentUICulture_3)); } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_m_CurrentUICulture_3() const { return ___m_CurrentUICulture_3; } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_m_CurrentUICulture_3() { return &___m_CurrentUICulture_3; } inline void set_m_CurrentUICulture_3(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value) { ___m_CurrentUICulture_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_CurrentUICulture_3), (void*)value); } inline static int32_t get_offset_of_current_thread_11() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_ThreadStaticFields, ___current_thread_11)); } inline Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * get_current_thread_11() const { return ___current_thread_11; } inline Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 ** get_address_of_current_thread_11() { return &___current_thread_11; } inline void set_current_thread_11(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * value) { ___current_thread_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___current_thread_11), (void*)value); } }; // System.UInt16 struct UInt16_tAE45CEF73BF720100519F6867F32145D075F928E { public: // System.UInt16 System.UInt16::m_value uint16_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt16_tAE45CEF73BF720100519F6867F32145D075F928E, ___m_value_0)); } inline uint16_t get_m_value_0() const { return ___m_value_0; } inline uint16_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint16_t value) { ___m_value_0 = value; } }; // System.UInt32 struct UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B { public: // System.UInt32 System.UInt32::m_value uint32_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B, ___m_value_0)); } inline uint32_t get_m_value_0() const { return ___m_value_0; } inline uint32_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint32_t value) { ___m_value_0 = value; } }; // System.UInt64 struct UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E { public: // System.UInt64 System.UInt64::m_value uint64_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E, ___m_value_0)); } inline uint64_t get_m_value_0() const { return ___m_value_0; } inline uint64_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint64_t value) { ___m_value_0 = value; } }; // System.UIntPtr struct UIntPtr_t { public: // System.Void* System.UIntPtr::_pointer void* ____pointer_1; public: inline static int32_t get_offset_of__pointer_1() { return static_cast<int32_t>(offsetof(UIntPtr_t, ____pointer_1)); } inline void* get__pointer_1() const { return ____pointer_1; } inline void** get_address_of__pointer_1() { return &____pointer_1; } inline void set__pointer_1(void* value) { ____pointer_1 = value; } }; struct UIntPtr_t_StaticFields { public: // System.UIntPtr System.UIntPtr::Zero uintptr_t ___Zero_0; public: inline static int32_t get_offset_of_Zero_0() { return static_cast<int32_t>(offsetof(UIntPtr_t_StaticFields, ___Zero_0)); } inline uintptr_t get_Zero_0() const { return ___Zero_0; } inline uintptr_t* get_address_of_Zero_0() { return &___Zero_0; } inline void set_Zero_0(uintptr_t value) { ___Zero_0 = value; } }; // System.Void struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017 { public: union { struct { }; uint8_t Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017__padding[1]; }; public: }; // <PrivateImplementationDetails> struct U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A : public RuntimeObject { public: public: }; struct U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields { public: // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::0588059ACBD52F7EA2835882F977A9CF72EB9775 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___0588059ACBD52F7EA2835882F977A9CF72EB9775_0; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D84 <PrivateImplementationDetails>::0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C __StaticArrayInitTypeSizeU3D84_tF52293EFB26AA1D2C169389BB83253C5BAE8076A ___0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D240 <PrivateImplementationDetails>::121EC59E23F7559B28D338D562528F6299C2DE22 __StaticArrayInitTypeSizeU3D240_t5643A77865294845ACC505FE42EA1067CAC04FD8 ___121EC59E23F7559B28D338D562528F6299C2DE22_2; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D24 <PrivateImplementationDetails>::1730F09044E91DB8371B849EFF5E6D17BDE4AED0 __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 ___1730F09044E91DB8371B849EFF5E6D17BDE4AED0_3; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D16 <PrivateImplementationDetails>::1FE6CE411858B3D864679DE2139FB081F08BFACD __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 ___1FE6CE411858B3D864679DE2139FB081F08BFACD_4; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::25420D0055076FA8D3E4DD96BC53AE24DE6E619F __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___25420D0055076FA8D3E4DD96BC53AE24DE6E619F_5; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1208 <PrivateImplementationDetails>::25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E __StaticArrayInitTypeSizeU3D1208_tC58894ECFE2C4FFD2B8FCDF958800099A737C1DD ___25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D42 <PrivateImplementationDetails>::29C1A61550F0E3260E1953D4FAD71C256218EF40 __StaticArrayInitTypeSizeU3D42_t3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4 ___29C1A61550F0E3260E1953D4FAD71C256218EF40_7; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::2B33BEC8C30DFDC49DAFE20D3BDE19487850D717 __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___2B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D36 <PrivateImplementationDetails>::2BA840FF6020B8FF623DBCB7188248CF853FAF4F __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 ___2BA840FF6020B8FF623DBCB7188248CF853FAF4F_9; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::2C840AFA48C27B9C05593E468C1232CA1CC74AFD __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___2C840AFA48C27B9C05593E468C1232CA1CC74AFD_10; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D16 <PrivateImplementationDetails>::2D1DA5BB407F0C11C3B5116196C0C6374D932B20 __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 ___2D1DA5BB407F0C11C3B5116196C0C6374D932B20_11; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::34476C29F6F81C989CFCA42F7C06E84C66236834 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___34476C29F6F81C989CFCA42F7C06E84C66236834_13; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2382 <PrivateImplementationDetails>::35EED060772F2748D13B745DAEC8CD7BD3B87604 __StaticArrayInitTypeSizeU3D2382_tB4AF2C49C5120B6EB285BA4D247340D8E243A1BA ___35EED060772F2748D13B745DAEC8CD7BD3B87604_14; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D38 <PrivateImplementationDetails>::375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3 __StaticArrayInitTypeSizeU3D38_tA52D24A5F9970582D6B55437967C9BD32E03F05D ___375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1450 <PrivateImplementationDetails>::379C06C9E702D31469C29033F0DD63931EB349F5 __StaticArrayInitTypeSizeU3D1450_t58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4 ___379C06C9E702D31469C29033F0DD63931EB349F5_16; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D10 <PrivateImplementationDetails>::399BD13E240F33F808CA7940293D6EC4E6FD5A00 __StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C ___399BD13E240F33F808CA7940293D6EC4E6FD5A00_17; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::39C9CE73C7B0619D409EF28344F687C1B5C130FE __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___39C9CE73C7B0619D409EF28344F687C1B5C130FE_18; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D320 <PrivateImplementationDetails>::3C53AFB51FEC23491684C7BEDBC6D4E0F409F851 __StaticArrayInitTypeSizeU3D320_t48B9242FB90DB2A21A723BBAB141500A9641EB49 ___3C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D64 <PrivateImplementationDetails>::3E4BBF9D0CDD2E34F78AA7A9A3979DCE1F7B02BD __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 ___3E4BBF9D0CDD2E34F78AA7A9A3979DCE1F7B02BD_20; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::3E823444D2DFECF0F90B436B88F02A533CB376F1 __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___3E823444D2DFECF0F90B436B88F02A533CB376F1_21; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::3FE6C283BCF384FD2C8789880DFF59664E2AB4A1 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___3FE6C283BCF384FD2C8789880DFF59664E2AB4A1_22; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1665 <PrivateImplementationDetails>::40981BAA39513E58B28DCF0103CC04DE2A0A0444 __StaticArrayInitTypeSizeU3D1665_tCD7752863825B82B07752CCE72A581C169E19C20 ___40981BAA39513E58B28DCF0103CC04DE2A0A0444_23; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::40E7C49413D261F3F38AD3A870C0AC69C8BDA048 __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___40E7C49413D261F3F38AD3A870C0AC69C8BDA048_24; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::421EC7E82F2967DF6CA8C3605514DC6F29EE5845 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___421EC7E82F2967DF6CA8C3605514DC6F29EE5845_25; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::4858DB4AA76D3933F1CA9E6712D4FDB16903F628 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___4858DB4AA76D3933F1CA9E6712D4FDB16903F628_26; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::4F7A8890F332B22B8DE0BD29D36FA7364748D76A __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___4F7A8890F332B22B8DE0BD29D36FA7364748D76A_27; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::536422B321459B242ADED7240B7447E904E083E3 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___536422B321459B242ADED7240B7447E904E083E3_28; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1080 <PrivateImplementationDetails>::5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3 __StaticArrayInitTypeSizeU3D1080_tCE36DA14009C45CFDEA7F63618BE90F8DF89AC84 ___5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_29; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3 <PrivateImplementationDetails>::57218C316B6921E2CD61027A2387EDC31A2D9471 __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E ___57218C316B6921E2CD61027A2387EDC31A2D9471_30; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::57F320D62696EC99727E0FE2045A05F1289CC0C6 __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___57F320D62696EC99727E0FE2045A05F1289CC0C6_31; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D212 <PrivateImplementationDetails>::594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3 __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF ___594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_32; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D36 <PrivateImplementationDetails>::5BBDF8058D4235C33F2E8DCF76004031B6187A2F __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 ___5BBDF8058D4235C33F2E8DCF76004031B6187A2F_33; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D288 <PrivateImplementationDetails>::5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF __StaticArrayInitTypeSizeU3D288_t7B40D7F3A8D262F90A76460FF94E92CE08AFCF55 ___5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_34; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::5BFE2819B4778217C56416C7585FF0E56EBACD89 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___5BFE2819B4778217C56416C7585FF0E56EBACD89_35; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D128 <PrivateImplementationDetails>::609C0E8D8DA86A09D6013D301C86BA8782C16B8C __StaticArrayInitTypeSizeU3D128_t1B13688BD6EA82B964734FF8C3181161EF5624B1 ___609C0E8D8DA86A09D6013D301C86BA8782C16B8C_36; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::65E32B4E150FD8D24B93B0D42A17F1DAD146162B __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___65E32B4E150FD8D24B93B0D42A17F1DAD146162B_37; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D52 <PrivateImplementationDetails>::6770974FEF1E98B9C1864370E2B5B786EB0EA39E __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A ___6770974FEF1E98B9C1864370E2B5B786EB0EA39E_38; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::67EEAD805D708D9AA4E14BF747E44CED801744F3 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___67EEAD805D708D9AA4E14BF747E44CED801744F3_39; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D120 <PrivateImplementationDetails>::6C71197D228427B2864C69B357FEF73D8C9D59DF __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 ___6C71197D228427B2864C69B357FEF73D8C9D59DF_40; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D16 <PrivateImplementationDetails>::6CEE45445AFD150B047A5866FFA76AA651CDB7B7 __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 ___6CEE45445AFD150B047A5866FFA76AA651CDB7B7_41; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D76 <PrivateImplementationDetails>::6FC754859E4EC74E447048364B216D825C6F8FE7 __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB ___6FC754859E4EC74E447048364B216D825C6F8FE7_42; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::704939CD172085D1295FCE3F1D92431D685D7AA2 __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___704939CD172085D1295FCE3F1D92431D685D7AA2_43; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D24 <PrivateImplementationDetails>::7088AAE49F0627B72729078DE6E3182DDCF8ED99 __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 ___7088AAE49F0627B72729078DE6E3182DDCF8ED99_44; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::7341C933A70EAE383CC50C4B945ADB8E08F06737 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___7341C933A70EAE383CC50C4B945ADB8E08F06737_45; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68 __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_46; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D21252 <PrivateImplementationDetails>::811A927B7DADD378BE60BBDE794B9277AA9B50EC __StaticArrayInitTypeSizeU3D21252_tCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462 ___811A927B7DADD378BE60BBDE794B9277AA9B50EC_47; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D36 <PrivateImplementationDetails>::81917F1E21F3C22B9F916994547A614FB03E968E __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 ___81917F1E21F3C22B9F916994547A614FB03E968E_48; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::823566DA642D6EA356E15585921F2A4CA23D6760 __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___823566DA642D6EA356E15585921F2A4CA23D6760_49; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::82C2A59850B2E85BCE1A45A479537A384DF6098D __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___82C2A59850B2E85BCE1A45A479537A384DF6098D_50; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D44 <PrivateImplementationDetails>::82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4 __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F ___82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_51; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::871B9CF85DB352BAADF12BAE8F19857683E385AC __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___871B9CF85DB352BAADF12BAE8F19857683E385AC_52; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D16 <PrivateImplementationDetails>::89A040451C8CC5C8FB268BE44BDD74964C104155 __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 ___89A040451C8CC5C8FB268BE44BDD74964C104155_53; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::8CAA092E783257106251246FF5C97F88D28517A6 __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___8CAA092E783257106251246FF5C97F88D28517A6_54; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2100 <PrivateImplementationDetails>::8D231DD55FE1AD7631BBD0905A17D5EB616C2154 __StaticArrayInitTypeSizeU3D2100_t75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA ___8D231DD55FE1AD7631BBD0905A17D5EB616C2154_55; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::8E10AC2F34545DFBBF3FCBC06055D797A8C99991 __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___8E10AC2F34545DFBBF3FCBC06055D797A8C99991_56; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::93A63E90605400F34B49F0EB3361D23C89164BDA __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___93A63E90605400F34B49F0EB3361D23C89164BDA_57; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::94841DD2F330CCB1089BF413E4FA9B04505152E2 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___94841DD2F330CCB1089BF413E4FA9B04505152E2_58; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::95264589E48F94B7857CFF398FB72A537E13EEE2 __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___95264589E48F94B7857CFF398FB72A537E13EEE2_59; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::95C48758CAE1715783472FB073AB158AB8A0AB2A __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___95C48758CAE1715783472FB073AB158AB8A0AB2A_60; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::973417296623D8DC6961B09664E54039E44CA5D8 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___973417296623D8DC6961B09664E54039E44CA5D8_61; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::A0074C15377C0C870B055927403EA9FA7A349D12 __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___A0074C15377C0C870B055927403EA9FA7A349D12_62; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D130 <PrivateImplementationDetails>::A1319B706116AB2C6D44483F60A7D0ACEA543396 __StaticArrayInitTypeSizeU3D130_t732A6F42953325ADC5746FF1A652A2974473AF4F ___A1319B706116AB2C6D44483F60A7D0ACEA543396_63; // System.Int64 <PrivateImplementationDetails>::A13AA52274D951A18029131A8DDECF76B569A15D int64_t ___A13AA52274D951A18029131A8DDECF76B569A15D_64; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D212 <PrivateImplementationDetails>::A5444763673307F6828C748D4B9708CFC02B0959 __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF ___A5444763673307F6828C748D4B9708CFC02B0959_65; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::A6732F8E7FC23766AB329B492D6BF82E3B33233F __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___A6732F8E7FC23766AB329B492D6BF82E3B33233F_66; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D174 <PrivateImplementationDetails>::A705A106D95282BD15E13EEA6B0AF583FF786D83 __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F ___A705A106D95282BD15E13EEA6B0AF583FF786D83_67; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1018 <PrivateImplementationDetails>::A8A491E4CED49AE0027560476C10D933CE70C8DF __StaticArrayInitTypeSizeU3D1018_t7825BE1556EFF874DAFDC230EB69C85A48DBCBC4 ___A8A491E4CED49AE0027560476C10D933CE70C8DF_68; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::AC791C4F39504D1184B73478943D0636258DA7B1 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___AC791C4F39504D1184B73478943D0636258DA7B1_69; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D52 <PrivateImplementationDetails>::AFCD4E1211233E99373A3367B23105A3D624B1F2 __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A ___AFCD4E1211233E99373A3367B23105A3D624B1F2_70; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::B472ED77CB3B2A66D49D179F1EE2081B70A6AB61 __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_71; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D256 <PrivateImplementationDetails>::B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F ___B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_72; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D998 <PrivateImplementationDetails>::B881DA88BE0B68D8A6B6B6893822586B8B2CFC45 __StaticArrayInitTypeSizeU3D998_t8A5C9782706B510180A1B9C9F7E96F8F48421B8C ___B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_73; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D162 <PrivateImplementationDetails>::B8864ACB9DD69E3D42151513C840AAE270BF21C8 __StaticArrayInitTypeSizeU3D162_tFFF125F871C6A7DE42BE37AC907E2E2149A861AA ___B8864ACB9DD69E3D42151513C840AAE270BF21C8_74; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D360 <PrivateImplementationDetails>::B8F87834C3597B2EEF22BA6D3A392CC925636401 __StaticArrayInitTypeSizeU3D360_tFF8371303424DEBAE608051BAA970E5AFB409DF7 ___B8F87834C3597B2EEF22BA6D3A392CC925636401_75; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::B9B670F134A59FB1107AF01A9FE8F8E3980B3093 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___B9B670F134A59FB1107AF01A9FE8F8E3980B3093_76; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::BEBC9ECC660A13EFC359BA3383411F698CFF25DB __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___BEBC9ECC660A13EFC359BA3383411F698CFF25DB_77; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7 __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_78; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D6 <PrivateImplementationDetails>::BF5EB60806ECB74EE484105DD9D6F463BF994867 __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 ___BF5EB60806ECB74EE484105DD9D6F463BF994867_79; // System.Int64 <PrivateImplementationDetails>::C1A1100642BA9685B30A84D97348484E14AA1865 int64_t ___C1A1100642BA9685B30A84D97348484E14AA1865_80; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D16 <PrivateImplementationDetails>::C6F364A0AD934EFED8909446C215752E565D77C1 __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 ___C6F364A0AD934EFED8909446C215752E565D77C1_81; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D174 <PrivateImplementationDetails>::CE5835130F5277F63D716FC9115526B0AC68FFAD __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F ___CE5835130F5277F63D716FC9115526B0AC68FFAD_82; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D6 <PrivateImplementationDetails>::CE93C35B755802BC4B3D180716B048FC61701EF7 __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 ___CE93C35B755802BC4B3D180716B048FC61701EF7_83; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D32 <PrivateImplementationDetails>::D117188BE8D4609C0D531C51B0BB911A4219DEBE __StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472 ___D117188BE8D4609C0D531C51B0BB911A4219DEBE_84; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D44 <PrivateImplementationDetails>::D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636 __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F ___D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_85; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D76 <PrivateImplementationDetails>::DA19DB47B583EFCF7825D2E39D661D2354F28219 __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB ___DA19DB47B583EFCF7825D2E39D661D2354F28219_86; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D52 <PrivateImplementationDetails>::DD3AEFEADB1CD615F3017763F1568179FEE640B0 __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A ___DD3AEFEADB1CD615F3017763F1568179FEE640B0_87; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D36 <PrivateImplementationDetails>::E1827270A5FE1C85F5352A66FD87BA747213D006 __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 ___E1827270A5FE1C85F5352A66FD87BA747213D006_88; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::E45BAB43F7D5D038672B3E3431F92E34A7AF2571 __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___E45BAB43F7D5D038672B3E3431F92E34A7AF2571_89; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D52 <PrivateImplementationDetails>::E92B39D8233061927D9ACDE54665E68E7535635A __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A ___E92B39D8233061927D9ACDE54665E68E7535635A_90; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::EA9506959484C55CFE0C139C624DF6060E285866 __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___EA9506959484C55CFE0C139C624DF6060E285866_91; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D262 <PrivateImplementationDetails>::EB5E9A80A40096AB74D2E226650C7258D7BC5E9D __StaticArrayInitTypeSizeU3D262_t93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7 ___EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_92; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D64 <PrivateImplementationDetails>::EBF68F411848D603D059DFDEA2321C5A5EA78044 __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 ___EBF68F411848D603D059DFDEA2321C5A5EA78044_93; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::EC89C317EA2BF49A70EFF5E89C691E34733D7C37 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___EC89C317EA2BF49A70EFF5E89C691E34733D7C37_94; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::F06E829E62F3AFBC045D064E10A4F5DF7C969612 __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___F06E829E62F3AFBC045D064E10A4F5DF7C969612_95; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D11614 <PrivateImplementationDetails>::F073AA332018FDA0D572E99448FFF1D6422BD520 __StaticArrayInitTypeSizeU3D11614_tDF34959BE752359A89A4A577B8798D2D66A5E7F5 ___F073AA332018FDA0D572E99448FFF1D6422BD520_96; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D120 <PrivateImplementationDetails>::F34B0E10653402E8F788F8BC3F7CD7090928A429 __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 ___F34B0E10653402E8F788F8BC3F7CD7090928A429_97; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::F37E34BEADB04F34FCC31078A59F49856CA83D5B __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___F37E34BEADB04F34FCC31078A59F49856CA83D5B_98; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D94 <PrivateImplementationDetails>::F512A9ABF88066AAEB92684F95CC05D8101B462B __StaticArrayInitTypeSizeU3D94_t23554D8B96399688002A3BE81C7C15EFB011DEC6 ___F512A9ABF88066AAEB92684F95CC05D8101B462B_99; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::F8FAABB821300AA500C2CEC6091B3782A7FB44A4 __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___F8FAABB821300AA500C2CEC6091B3782A7FB44A4_100; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2350 <PrivateImplementationDetails>::FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B __StaticArrayInitTypeSizeU3D2350_t96984AEF232104302694B7EFDA3F92BC42BF207D ___FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_101; public: inline static int32_t get_offset_of_U30588059ACBD52F7EA2835882F977A9CF72EB9775_0() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___0588059ACBD52F7EA2835882F977A9CF72EB9775_0)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U30588059ACBD52F7EA2835882F977A9CF72EB9775_0() const { return ___0588059ACBD52F7EA2835882F977A9CF72EB9775_0; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U30588059ACBD52F7EA2835882F977A9CF72EB9775_0() { return &___0588059ACBD52F7EA2835882F977A9CF72EB9775_0; } inline void set_U30588059ACBD52F7EA2835882F977A9CF72EB9775_0(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___0588059ACBD52F7EA2835882F977A9CF72EB9775_0 = value; } inline static int32_t get_offset_of_U30A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1)); } inline __StaticArrayInitTypeSizeU3D84_tF52293EFB26AA1D2C169389BB83253C5BAE8076A get_U30A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1() const { return ___0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1; } inline __StaticArrayInitTypeSizeU3D84_tF52293EFB26AA1D2C169389BB83253C5BAE8076A * get_address_of_U30A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1() { return &___0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1; } inline void set_U30A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1(__StaticArrayInitTypeSizeU3D84_tF52293EFB26AA1D2C169389BB83253C5BAE8076A value) { ___0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1 = value; } inline static int32_t get_offset_of_U3121EC59E23F7559B28D338D562528F6299C2DE22_2() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___121EC59E23F7559B28D338D562528F6299C2DE22_2)); } inline __StaticArrayInitTypeSizeU3D240_t5643A77865294845ACC505FE42EA1067CAC04FD8 get_U3121EC59E23F7559B28D338D562528F6299C2DE22_2() const { return ___121EC59E23F7559B28D338D562528F6299C2DE22_2; } inline __StaticArrayInitTypeSizeU3D240_t5643A77865294845ACC505FE42EA1067CAC04FD8 * get_address_of_U3121EC59E23F7559B28D338D562528F6299C2DE22_2() { return &___121EC59E23F7559B28D338D562528F6299C2DE22_2; } inline void set_U3121EC59E23F7559B28D338D562528F6299C2DE22_2(__StaticArrayInitTypeSizeU3D240_t5643A77865294845ACC505FE42EA1067CAC04FD8 value) { ___121EC59E23F7559B28D338D562528F6299C2DE22_2 = value; } inline static int32_t get_offset_of_U31730F09044E91DB8371B849EFF5E6D17BDE4AED0_3() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___1730F09044E91DB8371B849EFF5E6D17BDE4AED0_3)); } inline __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 get_U31730F09044E91DB8371B849EFF5E6D17BDE4AED0_3() const { return ___1730F09044E91DB8371B849EFF5E6D17BDE4AED0_3; } inline __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 * get_address_of_U31730F09044E91DB8371B849EFF5E6D17BDE4AED0_3() { return &___1730F09044E91DB8371B849EFF5E6D17BDE4AED0_3; } inline void set_U31730F09044E91DB8371B849EFF5E6D17BDE4AED0_3(__StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 value) { ___1730F09044E91DB8371B849EFF5E6D17BDE4AED0_3 = value; } inline static int32_t get_offset_of_U31FE6CE411858B3D864679DE2139FB081F08BFACD_4() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___1FE6CE411858B3D864679DE2139FB081F08BFACD_4)); } inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 get_U31FE6CE411858B3D864679DE2139FB081F08BFACD_4() const { return ___1FE6CE411858B3D864679DE2139FB081F08BFACD_4; } inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 * get_address_of_U31FE6CE411858B3D864679DE2139FB081F08BFACD_4() { return &___1FE6CE411858B3D864679DE2139FB081F08BFACD_4; } inline void set_U31FE6CE411858B3D864679DE2139FB081F08BFACD_4(__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 value) { ___1FE6CE411858B3D864679DE2139FB081F08BFACD_4 = value; } inline static int32_t get_offset_of_U325420D0055076FA8D3E4DD96BC53AE24DE6E619F_5() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___25420D0055076FA8D3E4DD96BC53AE24DE6E619F_5)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U325420D0055076FA8D3E4DD96BC53AE24DE6E619F_5() const { return ___25420D0055076FA8D3E4DD96BC53AE24DE6E619F_5; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U325420D0055076FA8D3E4DD96BC53AE24DE6E619F_5() { return &___25420D0055076FA8D3E4DD96BC53AE24DE6E619F_5; } inline void set_U325420D0055076FA8D3E4DD96BC53AE24DE6E619F_5(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___25420D0055076FA8D3E4DD96BC53AE24DE6E619F_5 = value; } inline static int32_t get_offset_of_U325CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6)); } inline __StaticArrayInitTypeSizeU3D1208_tC58894ECFE2C4FFD2B8FCDF958800099A737C1DD get_U325CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6() const { return ___25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6; } inline __StaticArrayInitTypeSizeU3D1208_tC58894ECFE2C4FFD2B8FCDF958800099A737C1DD * get_address_of_U325CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6() { return &___25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6; } inline void set_U325CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6(__StaticArrayInitTypeSizeU3D1208_tC58894ECFE2C4FFD2B8FCDF958800099A737C1DD value) { ___25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6 = value; } inline static int32_t get_offset_of_U329C1A61550F0E3260E1953D4FAD71C256218EF40_7() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___29C1A61550F0E3260E1953D4FAD71C256218EF40_7)); } inline __StaticArrayInitTypeSizeU3D42_t3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4 get_U329C1A61550F0E3260E1953D4FAD71C256218EF40_7() const { return ___29C1A61550F0E3260E1953D4FAD71C256218EF40_7; } inline __StaticArrayInitTypeSizeU3D42_t3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4 * get_address_of_U329C1A61550F0E3260E1953D4FAD71C256218EF40_7() { return &___29C1A61550F0E3260E1953D4FAD71C256218EF40_7; } inline void set_U329C1A61550F0E3260E1953D4FAD71C256218EF40_7(__StaticArrayInitTypeSizeU3D42_t3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4 value) { ___29C1A61550F0E3260E1953D4FAD71C256218EF40_7 = value; } inline static int32_t get_offset_of_U32B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___2B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8)); } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_U32B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8() const { return ___2B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8; } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_U32B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8() { return &___2B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8; } inline void set_U32B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value) { ___2B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8 = value; } inline static int32_t get_offset_of_U32BA840FF6020B8FF623DBCB7188248CF853FAF4F_9() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___2BA840FF6020B8FF623DBCB7188248CF853FAF4F_9)); } inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 get_U32BA840FF6020B8FF623DBCB7188248CF853FAF4F_9() const { return ___2BA840FF6020B8FF623DBCB7188248CF853FAF4F_9; } inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 * get_address_of_U32BA840FF6020B8FF623DBCB7188248CF853FAF4F_9() { return &___2BA840FF6020B8FF623DBCB7188248CF853FAF4F_9; } inline void set_U32BA840FF6020B8FF623DBCB7188248CF853FAF4F_9(__StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 value) { ___2BA840FF6020B8FF623DBCB7188248CF853FAF4F_9 = value; } inline static int32_t get_offset_of_U32C840AFA48C27B9C05593E468C1232CA1CC74AFD_10() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___2C840AFA48C27B9C05593E468C1232CA1CC74AFD_10)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U32C840AFA48C27B9C05593E468C1232CA1CC74AFD_10() const { return ___2C840AFA48C27B9C05593E468C1232CA1CC74AFD_10; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U32C840AFA48C27B9C05593E468C1232CA1CC74AFD_10() { return &___2C840AFA48C27B9C05593E468C1232CA1CC74AFD_10; } inline void set_U32C840AFA48C27B9C05593E468C1232CA1CC74AFD_10(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___2C840AFA48C27B9C05593E468C1232CA1CC74AFD_10 = value; } inline static int32_t get_offset_of_U32D1DA5BB407F0C11C3B5116196C0C6374D932B20_11() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___2D1DA5BB407F0C11C3B5116196C0C6374D932B20_11)); } inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 get_U32D1DA5BB407F0C11C3B5116196C0C6374D932B20_11() const { return ___2D1DA5BB407F0C11C3B5116196C0C6374D932B20_11; } inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 * get_address_of_U32D1DA5BB407F0C11C3B5116196C0C6374D932B20_11() { return &___2D1DA5BB407F0C11C3B5116196C0C6374D932B20_11; } inline void set_U32D1DA5BB407F0C11C3B5116196C0C6374D932B20_11(__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 value) { ___2D1DA5BB407F0C11C3B5116196C0C6374D932B20_11 = value; } inline static int32_t get_offset_of_U32F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U32F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12() const { return ___2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U32F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12() { return &___2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12; } inline void set_U32F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12 = value; } inline static int32_t get_offset_of_U334476C29F6F81C989CFCA42F7C06E84C66236834_13() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___34476C29F6F81C989CFCA42F7C06E84C66236834_13)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U334476C29F6F81C989CFCA42F7C06E84C66236834_13() const { return ___34476C29F6F81C989CFCA42F7C06E84C66236834_13; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U334476C29F6F81C989CFCA42F7C06E84C66236834_13() { return &___34476C29F6F81C989CFCA42F7C06E84C66236834_13; } inline void set_U334476C29F6F81C989CFCA42F7C06E84C66236834_13(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___34476C29F6F81C989CFCA42F7C06E84C66236834_13 = value; } inline static int32_t get_offset_of_U335EED060772F2748D13B745DAEC8CD7BD3B87604_14() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___35EED060772F2748D13B745DAEC8CD7BD3B87604_14)); } inline __StaticArrayInitTypeSizeU3D2382_tB4AF2C49C5120B6EB285BA4D247340D8E243A1BA get_U335EED060772F2748D13B745DAEC8CD7BD3B87604_14() const { return ___35EED060772F2748D13B745DAEC8CD7BD3B87604_14; } inline __StaticArrayInitTypeSizeU3D2382_tB4AF2C49C5120B6EB285BA4D247340D8E243A1BA * get_address_of_U335EED060772F2748D13B745DAEC8CD7BD3B87604_14() { return &___35EED060772F2748D13B745DAEC8CD7BD3B87604_14; } inline void set_U335EED060772F2748D13B745DAEC8CD7BD3B87604_14(__StaticArrayInitTypeSizeU3D2382_tB4AF2C49C5120B6EB285BA4D247340D8E243A1BA value) { ___35EED060772F2748D13B745DAEC8CD7BD3B87604_14 = value; } inline static int32_t get_offset_of_U3375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15)); } inline __StaticArrayInitTypeSizeU3D38_tA52D24A5F9970582D6B55437967C9BD32E03F05D get_U3375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15() const { return ___375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15; } inline __StaticArrayInitTypeSizeU3D38_tA52D24A5F9970582D6B55437967C9BD32E03F05D * get_address_of_U3375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15() { return &___375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15; } inline void set_U3375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15(__StaticArrayInitTypeSizeU3D38_tA52D24A5F9970582D6B55437967C9BD32E03F05D value) { ___375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15 = value; } inline static int32_t get_offset_of_U3379C06C9E702D31469C29033F0DD63931EB349F5_16() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___379C06C9E702D31469C29033F0DD63931EB349F5_16)); } inline __StaticArrayInitTypeSizeU3D1450_t58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4 get_U3379C06C9E702D31469C29033F0DD63931EB349F5_16() const { return ___379C06C9E702D31469C29033F0DD63931EB349F5_16; } inline __StaticArrayInitTypeSizeU3D1450_t58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4 * get_address_of_U3379C06C9E702D31469C29033F0DD63931EB349F5_16() { return &___379C06C9E702D31469C29033F0DD63931EB349F5_16; } inline void set_U3379C06C9E702D31469C29033F0DD63931EB349F5_16(__StaticArrayInitTypeSizeU3D1450_t58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4 value) { ___379C06C9E702D31469C29033F0DD63931EB349F5_16 = value; } inline static int32_t get_offset_of_U3399BD13E240F33F808CA7940293D6EC4E6FD5A00_17() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___399BD13E240F33F808CA7940293D6EC4E6FD5A00_17)); } inline __StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C get_U3399BD13E240F33F808CA7940293D6EC4E6FD5A00_17() const { return ___399BD13E240F33F808CA7940293D6EC4E6FD5A00_17; } inline __StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C * get_address_of_U3399BD13E240F33F808CA7940293D6EC4E6FD5A00_17() { return &___399BD13E240F33F808CA7940293D6EC4E6FD5A00_17; } inline void set_U3399BD13E240F33F808CA7940293D6EC4E6FD5A00_17(__StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C value) { ___399BD13E240F33F808CA7940293D6EC4E6FD5A00_17 = value; } inline static int32_t get_offset_of_U339C9CE73C7B0619D409EF28344F687C1B5C130FE_18() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___39C9CE73C7B0619D409EF28344F687C1B5C130FE_18)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U339C9CE73C7B0619D409EF28344F687C1B5C130FE_18() const { return ___39C9CE73C7B0619D409EF28344F687C1B5C130FE_18; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U339C9CE73C7B0619D409EF28344F687C1B5C130FE_18() { return &___39C9CE73C7B0619D409EF28344F687C1B5C130FE_18; } inline void set_U339C9CE73C7B0619D409EF28344F687C1B5C130FE_18(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___39C9CE73C7B0619D409EF28344F687C1B5C130FE_18 = value; } inline static int32_t get_offset_of_U33C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___3C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19)); } inline __StaticArrayInitTypeSizeU3D320_t48B9242FB90DB2A21A723BBAB141500A9641EB49 get_U33C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19() const { return ___3C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19; } inline __StaticArrayInitTypeSizeU3D320_t48B9242FB90DB2A21A723BBAB141500A9641EB49 * get_address_of_U33C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19() { return &___3C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19; } inline void set_U33C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19(__StaticArrayInitTypeSizeU3D320_t48B9242FB90DB2A21A723BBAB141500A9641EB49 value) { ___3C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19 = value; } inline static int32_t get_offset_of_U33E4BBF9D0CDD2E34F78AA7A9A3979DCE1F7B02BD_20() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___3E4BBF9D0CDD2E34F78AA7A9A3979DCE1F7B02BD_20)); } inline __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 get_U33E4BBF9D0CDD2E34F78AA7A9A3979DCE1F7B02BD_20() const { return ___3E4BBF9D0CDD2E34F78AA7A9A3979DCE1F7B02BD_20; } inline __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 * get_address_of_U33E4BBF9D0CDD2E34F78AA7A9A3979DCE1F7B02BD_20() { return &___3E4BBF9D0CDD2E34F78AA7A9A3979DCE1F7B02BD_20; } inline void set_U33E4BBF9D0CDD2E34F78AA7A9A3979DCE1F7B02BD_20(__StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 value) { ___3E4BBF9D0CDD2E34F78AA7A9A3979DCE1F7B02BD_20 = value; } inline static int32_t get_offset_of_U33E823444D2DFECF0F90B436B88F02A533CB376F1_21() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___3E823444D2DFECF0F90B436B88F02A533CB376F1_21)); } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_U33E823444D2DFECF0F90B436B88F02A533CB376F1_21() const { return ___3E823444D2DFECF0F90B436B88F02A533CB376F1_21; } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_U33E823444D2DFECF0F90B436B88F02A533CB376F1_21() { return &___3E823444D2DFECF0F90B436B88F02A533CB376F1_21; } inline void set_U33E823444D2DFECF0F90B436B88F02A533CB376F1_21(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value) { ___3E823444D2DFECF0F90B436B88F02A533CB376F1_21 = value; } inline static int32_t get_offset_of_U33FE6C283BCF384FD2C8789880DFF59664E2AB4A1_22() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___3FE6C283BCF384FD2C8789880DFF59664E2AB4A1_22)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U33FE6C283BCF384FD2C8789880DFF59664E2AB4A1_22() const { return ___3FE6C283BCF384FD2C8789880DFF59664E2AB4A1_22; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U33FE6C283BCF384FD2C8789880DFF59664E2AB4A1_22() { return &___3FE6C283BCF384FD2C8789880DFF59664E2AB4A1_22; } inline void set_U33FE6C283BCF384FD2C8789880DFF59664E2AB4A1_22(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___3FE6C283BCF384FD2C8789880DFF59664E2AB4A1_22 = value; } inline static int32_t get_offset_of_U340981BAA39513E58B28DCF0103CC04DE2A0A0444_23() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___40981BAA39513E58B28DCF0103CC04DE2A0A0444_23)); } inline __StaticArrayInitTypeSizeU3D1665_tCD7752863825B82B07752CCE72A581C169E19C20 get_U340981BAA39513E58B28DCF0103CC04DE2A0A0444_23() const { return ___40981BAA39513E58B28DCF0103CC04DE2A0A0444_23; } inline __StaticArrayInitTypeSizeU3D1665_tCD7752863825B82B07752CCE72A581C169E19C20 * get_address_of_U340981BAA39513E58B28DCF0103CC04DE2A0A0444_23() { return &___40981BAA39513E58B28DCF0103CC04DE2A0A0444_23; } inline void set_U340981BAA39513E58B28DCF0103CC04DE2A0A0444_23(__StaticArrayInitTypeSizeU3D1665_tCD7752863825B82B07752CCE72A581C169E19C20 value) { ___40981BAA39513E58B28DCF0103CC04DE2A0A0444_23 = value; } inline static int32_t get_offset_of_U340E7C49413D261F3F38AD3A870C0AC69C8BDA048_24() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___40E7C49413D261F3F38AD3A870C0AC69C8BDA048_24)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U340E7C49413D261F3F38AD3A870C0AC69C8BDA048_24() const { return ___40E7C49413D261F3F38AD3A870C0AC69C8BDA048_24; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U340E7C49413D261F3F38AD3A870C0AC69C8BDA048_24() { return &___40E7C49413D261F3F38AD3A870C0AC69C8BDA048_24; } inline void set_U340E7C49413D261F3F38AD3A870C0AC69C8BDA048_24(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___40E7C49413D261F3F38AD3A870C0AC69C8BDA048_24 = value; } inline static int32_t get_offset_of_U3421EC7E82F2967DF6CA8C3605514DC6F29EE5845_25() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___421EC7E82F2967DF6CA8C3605514DC6F29EE5845_25)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U3421EC7E82F2967DF6CA8C3605514DC6F29EE5845_25() const { return ___421EC7E82F2967DF6CA8C3605514DC6F29EE5845_25; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U3421EC7E82F2967DF6CA8C3605514DC6F29EE5845_25() { return &___421EC7E82F2967DF6CA8C3605514DC6F29EE5845_25; } inline void set_U3421EC7E82F2967DF6CA8C3605514DC6F29EE5845_25(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___421EC7E82F2967DF6CA8C3605514DC6F29EE5845_25 = value; } inline static int32_t get_offset_of_U34858DB4AA76D3933F1CA9E6712D4FDB16903F628_26() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___4858DB4AA76D3933F1CA9E6712D4FDB16903F628_26)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U34858DB4AA76D3933F1CA9E6712D4FDB16903F628_26() const { return ___4858DB4AA76D3933F1CA9E6712D4FDB16903F628_26; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U34858DB4AA76D3933F1CA9E6712D4FDB16903F628_26() { return &___4858DB4AA76D3933F1CA9E6712D4FDB16903F628_26; } inline void set_U34858DB4AA76D3933F1CA9E6712D4FDB16903F628_26(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___4858DB4AA76D3933F1CA9E6712D4FDB16903F628_26 = value; } inline static int32_t get_offset_of_U34F7A8890F332B22B8DE0BD29D36FA7364748D76A_27() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___4F7A8890F332B22B8DE0BD29D36FA7364748D76A_27)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U34F7A8890F332B22B8DE0BD29D36FA7364748D76A_27() const { return ___4F7A8890F332B22B8DE0BD29D36FA7364748D76A_27; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U34F7A8890F332B22B8DE0BD29D36FA7364748D76A_27() { return &___4F7A8890F332B22B8DE0BD29D36FA7364748D76A_27; } inline void set_U34F7A8890F332B22B8DE0BD29D36FA7364748D76A_27(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___4F7A8890F332B22B8DE0BD29D36FA7364748D76A_27 = value; } inline static int32_t get_offset_of_U3536422B321459B242ADED7240B7447E904E083E3_28() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___536422B321459B242ADED7240B7447E904E083E3_28)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U3536422B321459B242ADED7240B7447E904E083E3_28() const { return ___536422B321459B242ADED7240B7447E904E083E3_28; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U3536422B321459B242ADED7240B7447E904E083E3_28() { return &___536422B321459B242ADED7240B7447E904E083E3_28; } inline void set_U3536422B321459B242ADED7240B7447E904E083E3_28(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___536422B321459B242ADED7240B7447E904E083E3_28 = value; } inline static int32_t get_offset_of_U35382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_29() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_29)); } inline __StaticArrayInitTypeSizeU3D1080_tCE36DA14009C45CFDEA7F63618BE90F8DF89AC84 get_U35382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_29() const { return ___5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_29; } inline __StaticArrayInitTypeSizeU3D1080_tCE36DA14009C45CFDEA7F63618BE90F8DF89AC84 * get_address_of_U35382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_29() { return &___5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_29; } inline void set_U35382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_29(__StaticArrayInitTypeSizeU3D1080_tCE36DA14009C45CFDEA7F63618BE90F8DF89AC84 value) { ___5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_29 = value; } inline static int32_t get_offset_of_U357218C316B6921E2CD61027A2387EDC31A2D9471_30() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___57218C316B6921E2CD61027A2387EDC31A2D9471_30)); } inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E get_U357218C316B6921E2CD61027A2387EDC31A2D9471_30() const { return ___57218C316B6921E2CD61027A2387EDC31A2D9471_30; } inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E * get_address_of_U357218C316B6921E2CD61027A2387EDC31A2D9471_30() { return &___57218C316B6921E2CD61027A2387EDC31A2D9471_30; } inline void set_U357218C316B6921E2CD61027A2387EDC31A2D9471_30(__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E value) { ___57218C316B6921E2CD61027A2387EDC31A2D9471_30 = value; } inline static int32_t get_offset_of_U357F320D62696EC99727E0FE2045A05F1289CC0C6_31() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___57F320D62696EC99727E0FE2045A05F1289CC0C6_31)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U357F320D62696EC99727E0FE2045A05F1289CC0C6_31() const { return ___57F320D62696EC99727E0FE2045A05F1289CC0C6_31; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U357F320D62696EC99727E0FE2045A05F1289CC0C6_31() { return &___57F320D62696EC99727E0FE2045A05F1289CC0C6_31; } inline void set_U357F320D62696EC99727E0FE2045A05F1289CC0C6_31(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___57F320D62696EC99727E0FE2045A05F1289CC0C6_31 = value; } inline static int32_t get_offset_of_U3594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_32() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_32)); } inline __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF get_U3594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_32() const { return ___594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_32; } inline __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF * get_address_of_U3594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_32() { return &___594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_32; } inline void set_U3594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_32(__StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF value) { ___594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_32 = value; } inline static int32_t get_offset_of_U35BBDF8058D4235C33F2E8DCF76004031B6187A2F_33() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___5BBDF8058D4235C33F2E8DCF76004031B6187A2F_33)); } inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 get_U35BBDF8058D4235C33F2E8DCF76004031B6187A2F_33() const { return ___5BBDF8058D4235C33F2E8DCF76004031B6187A2F_33; } inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 * get_address_of_U35BBDF8058D4235C33F2E8DCF76004031B6187A2F_33() { return &___5BBDF8058D4235C33F2E8DCF76004031B6187A2F_33; } inline void set_U35BBDF8058D4235C33F2E8DCF76004031B6187A2F_33(__StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 value) { ___5BBDF8058D4235C33F2E8DCF76004031B6187A2F_33 = value; } inline static int32_t get_offset_of_U35BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_34() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_34)); } inline __StaticArrayInitTypeSizeU3D288_t7B40D7F3A8D262F90A76460FF94E92CE08AFCF55 get_U35BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_34() const { return ___5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_34; } inline __StaticArrayInitTypeSizeU3D288_t7B40D7F3A8D262F90A76460FF94E92CE08AFCF55 * get_address_of_U35BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_34() { return &___5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_34; } inline void set_U35BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_34(__StaticArrayInitTypeSizeU3D288_t7B40D7F3A8D262F90A76460FF94E92CE08AFCF55 value) { ___5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_34 = value; } inline static int32_t get_offset_of_U35BFE2819B4778217C56416C7585FF0E56EBACD89_35() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___5BFE2819B4778217C56416C7585FF0E56EBACD89_35)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U35BFE2819B4778217C56416C7585FF0E56EBACD89_35() const { return ___5BFE2819B4778217C56416C7585FF0E56EBACD89_35; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U35BFE2819B4778217C56416C7585FF0E56EBACD89_35() { return &___5BFE2819B4778217C56416C7585FF0E56EBACD89_35; } inline void set_U35BFE2819B4778217C56416C7585FF0E56EBACD89_35(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___5BFE2819B4778217C56416C7585FF0E56EBACD89_35 = value; } inline static int32_t get_offset_of_U3609C0E8D8DA86A09D6013D301C86BA8782C16B8C_36() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___609C0E8D8DA86A09D6013D301C86BA8782C16B8C_36)); } inline __StaticArrayInitTypeSizeU3D128_t1B13688BD6EA82B964734FF8C3181161EF5624B1 get_U3609C0E8D8DA86A09D6013D301C86BA8782C16B8C_36() const { return ___609C0E8D8DA86A09D6013D301C86BA8782C16B8C_36; } inline __StaticArrayInitTypeSizeU3D128_t1B13688BD6EA82B964734FF8C3181161EF5624B1 * get_address_of_U3609C0E8D8DA86A09D6013D301C86BA8782C16B8C_36() { return &___609C0E8D8DA86A09D6013D301C86BA8782C16B8C_36; } inline void set_U3609C0E8D8DA86A09D6013D301C86BA8782C16B8C_36(__StaticArrayInitTypeSizeU3D128_t1B13688BD6EA82B964734FF8C3181161EF5624B1 value) { ___609C0E8D8DA86A09D6013D301C86BA8782C16B8C_36 = value; } inline static int32_t get_offset_of_U365E32B4E150FD8D24B93B0D42A17F1DAD146162B_37() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___65E32B4E150FD8D24B93B0D42A17F1DAD146162B_37)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U365E32B4E150FD8D24B93B0D42A17F1DAD146162B_37() const { return ___65E32B4E150FD8D24B93B0D42A17F1DAD146162B_37; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U365E32B4E150FD8D24B93B0D42A17F1DAD146162B_37() { return &___65E32B4E150FD8D24B93B0D42A17F1DAD146162B_37; } inline void set_U365E32B4E150FD8D24B93B0D42A17F1DAD146162B_37(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___65E32B4E150FD8D24B93B0D42A17F1DAD146162B_37 = value; } inline static int32_t get_offset_of_U36770974FEF1E98B9C1864370E2B5B786EB0EA39E_38() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___6770974FEF1E98B9C1864370E2B5B786EB0EA39E_38)); } inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A get_U36770974FEF1E98B9C1864370E2B5B786EB0EA39E_38() const { return ___6770974FEF1E98B9C1864370E2B5B786EB0EA39E_38; } inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A * get_address_of_U36770974FEF1E98B9C1864370E2B5B786EB0EA39E_38() { return &___6770974FEF1E98B9C1864370E2B5B786EB0EA39E_38; } inline void set_U36770974FEF1E98B9C1864370E2B5B786EB0EA39E_38(__StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A value) { ___6770974FEF1E98B9C1864370E2B5B786EB0EA39E_38 = value; } inline static int32_t get_offset_of_U367EEAD805D708D9AA4E14BF747E44CED801744F3_39() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___67EEAD805D708D9AA4E14BF747E44CED801744F3_39)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U367EEAD805D708D9AA4E14BF747E44CED801744F3_39() const { return ___67EEAD805D708D9AA4E14BF747E44CED801744F3_39; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U367EEAD805D708D9AA4E14BF747E44CED801744F3_39() { return &___67EEAD805D708D9AA4E14BF747E44CED801744F3_39; } inline void set_U367EEAD805D708D9AA4E14BF747E44CED801744F3_39(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___67EEAD805D708D9AA4E14BF747E44CED801744F3_39 = value; } inline static int32_t get_offset_of_U36C71197D228427B2864C69B357FEF73D8C9D59DF_40() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___6C71197D228427B2864C69B357FEF73D8C9D59DF_40)); } inline __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 get_U36C71197D228427B2864C69B357FEF73D8C9D59DF_40() const { return ___6C71197D228427B2864C69B357FEF73D8C9D59DF_40; } inline __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 * get_address_of_U36C71197D228427B2864C69B357FEF73D8C9D59DF_40() { return &___6C71197D228427B2864C69B357FEF73D8C9D59DF_40; } inline void set_U36C71197D228427B2864C69B357FEF73D8C9D59DF_40(__StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 value) { ___6C71197D228427B2864C69B357FEF73D8C9D59DF_40 = value; } inline static int32_t get_offset_of_U36CEE45445AFD150B047A5866FFA76AA651CDB7B7_41() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___6CEE45445AFD150B047A5866FFA76AA651CDB7B7_41)); } inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 get_U36CEE45445AFD150B047A5866FFA76AA651CDB7B7_41() const { return ___6CEE45445AFD150B047A5866FFA76AA651CDB7B7_41; } inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 * get_address_of_U36CEE45445AFD150B047A5866FFA76AA651CDB7B7_41() { return &___6CEE45445AFD150B047A5866FFA76AA651CDB7B7_41; } inline void set_U36CEE45445AFD150B047A5866FFA76AA651CDB7B7_41(__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 value) { ___6CEE45445AFD150B047A5866FFA76AA651CDB7B7_41 = value; } inline static int32_t get_offset_of_U36FC754859E4EC74E447048364B216D825C6F8FE7_42() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___6FC754859E4EC74E447048364B216D825C6F8FE7_42)); } inline __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB get_U36FC754859E4EC74E447048364B216D825C6F8FE7_42() const { return ___6FC754859E4EC74E447048364B216D825C6F8FE7_42; } inline __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB * get_address_of_U36FC754859E4EC74E447048364B216D825C6F8FE7_42() { return &___6FC754859E4EC74E447048364B216D825C6F8FE7_42; } inline void set_U36FC754859E4EC74E447048364B216D825C6F8FE7_42(__StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB value) { ___6FC754859E4EC74E447048364B216D825C6F8FE7_42 = value; } inline static int32_t get_offset_of_U3704939CD172085D1295FCE3F1D92431D685D7AA2_43() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___704939CD172085D1295FCE3F1D92431D685D7AA2_43)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U3704939CD172085D1295FCE3F1D92431D685D7AA2_43() const { return ___704939CD172085D1295FCE3F1D92431D685D7AA2_43; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U3704939CD172085D1295FCE3F1D92431D685D7AA2_43() { return &___704939CD172085D1295FCE3F1D92431D685D7AA2_43; } inline void set_U3704939CD172085D1295FCE3F1D92431D685D7AA2_43(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___704939CD172085D1295FCE3F1D92431D685D7AA2_43 = value; } inline static int32_t get_offset_of_U37088AAE49F0627B72729078DE6E3182DDCF8ED99_44() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___7088AAE49F0627B72729078DE6E3182DDCF8ED99_44)); } inline __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 get_U37088AAE49F0627B72729078DE6E3182DDCF8ED99_44() const { return ___7088AAE49F0627B72729078DE6E3182DDCF8ED99_44; } inline __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 * get_address_of_U37088AAE49F0627B72729078DE6E3182DDCF8ED99_44() { return &___7088AAE49F0627B72729078DE6E3182DDCF8ED99_44; } inline void set_U37088AAE49F0627B72729078DE6E3182DDCF8ED99_44(__StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 value) { ___7088AAE49F0627B72729078DE6E3182DDCF8ED99_44 = value; } inline static int32_t get_offset_of_U37341C933A70EAE383CC50C4B945ADB8E08F06737_45() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___7341C933A70EAE383CC50C4B945ADB8E08F06737_45)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U37341C933A70EAE383CC50C4B945ADB8E08F06737_45() const { return ___7341C933A70EAE383CC50C4B945ADB8E08F06737_45; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U37341C933A70EAE383CC50C4B945ADB8E08F06737_45() { return &___7341C933A70EAE383CC50C4B945ADB8E08F06737_45; } inline void set_U37341C933A70EAE383CC50C4B945ADB8E08F06737_45(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___7341C933A70EAE383CC50C4B945ADB8E08F06737_45 = value; } inline static int32_t get_offset_of_U37FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_46() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_46)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U37FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_46() const { return ___7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_46; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U37FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_46() { return &___7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_46; } inline void set_U37FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_46(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_46 = value; } inline static int32_t get_offset_of_U3811A927B7DADD378BE60BBDE794B9277AA9B50EC_47() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___811A927B7DADD378BE60BBDE794B9277AA9B50EC_47)); } inline __StaticArrayInitTypeSizeU3D21252_tCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462 get_U3811A927B7DADD378BE60BBDE794B9277AA9B50EC_47() const { return ___811A927B7DADD378BE60BBDE794B9277AA9B50EC_47; } inline __StaticArrayInitTypeSizeU3D21252_tCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462 * get_address_of_U3811A927B7DADD378BE60BBDE794B9277AA9B50EC_47() { return &___811A927B7DADD378BE60BBDE794B9277AA9B50EC_47; } inline void set_U3811A927B7DADD378BE60BBDE794B9277AA9B50EC_47(__StaticArrayInitTypeSizeU3D21252_tCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462 value) { ___811A927B7DADD378BE60BBDE794B9277AA9B50EC_47 = value; } inline static int32_t get_offset_of_U381917F1E21F3C22B9F916994547A614FB03E968E_48() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___81917F1E21F3C22B9F916994547A614FB03E968E_48)); } inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 get_U381917F1E21F3C22B9F916994547A614FB03E968E_48() const { return ___81917F1E21F3C22B9F916994547A614FB03E968E_48; } inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 * get_address_of_U381917F1E21F3C22B9F916994547A614FB03E968E_48() { return &___81917F1E21F3C22B9F916994547A614FB03E968E_48; } inline void set_U381917F1E21F3C22B9F916994547A614FB03E968E_48(__StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 value) { ___81917F1E21F3C22B9F916994547A614FB03E968E_48 = value; } inline static int32_t get_offset_of_U3823566DA642D6EA356E15585921F2A4CA23D6760_49() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___823566DA642D6EA356E15585921F2A4CA23D6760_49)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U3823566DA642D6EA356E15585921F2A4CA23D6760_49() const { return ___823566DA642D6EA356E15585921F2A4CA23D6760_49; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U3823566DA642D6EA356E15585921F2A4CA23D6760_49() { return &___823566DA642D6EA356E15585921F2A4CA23D6760_49; } inline void set_U3823566DA642D6EA356E15585921F2A4CA23D6760_49(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___823566DA642D6EA356E15585921F2A4CA23D6760_49 = value; } inline static int32_t get_offset_of_U382C2A59850B2E85BCE1A45A479537A384DF6098D_50() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___82C2A59850B2E85BCE1A45A479537A384DF6098D_50)); } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_U382C2A59850B2E85BCE1A45A479537A384DF6098D_50() const { return ___82C2A59850B2E85BCE1A45A479537A384DF6098D_50; } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_U382C2A59850B2E85BCE1A45A479537A384DF6098D_50() { return &___82C2A59850B2E85BCE1A45A479537A384DF6098D_50; } inline void set_U382C2A59850B2E85BCE1A45A479537A384DF6098D_50(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value) { ___82C2A59850B2E85BCE1A45A479537A384DF6098D_50 = value; } inline static int32_t get_offset_of_U382C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_51() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_51)); } inline __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F get_U382C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_51() const { return ___82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_51; } inline __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F * get_address_of_U382C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_51() { return &___82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_51; } inline void set_U382C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_51(__StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F value) { ___82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_51 = value; } inline static int32_t get_offset_of_U3871B9CF85DB352BAADF12BAE8F19857683E385AC_52() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___871B9CF85DB352BAADF12BAE8F19857683E385AC_52)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U3871B9CF85DB352BAADF12BAE8F19857683E385AC_52() const { return ___871B9CF85DB352BAADF12BAE8F19857683E385AC_52; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U3871B9CF85DB352BAADF12BAE8F19857683E385AC_52() { return &___871B9CF85DB352BAADF12BAE8F19857683E385AC_52; } inline void set_U3871B9CF85DB352BAADF12BAE8F19857683E385AC_52(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___871B9CF85DB352BAADF12BAE8F19857683E385AC_52 = value; } inline static int32_t get_offset_of_U389A040451C8CC5C8FB268BE44BDD74964C104155_53() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___89A040451C8CC5C8FB268BE44BDD74964C104155_53)); } inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 get_U389A040451C8CC5C8FB268BE44BDD74964C104155_53() const { return ___89A040451C8CC5C8FB268BE44BDD74964C104155_53; } inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 * get_address_of_U389A040451C8CC5C8FB268BE44BDD74964C104155_53() { return &___89A040451C8CC5C8FB268BE44BDD74964C104155_53; } inline void set_U389A040451C8CC5C8FB268BE44BDD74964C104155_53(__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 value) { ___89A040451C8CC5C8FB268BE44BDD74964C104155_53 = value; } inline static int32_t get_offset_of_U38CAA092E783257106251246FF5C97F88D28517A6_54() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___8CAA092E783257106251246FF5C97F88D28517A6_54)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U38CAA092E783257106251246FF5C97F88D28517A6_54() const { return ___8CAA092E783257106251246FF5C97F88D28517A6_54; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U38CAA092E783257106251246FF5C97F88D28517A6_54() { return &___8CAA092E783257106251246FF5C97F88D28517A6_54; } inline void set_U38CAA092E783257106251246FF5C97F88D28517A6_54(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___8CAA092E783257106251246FF5C97F88D28517A6_54 = value; } inline static int32_t get_offset_of_U38D231DD55FE1AD7631BBD0905A17D5EB616C2154_55() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___8D231DD55FE1AD7631BBD0905A17D5EB616C2154_55)); } inline __StaticArrayInitTypeSizeU3D2100_t75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA get_U38D231DD55FE1AD7631BBD0905A17D5EB616C2154_55() const { return ___8D231DD55FE1AD7631BBD0905A17D5EB616C2154_55; } inline __StaticArrayInitTypeSizeU3D2100_t75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA * get_address_of_U38D231DD55FE1AD7631BBD0905A17D5EB616C2154_55() { return &___8D231DD55FE1AD7631BBD0905A17D5EB616C2154_55; } inline void set_U38D231DD55FE1AD7631BBD0905A17D5EB616C2154_55(__StaticArrayInitTypeSizeU3D2100_t75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA value) { ___8D231DD55FE1AD7631BBD0905A17D5EB616C2154_55 = value; } inline static int32_t get_offset_of_U38E10AC2F34545DFBBF3FCBC06055D797A8C99991_56() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___8E10AC2F34545DFBBF3FCBC06055D797A8C99991_56)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U38E10AC2F34545DFBBF3FCBC06055D797A8C99991_56() const { return ___8E10AC2F34545DFBBF3FCBC06055D797A8C99991_56; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U38E10AC2F34545DFBBF3FCBC06055D797A8C99991_56() { return &___8E10AC2F34545DFBBF3FCBC06055D797A8C99991_56; } inline void set_U38E10AC2F34545DFBBF3FCBC06055D797A8C99991_56(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___8E10AC2F34545DFBBF3FCBC06055D797A8C99991_56 = value; } inline static int32_t get_offset_of_U393A63E90605400F34B49F0EB3361D23C89164BDA_57() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___93A63E90605400F34B49F0EB3361D23C89164BDA_57)); } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_U393A63E90605400F34B49F0EB3361D23C89164BDA_57() const { return ___93A63E90605400F34B49F0EB3361D23C89164BDA_57; } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_U393A63E90605400F34B49F0EB3361D23C89164BDA_57() { return &___93A63E90605400F34B49F0EB3361D23C89164BDA_57; } inline void set_U393A63E90605400F34B49F0EB3361D23C89164BDA_57(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value) { ___93A63E90605400F34B49F0EB3361D23C89164BDA_57 = value; } inline static int32_t get_offset_of_U394841DD2F330CCB1089BF413E4FA9B04505152E2_58() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___94841DD2F330CCB1089BF413E4FA9B04505152E2_58)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U394841DD2F330CCB1089BF413E4FA9B04505152E2_58() const { return ___94841DD2F330CCB1089BF413E4FA9B04505152E2_58; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U394841DD2F330CCB1089BF413E4FA9B04505152E2_58() { return &___94841DD2F330CCB1089BF413E4FA9B04505152E2_58; } inline void set_U394841DD2F330CCB1089BF413E4FA9B04505152E2_58(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___94841DD2F330CCB1089BF413E4FA9B04505152E2_58 = value; } inline static int32_t get_offset_of_U395264589E48F94B7857CFF398FB72A537E13EEE2_59() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___95264589E48F94B7857CFF398FB72A537E13EEE2_59)); } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_U395264589E48F94B7857CFF398FB72A537E13EEE2_59() const { return ___95264589E48F94B7857CFF398FB72A537E13EEE2_59; } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_U395264589E48F94B7857CFF398FB72A537E13EEE2_59() { return &___95264589E48F94B7857CFF398FB72A537E13EEE2_59; } inline void set_U395264589E48F94B7857CFF398FB72A537E13EEE2_59(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value) { ___95264589E48F94B7857CFF398FB72A537E13EEE2_59 = value; } inline static int32_t get_offset_of_U395C48758CAE1715783472FB073AB158AB8A0AB2A_60() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___95C48758CAE1715783472FB073AB158AB8A0AB2A_60)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U395C48758CAE1715783472FB073AB158AB8A0AB2A_60() const { return ___95C48758CAE1715783472FB073AB158AB8A0AB2A_60; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U395C48758CAE1715783472FB073AB158AB8A0AB2A_60() { return &___95C48758CAE1715783472FB073AB158AB8A0AB2A_60; } inline void set_U395C48758CAE1715783472FB073AB158AB8A0AB2A_60(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___95C48758CAE1715783472FB073AB158AB8A0AB2A_60 = value; } inline static int32_t get_offset_of_U3973417296623D8DC6961B09664E54039E44CA5D8_61() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___973417296623D8DC6961B09664E54039E44CA5D8_61)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U3973417296623D8DC6961B09664E54039E44CA5D8_61() const { return ___973417296623D8DC6961B09664E54039E44CA5D8_61; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U3973417296623D8DC6961B09664E54039E44CA5D8_61() { return &___973417296623D8DC6961B09664E54039E44CA5D8_61; } inline void set_U3973417296623D8DC6961B09664E54039E44CA5D8_61(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___973417296623D8DC6961B09664E54039E44CA5D8_61 = value; } inline static int32_t get_offset_of_A0074C15377C0C870B055927403EA9FA7A349D12_62() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A0074C15377C0C870B055927403EA9FA7A349D12_62)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_A0074C15377C0C870B055927403EA9FA7A349D12_62() const { return ___A0074C15377C0C870B055927403EA9FA7A349D12_62; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_A0074C15377C0C870B055927403EA9FA7A349D12_62() { return &___A0074C15377C0C870B055927403EA9FA7A349D12_62; } inline void set_A0074C15377C0C870B055927403EA9FA7A349D12_62(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___A0074C15377C0C870B055927403EA9FA7A349D12_62 = value; } inline static int32_t get_offset_of_A1319B706116AB2C6D44483F60A7D0ACEA543396_63() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A1319B706116AB2C6D44483F60A7D0ACEA543396_63)); } inline __StaticArrayInitTypeSizeU3D130_t732A6F42953325ADC5746FF1A652A2974473AF4F get_A1319B706116AB2C6D44483F60A7D0ACEA543396_63() const { return ___A1319B706116AB2C6D44483F60A7D0ACEA543396_63; } inline __StaticArrayInitTypeSizeU3D130_t732A6F42953325ADC5746FF1A652A2974473AF4F * get_address_of_A1319B706116AB2C6D44483F60A7D0ACEA543396_63() { return &___A1319B706116AB2C6D44483F60A7D0ACEA543396_63; } inline void set_A1319B706116AB2C6D44483F60A7D0ACEA543396_63(__StaticArrayInitTypeSizeU3D130_t732A6F42953325ADC5746FF1A652A2974473AF4F value) { ___A1319B706116AB2C6D44483F60A7D0ACEA543396_63 = value; } inline static int32_t get_offset_of_A13AA52274D951A18029131A8DDECF76B569A15D_64() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A13AA52274D951A18029131A8DDECF76B569A15D_64)); } inline int64_t get_A13AA52274D951A18029131A8DDECF76B569A15D_64() const { return ___A13AA52274D951A18029131A8DDECF76B569A15D_64; } inline int64_t* get_address_of_A13AA52274D951A18029131A8DDECF76B569A15D_64() { return &___A13AA52274D951A18029131A8DDECF76B569A15D_64; } inline void set_A13AA52274D951A18029131A8DDECF76B569A15D_64(int64_t value) { ___A13AA52274D951A18029131A8DDECF76B569A15D_64 = value; } inline static int32_t get_offset_of_A5444763673307F6828C748D4B9708CFC02B0959_65() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A5444763673307F6828C748D4B9708CFC02B0959_65)); } inline __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF get_A5444763673307F6828C748D4B9708CFC02B0959_65() const { return ___A5444763673307F6828C748D4B9708CFC02B0959_65; } inline __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF * get_address_of_A5444763673307F6828C748D4B9708CFC02B0959_65() { return &___A5444763673307F6828C748D4B9708CFC02B0959_65; } inline void set_A5444763673307F6828C748D4B9708CFC02B0959_65(__StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF value) { ___A5444763673307F6828C748D4B9708CFC02B0959_65 = value; } inline static int32_t get_offset_of_A6732F8E7FC23766AB329B492D6BF82E3B33233F_66() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A6732F8E7FC23766AB329B492D6BF82E3B33233F_66)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_A6732F8E7FC23766AB329B492D6BF82E3B33233F_66() const { return ___A6732F8E7FC23766AB329B492D6BF82E3B33233F_66; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_A6732F8E7FC23766AB329B492D6BF82E3B33233F_66() { return &___A6732F8E7FC23766AB329B492D6BF82E3B33233F_66; } inline void set_A6732F8E7FC23766AB329B492D6BF82E3B33233F_66(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___A6732F8E7FC23766AB329B492D6BF82E3B33233F_66 = value; } inline static int32_t get_offset_of_A705A106D95282BD15E13EEA6B0AF583FF786D83_67() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A705A106D95282BD15E13EEA6B0AF583FF786D83_67)); } inline __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F get_A705A106D95282BD15E13EEA6B0AF583FF786D83_67() const { return ___A705A106D95282BD15E13EEA6B0AF583FF786D83_67; } inline __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F * get_address_of_A705A106D95282BD15E13EEA6B0AF583FF786D83_67() { return &___A705A106D95282BD15E13EEA6B0AF583FF786D83_67; } inline void set_A705A106D95282BD15E13EEA6B0AF583FF786D83_67(__StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F value) { ___A705A106D95282BD15E13EEA6B0AF583FF786D83_67 = value; } inline static int32_t get_offset_of_A8A491E4CED49AE0027560476C10D933CE70C8DF_68() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A8A491E4CED49AE0027560476C10D933CE70C8DF_68)); } inline __StaticArrayInitTypeSizeU3D1018_t7825BE1556EFF874DAFDC230EB69C85A48DBCBC4 get_A8A491E4CED49AE0027560476C10D933CE70C8DF_68() const { return ___A8A491E4CED49AE0027560476C10D933CE70C8DF_68; } inline __StaticArrayInitTypeSizeU3D1018_t7825BE1556EFF874DAFDC230EB69C85A48DBCBC4 * get_address_of_A8A491E4CED49AE0027560476C10D933CE70C8DF_68() { return &___A8A491E4CED49AE0027560476C10D933CE70C8DF_68; } inline void set_A8A491E4CED49AE0027560476C10D933CE70C8DF_68(__StaticArrayInitTypeSizeU3D1018_t7825BE1556EFF874DAFDC230EB69C85A48DBCBC4 value) { ___A8A491E4CED49AE0027560476C10D933CE70C8DF_68 = value; } inline static int32_t get_offset_of_AC791C4F39504D1184B73478943D0636258DA7B1_69() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___AC791C4F39504D1184B73478943D0636258DA7B1_69)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_AC791C4F39504D1184B73478943D0636258DA7B1_69() const { return ___AC791C4F39504D1184B73478943D0636258DA7B1_69; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_AC791C4F39504D1184B73478943D0636258DA7B1_69() { return &___AC791C4F39504D1184B73478943D0636258DA7B1_69; } inline void set_AC791C4F39504D1184B73478943D0636258DA7B1_69(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___AC791C4F39504D1184B73478943D0636258DA7B1_69 = value; } inline static int32_t get_offset_of_AFCD4E1211233E99373A3367B23105A3D624B1F2_70() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___AFCD4E1211233E99373A3367B23105A3D624B1F2_70)); } inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A get_AFCD4E1211233E99373A3367B23105A3D624B1F2_70() const { return ___AFCD4E1211233E99373A3367B23105A3D624B1F2_70; } inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A * get_address_of_AFCD4E1211233E99373A3367B23105A3D624B1F2_70() { return &___AFCD4E1211233E99373A3367B23105A3D624B1F2_70; } inline void set_AFCD4E1211233E99373A3367B23105A3D624B1F2_70(__StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A value) { ___AFCD4E1211233E99373A3367B23105A3D624B1F2_70 = value; } inline static int32_t get_offset_of_B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_71() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_71)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_71() const { return ___B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_71; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_71() { return &___B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_71; } inline void set_B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_71(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_71 = value; } inline static int32_t get_offset_of_B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_72() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_72)); } inline __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F get_B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_72() const { return ___B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_72; } inline __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F * get_address_of_B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_72() { return &___B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_72; } inline void set_B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_72(__StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F value) { ___B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_72 = value; } inline static int32_t get_offset_of_B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_73() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_73)); } inline __StaticArrayInitTypeSizeU3D998_t8A5C9782706B510180A1B9C9F7E96F8F48421B8C get_B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_73() const { return ___B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_73; } inline __StaticArrayInitTypeSizeU3D998_t8A5C9782706B510180A1B9C9F7E96F8F48421B8C * get_address_of_B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_73() { return &___B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_73; } inline void set_B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_73(__StaticArrayInitTypeSizeU3D998_t8A5C9782706B510180A1B9C9F7E96F8F48421B8C value) { ___B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_73 = value; } inline static int32_t get_offset_of_B8864ACB9DD69E3D42151513C840AAE270BF21C8_74() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___B8864ACB9DD69E3D42151513C840AAE270BF21C8_74)); } inline __StaticArrayInitTypeSizeU3D162_tFFF125F871C6A7DE42BE37AC907E2E2149A861AA get_B8864ACB9DD69E3D42151513C840AAE270BF21C8_74() const { return ___B8864ACB9DD69E3D42151513C840AAE270BF21C8_74; } inline __StaticArrayInitTypeSizeU3D162_tFFF125F871C6A7DE42BE37AC907E2E2149A861AA * get_address_of_B8864ACB9DD69E3D42151513C840AAE270BF21C8_74() { return &___B8864ACB9DD69E3D42151513C840AAE270BF21C8_74; } inline void set_B8864ACB9DD69E3D42151513C840AAE270BF21C8_74(__StaticArrayInitTypeSizeU3D162_tFFF125F871C6A7DE42BE37AC907E2E2149A861AA value) { ___B8864ACB9DD69E3D42151513C840AAE270BF21C8_74 = value; } inline static int32_t get_offset_of_B8F87834C3597B2EEF22BA6D3A392CC925636401_75() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___B8F87834C3597B2EEF22BA6D3A392CC925636401_75)); } inline __StaticArrayInitTypeSizeU3D360_tFF8371303424DEBAE608051BAA970E5AFB409DF7 get_B8F87834C3597B2EEF22BA6D3A392CC925636401_75() const { return ___B8F87834C3597B2EEF22BA6D3A392CC925636401_75; } inline __StaticArrayInitTypeSizeU3D360_tFF8371303424DEBAE608051BAA970E5AFB409DF7 * get_address_of_B8F87834C3597B2EEF22BA6D3A392CC925636401_75() { return &___B8F87834C3597B2EEF22BA6D3A392CC925636401_75; } inline void set_B8F87834C3597B2EEF22BA6D3A392CC925636401_75(__StaticArrayInitTypeSizeU3D360_tFF8371303424DEBAE608051BAA970E5AFB409DF7 value) { ___B8F87834C3597B2EEF22BA6D3A392CC925636401_75 = value; } inline static int32_t get_offset_of_B9B670F134A59FB1107AF01A9FE8F8E3980B3093_76() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___B9B670F134A59FB1107AF01A9FE8F8E3980B3093_76)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_B9B670F134A59FB1107AF01A9FE8F8E3980B3093_76() const { return ___B9B670F134A59FB1107AF01A9FE8F8E3980B3093_76; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_B9B670F134A59FB1107AF01A9FE8F8E3980B3093_76() { return &___B9B670F134A59FB1107AF01A9FE8F8E3980B3093_76; } inline void set_B9B670F134A59FB1107AF01A9FE8F8E3980B3093_76(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___B9B670F134A59FB1107AF01A9FE8F8E3980B3093_76 = value; } inline static int32_t get_offset_of_BEBC9ECC660A13EFC359BA3383411F698CFF25DB_77() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___BEBC9ECC660A13EFC359BA3383411F698CFF25DB_77)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_BEBC9ECC660A13EFC359BA3383411F698CFF25DB_77() const { return ___BEBC9ECC660A13EFC359BA3383411F698CFF25DB_77; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_BEBC9ECC660A13EFC359BA3383411F698CFF25DB_77() { return &___BEBC9ECC660A13EFC359BA3383411F698CFF25DB_77; } inline void set_BEBC9ECC660A13EFC359BA3383411F698CFF25DB_77(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___BEBC9ECC660A13EFC359BA3383411F698CFF25DB_77 = value; } inline static int32_t get_offset_of_BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_78() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_78)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_78() const { return ___BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_78; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_78() { return &___BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_78; } inline void set_BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_78(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_78 = value; } inline static int32_t get_offset_of_BF5EB60806ECB74EE484105DD9D6F463BF994867_79() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___BF5EB60806ECB74EE484105DD9D6F463BF994867_79)); } inline __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 get_BF5EB60806ECB74EE484105DD9D6F463BF994867_79() const { return ___BF5EB60806ECB74EE484105DD9D6F463BF994867_79; } inline __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 * get_address_of_BF5EB60806ECB74EE484105DD9D6F463BF994867_79() { return &___BF5EB60806ECB74EE484105DD9D6F463BF994867_79; } inline void set_BF5EB60806ECB74EE484105DD9D6F463BF994867_79(__StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 value) { ___BF5EB60806ECB74EE484105DD9D6F463BF994867_79 = value; } inline static int32_t get_offset_of_C1A1100642BA9685B30A84D97348484E14AA1865_80() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___C1A1100642BA9685B30A84D97348484E14AA1865_80)); } inline int64_t get_C1A1100642BA9685B30A84D97348484E14AA1865_80() const { return ___C1A1100642BA9685B30A84D97348484E14AA1865_80; } inline int64_t* get_address_of_C1A1100642BA9685B30A84D97348484E14AA1865_80() { return &___C1A1100642BA9685B30A84D97348484E14AA1865_80; } inline void set_C1A1100642BA9685B30A84D97348484E14AA1865_80(int64_t value) { ___C1A1100642BA9685B30A84D97348484E14AA1865_80 = value; } inline static int32_t get_offset_of_C6F364A0AD934EFED8909446C215752E565D77C1_81() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___C6F364A0AD934EFED8909446C215752E565D77C1_81)); } inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 get_C6F364A0AD934EFED8909446C215752E565D77C1_81() const { return ___C6F364A0AD934EFED8909446C215752E565D77C1_81; } inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 * get_address_of_C6F364A0AD934EFED8909446C215752E565D77C1_81() { return &___C6F364A0AD934EFED8909446C215752E565D77C1_81; } inline void set_C6F364A0AD934EFED8909446C215752E565D77C1_81(__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 value) { ___C6F364A0AD934EFED8909446C215752E565D77C1_81 = value; } inline static int32_t get_offset_of_CE5835130F5277F63D716FC9115526B0AC68FFAD_82() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___CE5835130F5277F63D716FC9115526B0AC68FFAD_82)); } inline __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F get_CE5835130F5277F63D716FC9115526B0AC68FFAD_82() const { return ___CE5835130F5277F63D716FC9115526B0AC68FFAD_82; } inline __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F * get_address_of_CE5835130F5277F63D716FC9115526B0AC68FFAD_82() { return &___CE5835130F5277F63D716FC9115526B0AC68FFAD_82; } inline void set_CE5835130F5277F63D716FC9115526B0AC68FFAD_82(__StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F value) { ___CE5835130F5277F63D716FC9115526B0AC68FFAD_82 = value; } inline static int32_t get_offset_of_CE93C35B755802BC4B3D180716B048FC61701EF7_83() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___CE93C35B755802BC4B3D180716B048FC61701EF7_83)); } inline __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 get_CE93C35B755802BC4B3D180716B048FC61701EF7_83() const { return ___CE93C35B755802BC4B3D180716B048FC61701EF7_83; } inline __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 * get_address_of_CE93C35B755802BC4B3D180716B048FC61701EF7_83() { return &___CE93C35B755802BC4B3D180716B048FC61701EF7_83; } inline void set_CE93C35B755802BC4B3D180716B048FC61701EF7_83(__StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 value) { ___CE93C35B755802BC4B3D180716B048FC61701EF7_83 = value; } inline static int32_t get_offset_of_D117188BE8D4609C0D531C51B0BB911A4219DEBE_84() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___D117188BE8D4609C0D531C51B0BB911A4219DEBE_84)); } inline __StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472 get_D117188BE8D4609C0D531C51B0BB911A4219DEBE_84() const { return ___D117188BE8D4609C0D531C51B0BB911A4219DEBE_84; } inline __StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472 * get_address_of_D117188BE8D4609C0D531C51B0BB911A4219DEBE_84() { return &___D117188BE8D4609C0D531C51B0BB911A4219DEBE_84; } inline void set_D117188BE8D4609C0D531C51B0BB911A4219DEBE_84(__StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472 value) { ___D117188BE8D4609C0D531C51B0BB911A4219DEBE_84 = value; } inline static int32_t get_offset_of_D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_85() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_85)); } inline __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F get_D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_85() const { return ___D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_85; } inline __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F * get_address_of_D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_85() { return &___D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_85; } inline void set_D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_85(__StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F value) { ___D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_85 = value; } inline static int32_t get_offset_of_DA19DB47B583EFCF7825D2E39D661D2354F28219_86() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___DA19DB47B583EFCF7825D2E39D661D2354F28219_86)); } inline __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB get_DA19DB47B583EFCF7825D2E39D661D2354F28219_86() const { return ___DA19DB47B583EFCF7825D2E39D661D2354F28219_86; } inline __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB * get_address_of_DA19DB47B583EFCF7825D2E39D661D2354F28219_86() { return &___DA19DB47B583EFCF7825D2E39D661D2354F28219_86; } inline void set_DA19DB47B583EFCF7825D2E39D661D2354F28219_86(__StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB value) { ___DA19DB47B583EFCF7825D2E39D661D2354F28219_86 = value; } inline static int32_t get_offset_of_DD3AEFEADB1CD615F3017763F1568179FEE640B0_87() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___DD3AEFEADB1CD615F3017763F1568179FEE640B0_87)); } inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A get_DD3AEFEADB1CD615F3017763F1568179FEE640B0_87() const { return ___DD3AEFEADB1CD615F3017763F1568179FEE640B0_87; } inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A * get_address_of_DD3AEFEADB1CD615F3017763F1568179FEE640B0_87() { return &___DD3AEFEADB1CD615F3017763F1568179FEE640B0_87; } inline void set_DD3AEFEADB1CD615F3017763F1568179FEE640B0_87(__StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A value) { ___DD3AEFEADB1CD615F3017763F1568179FEE640B0_87 = value; } inline static int32_t get_offset_of_E1827270A5FE1C85F5352A66FD87BA747213D006_88() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___E1827270A5FE1C85F5352A66FD87BA747213D006_88)); } inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 get_E1827270A5FE1C85F5352A66FD87BA747213D006_88() const { return ___E1827270A5FE1C85F5352A66FD87BA747213D006_88; } inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 * get_address_of_E1827270A5FE1C85F5352A66FD87BA747213D006_88() { return &___E1827270A5FE1C85F5352A66FD87BA747213D006_88; } inline void set_E1827270A5FE1C85F5352A66FD87BA747213D006_88(__StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 value) { ___E1827270A5FE1C85F5352A66FD87BA747213D006_88 = value; } inline static int32_t get_offset_of_E45BAB43F7D5D038672B3E3431F92E34A7AF2571_89() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___E45BAB43F7D5D038672B3E3431F92E34A7AF2571_89)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_E45BAB43F7D5D038672B3E3431F92E34A7AF2571_89() const { return ___E45BAB43F7D5D038672B3E3431F92E34A7AF2571_89; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_E45BAB43F7D5D038672B3E3431F92E34A7AF2571_89() { return &___E45BAB43F7D5D038672B3E3431F92E34A7AF2571_89; } inline void set_E45BAB43F7D5D038672B3E3431F92E34A7AF2571_89(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___E45BAB43F7D5D038672B3E3431F92E34A7AF2571_89 = value; } inline static int32_t get_offset_of_E92B39D8233061927D9ACDE54665E68E7535635A_90() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___E92B39D8233061927D9ACDE54665E68E7535635A_90)); } inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A get_E92B39D8233061927D9ACDE54665E68E7535635A_90() const { return ___E92B39D8233061927D9ACDE54665E68E7535635A_90; } inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A * get_address_of_E92B39D8233061927D9ACDE54665E68E7535635A_90() { return &___E92B39D8233061927D9ACDE54665E68E7535635A_90; } inline void set_E92B39D8233061927D9ACDE54665E68E7535635A_90(__StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A value) { ___E92B39D8233061927D9ACDE54665E68E7535635A_90 = value; } inline static int32_t get_offset_of_EA9506959484C55CFE0C139C624DF6060E285866_91() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___EA9506959484C55CFE0C139C624DF6060E285866_91)); } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_EA9506959484C55CFE0C139C624DF6060E285866_91() const { return ___EA9506959484C55CFE0C139C624DF6060E285866_91; } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_EA9506959484C55CFE0C139C624DF6060E285866_91() { return &___EA9506959484C55CFE0C139C624DF6060E285866_91; } inline void set_EA9506959484C55CFE0C139C624DF6060E285866_91(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value) { ___EA9506959484C55CFE0C139C624DF6060E285866_91 = value; } inline static int32_t get_offset_of_EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_92() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_92)); } inline __StaticArrayInitTypeSizeU3D262_t93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7 get_EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_92() const { return ___EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_92; } inline __StaticArrayInitTypeSizeU3D262_t93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7 * get_address_of_EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_92() { return &___EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_92; } inline void set_EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_92(__StaticArrayInitTypeSizeU3D262_t93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7 value) { ___EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_92 = value; } inline static int32_t get_offset_of_EBF68F411848D603D059DFDEA2321C5A5EA78044_93() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___EBF68F411848D603D059DFDEA2321C5A5EA78044_93)); } inline __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 get_EBF68F411848D603D059DFDEA2321C5A5EA78044_93() const { return ___EBF68F411848D603D059DFDEA2321C5A5EA78044_93; } inline __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 * get_address_of_EBF68F411848D603D059DFDEA2321C5A5EA78044_93() { return &___EBF68F411848D603D059DFDEA2321C5A5EA78044_93; } inline void set_EBF68F411848D603D059DFDEA2321C5A5EA78044_93(__StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 value) { ___EBF68F411848D603D059DFDEA2321C5A5EA78044_93 = value; } inline static int32_t get_offset_of_EC89C317EA2BF49A70EFF5E89C691E34733D7C37_94() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___EC89C317EA2BF49A70EFF5E89C691E34733D7C37_94)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_EC89C317EA2BF49A70EFF5E89C691E34733D7C37_94() const { return ___EC89C317EA2BF49A70EFF5E89C691E34733D7C37_94; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_EC89C317EA2BF49A70EFF5E89C691E34733D7C37_94() { return &___EC89C317EA2BF49A70EFF5E89C691E34733D7C37_94; } inline void set_EC89C317EA2BF49A70EFF5E89C691E34733D7C37_94(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___EC89C317EA2BF49A70EFF5E89C691E34733D7C37_94 = value; } inline static int32_t get_offset_of_F06E829E62F3AFBC045D064E10A4F5DF7C969612_95() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___F06E829E62F3AFBC045D064E10A4F5DF7C969612_95)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_F06E829E62F3AFBC045D064E10A4F5DF7C969612_95() const { return ___F06E829E62F3AFBC045D064E10A4F5DF7C969612_95; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_F06E829E62F3AFBC045D064E10A4F5DF7C969612_95() { return &___F06E829E62F3AFBC045D064E10A4F5DF7C969612_95; } inline void set_F06E829E62F3AFBC045D064E10A4F5DF7C969612_95(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___F06E829E62F3AFBC045D064E10A4F5DF7C969612_95 = value; } inline static int32_t get_offset_of_F073AA332018FDA0D572E99448FFF1D6422BD520_96() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___F073AA332018FDA0D572E99448FFF1D6422BD520_96)); } inline __StaticArrayInitTypeSizeU3D11614_tDF34959BE752359A89A4A577B8798D2D66A5E7F5 get_F073AA332018FDA0D572E99448FFF1D6422BD520_96() const { return ___F073AA332018FDA0D572E99448FFF1D6422BD520_96; } inline __StaticArrayInitTypeSizeU3D11614_tDF34959BE752359A89A4A577B8798D2D66A5E7F5 * get_address_of_F073AA332018FDA0D572E99448FFF1D6422BD520_96() { return &___F073AA332018FDA0D572E99448FFF1D6422BD520_96; } inline void set_F073AA332018FDA0D572E99448FFF1D6422BD520_96(__StaticArrayInitTypeSizeU3D11614_tDF34959BE752359A89A4A577B8798D2D66A5E7F5 value) { ___F073AA332018FDA0D572E99448FFF1D6422BD520_96 = value; } inline static int32_t get_offset_of_F34B0E10653402E8F788F8BC3F7CD7090928A429_97() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___F34B0E10653402E8F788F8BC3F7CD7090928A429_97)); } inline __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 get_F34B0E10653402E8F788F8BC3F7CD7090928A429_97() const { return ___F34B0E10653402E8F788F8BC3F7CD7090928A429_97; } inline __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 * get_address_of_F34B0E10653402E8F788F8BC3F7CD7090928A429_97() { return &___F34B0E10653402E8F788F8BC3F7CD7090928A429_97; } inline void set_F34B0E10653402E8F788F8BC3F7CD7090928A429_97(__StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 value) { ___F34B0E10653402E8F788F8BC3F7CD7090928A429_97 = value; } inline static int32_t get_offset_of_F37E34BEADB04F34FCC31078A59F49856CA83D5B_98() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___F37E34BEADB04F34FCC31078A59F49856CA83D5B_98)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_F37E34BEADB04F34FCC31078A59F49856CA83D5B_98() const { return ___F37E34BEADB04F34FCC31078A59F49856CA83D5B_98; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_F37E34BEADB04F34FCC31078A59F49856CA83D5B_98() { return &___F37E34BEADB04F34FCC31078A59F49856CA83D5B_98; } inline void set_F37E34BEADB04F34FCC31078A59F49856CA83D5B_98(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___F37E34BEADB04F34FCC31078A59F49856CA83D5B_98 = value; } inline static int32_t get_offset_of_F512A9ABF88066AAEB92684F95CC05D8101B462B_99() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___F512A9ABF88066AAEB92684F95CC05D8101B462B_99)); } inline __StaticArrayInitTypeSizeU3D94_t23554D8B96399688002A3BE81C7C15EFB011DEC6 get_F512A9ABF88066AAEB92684F95CC05D8101B462B_99() const { return ___F512A9ABF88066AAEB92684F95CC05D8101B462B_99; } inline __StaticArrayInitTypeSizeU3D94_t23554D8B96399688002A3BE81C7C15EFB011DEC6 * get_address_of_F512A9ABF88066AAEB92684F95CC05D8101B462B_99() { return &___F512A9ABF88066AAEB92684F95CC05D8101B462B_99; } inline void set_F512A9ABF88066AAEB92684F95CC05D8101B462B_99(__StaticArrayInitTypeSizeU3D94_t23554D8B96399688002A3BE81C7C15EFB011DEC6 value) { ___F512A9ABF88066AAEB92684F95CC05D8101B462B_99 = value; } inline static int32_t get_offset_of_F8FAABB821300AA500C2CEC6091B3782A7FB44A4_100() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___F8FAABB821300AA500C2CEC6091B3782A7FB44A4_100)); } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_F8FAABB821300AA500C2CEC6091B3782A7FB44A4_100() const { return ___F8FAABB821300AA500C2CEC6091B3782A7FB44A4_100; } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_F8FAABB821300AA500C2CEC6091B3782A7FB44A4_100() { return &___F8FAABB821300AA500C2CEC6091B3782A7FB44A4_100; } inline void set_F8FAABB821300AA500C2CEC6091B3782A7FB44A4_100(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value) { ___F8FAABB821300AA500C2CEC6091B3782A7FB44A4_100 = value; } inline static int32_t get_offset_of_FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_101() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_101)); } inline __StaticArrayInitTypeSizeU3D2350_t96984AEF232104302694B7EFDA3F92BC42BF207D get_FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_101() const { return ___FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_101; } inline __StaticArrayInitTypeSizeU3D2350_t96984AEF232104302694B7EFDA3F92BC42BF207D * get_address_of_FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_101() { return &___FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_101; } inline void set_FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_101(__StaticArrayInitTypeSizeU3D2350_t96984AEF232104302694B7EFDA3F92BC42BF207D value) { ___FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_101 = value; } }; // Mono.SafeStringMarshal struct SafeStringMarshal_tD41B530333F2C9F500BD6FEC91735D16F06C9A6F { public: // System.String Mono.SafeStringMarshal::str String_t* ___str_0; // System.IntPtr Mono.SafeStringMarshal::marshaled_string intptr_t ___marshaled_string_1; public: inline static int32_t get_offset_of_str_0() { return static_cast<int32_t>(offsetof(SafeStringMarshal_tD41B530333F2C9F500BD6FEC91735D16F06C9A6F, ___str_0)); } inline String_t* get_str_0() const { return ___str_0; } inline String_t** get_address_of_str_0() { return &___str_0; } inline void set_str_0(String_t* value) { ___str_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___str_0), (void*)value); } inline static int32_t get_offset_of_marshaled_string_1() { return static_cast<int32_t>(offsetof(SafeStringMarshal_tD41B530333F2C9F500BD6FEC91735D16F06C9A6F, ___marshaled_string_1)); } inline intptr_t get_marshaled_string_1() const { return ___marshaled_string_1; } inline intptr_t* get_address_of_marshaled_string_1() { return &___marshaled_string_1; } inline void set_marshaled_string_1(intptr_t value) { ___marshaled_string_1 = value; } }; // Native definition for P/Invoke marshalling of Mono.SafeStringMarshal struct SafeStringMarshal_tD41B530333F2C9F500BD6FEC91735D16F06C9A6F_marshaled_pinvoke { char* ___str_0; intptr_t ___marshaled_string_1; }; // Native definition for COM marshalling of Mono.SafeStringMarshal struct SafeStringMarshal_tD41B530333F2C9F500BD6FEC91735D16F06C9A6F_marshaled_com { Il2CppChar* ___str_0; intptr_t ___marshaled_string_1; }; // System.Collections.Hashtable struct Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 : public RuntimeObject { public: // System.Collections.Hashtable_bucket[] System.Collections.Hashtable::buckets bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* ___buckets_0; // System.Int32 System.Collections.Hashtable::count int32_t ___count_1; // System.Int32 System.Collections.Hashtable::occupancy int32_t ___occupancy_2; // System.Int32 System.Collections.Hashtable::loadsize int32_t ___loadsize_3; // System.Single System.Collections.Hashtable::loadFactor float ___loadFactor_4; // System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Hashtable::version int32_t ___version_5; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Hashtable::isWriterInProgress bool ___isWriterInProgress_6; // System.Collections.ICollection System.Collections.Hashtable::keys RuntimeObject* ___keys_7; // System.Collections.IEqualityComparer System.Collections.Hashtable::_keycomparer RuntimeObject* ____keycomparer_8; // System.Object System.Collections.Hashtable::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___buckets_0)); } inline bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* get_buckets_0() const { return ___buckets_0; } inline bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_count_1() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___count_1)); } inline int32_t get_count_1() const { return ___count_1; } inline int32_t* get_address_of_count_1() { return &___count_1; } inline void set_count_1(int32_t value) { ___count_1 = value; } inline static int32_t get_offset_of_occupancy_2() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___occupancy_2)); } inline int32_t get_occupancy_2() const { return ___occupancy_2; } inline int32_t* get_address_of_occupancy_2() { return &___occupancy_2; } inline void set_occupancy_2(int32_t value) { ___occupancy_2 = value; } inline static int32_t get_offset_of_loadsize_3() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___loadsize_3)); } inline int32_t get_loadsize_3() const { return ___loadsize_3; } inline int32_t* get_address_of_loadsize_3() { return &___loadsize_3; } inline void set_loadsize_3(int32_t value) { ___loadsize_3 = value; } inline static int32_t get_offset_of_loadFactor_4() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___loadFactor_4)); } inline float get_loadFactor_4() const { return ___loadFactor_4; } inline float* get_address_of_loadFactor_4() { return &___loadFactor_4; } inline void set_loadFactor_4(float value) { ___loadFactor_4 = value; } inline static int32_t get_offset_of_version_5() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___version_5)); } inline int32_t get_version_5() const { return ___version_5; } inline int32_t* get_address_of_version_5() { return &___version_5; } inline void set_version_5(int32_t value) { ___version_5 = value; } inline static int32_t get_offset_of_isWriterInProgress_6() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___isWriterInProgress_6)); } inline bool get_isWriterInProgress_6() const { return ___isWriterInProgress_6; } inline bool* get_address_of_isWriterInProgress_6() { return &___isWriterInProgress_6; } inline void set_isWriterInProgress_6(bool value) { ___isWriterInProgress_6 = value; } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___keys_7)); } inline RuntimeObject* get_keys_7() const { return ___keys_7; } inline RuntimeObject** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(RuntimeObject* value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of__keycomparer_8() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ____keycomparer_8)); } inline RuntimeObject* get__keycomparer_8() const { return ____keycomparer_8; } inline RuntimeObject** get_address_of__keycomparer_8() { return &____keycomparer_8; } inline void set__keycomparer_8(RuntimeObject* value) { ____keycomparer_8 = value; Il2CppCodeGenWriteBarrier((void**)(&____keycomparer_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ____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.Configuration.Assemblies.AssemblyHashAlgorithm struct AssemblyHashAlgorithm_t31E4F1BC642CF668706C9D0FBD9DFDF5EE01CEB9 { public: // System.Int32 System.Configuration.Assemblies.AssemblyHashAlgorithm::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AssemblyHashAlgorithm_t31E4F1BC642CF668706C9D0FBD9DFDF5EE01CEB9, ___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.Configuration.Assemblies.AssemblyVersionCompatibility struct AssemblyVersionCompatibility_tEA062AB37A9A750B33F6CA2898EEF03A4EEA496C { public: // System.Int32 System.Configuration.Assemblies.AssemblyVersionCompatibility::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AssemblyVersionCompatibility_tEA062AB37A9A750B33F6CA2898EEF03A4EEA496C, ___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.Delegate struct Delegate_t : public RuntimeObject { public: // System.IntPtr System.Delegate::method_ptr Il2CppMethodPointer ___method_ptr_0; // System.IntPtr System.Delegate::invoke_impl intptr_t ___invoke_impl_1; // System.Object System.Delegate::m_target RuntimeObject * ___m_target_2; // System.IntPtr System.Delegate::method intptr_t ___method_3; // System.IntPtr System.Delegate::delegate_trampoline intptr_t ___delegate_trampoline_4; // System.IntPtr System.Delegate::extra_arg intptr_t ___extra_arg_5; // System.IntPtr System.Delegate::method_code intptr_t ___method_code_6; // System.Reflection.MethodInfo System.Delegate::method_info MethodInfo_t * ___method_info_7; // System.Reflection.MethodInfo System.Delegate::original_method_info MethodInfo_t * ___original_method_info_8; // System.DelegateData System.Delegate::data DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9; // System.Boolean System.Delegate::method_is_virtual bool ___method_is_virtual_10; public: inline static int32_t get_offset_of_method_ptr_0() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_ptr_0)); } inline Il2CppMethodPointer get_method_ptr_0() const { return ___method_ptr_0; } inline Il2CppMethodPointer* get_address_of_method_ptr_0() { return &___method_ptr_0; } inline void set_method_ptr_0(Il2CppMethodPointer value) { ___method_ptr_0 = value; } inline static int32_t get_offset_of_invoke_impl_1() { return static_cast<int32_t>(offsetof(Delegate_t, ___invoke_impl_1)); } inline intptr_t get_invoke_impl_1() const { return ___invoke_impl_1; } inline intptr_t* get_address_of_invoke_impl_1() { return &___invoke_impl_1; } inline void set_invoke_impl_1(intptr_t value) { ___invoke_impl_1 = value; } inline static int32_t get_offset_of_m_target_2() { return static_cast<int32_t>(offsetof(Delegate_t, ___m_target_2)); } inline RuntimeObject * get_m_target_2() const { return ___m_target_2; } inline RuntimeObject ** get_address_of_m_target_2() { return &___m_target_2; } inline void set_m_target_2(RuntimeObject * value) { ___m_target_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_target_2), (void*)value); } inline static int32_t get_offset_of_method_3() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_3)); } inline intptr_t get_method_3() const { return ___method_3; } inline intptr_t* get_address_of_method_3() { return &___method_3; } inline void set_method_3(intptr_t value) { ___method_3 = value; } inline static int32_t get_offset_of_delegate_trampoline_4() { return static_cast<int32_t>(offsetof(Delegate_t, ___delegate_trampoline_4)); } inline intptr_t get_delegate_trampoline_4() const { return ___delegate_trampoline_4; } inline intptr_t* get_address_of_delegate_trampoline_4() { return &___delegate_trampoline_4; } inline void set_delegate_trampoline_4(intptr_t value) { ___delegate_trampoline_4 = value; } inline static int32_t get_offset_of_extra_arg_5() { return static_cast<int32_t>(offsetof(Delegate_t, ___extra_arg_5)); } inline intptr_t get_extra_arg_5() const { return ___extra_arg_5; } inline intptr_t* get_address_of_extra_arg_5() { return &___extra_arg_5; } inline void set_extra_arg_5(intptr_t value) { ___extra_arg_5 = value; } inline static int32_t get_offset_of_method_code_6() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_code_6)); } inline intptr_t get_method_code_6() const { return ___method_code_6; } inline intptr_t* get_address_of_method_code_6() { return &___method_code_6; } inline void set_method_code_6(intptr_t value) { ___method_code_6 = value; } inline static int32_t get_offset_of_method_info_7() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_info_7)); } inline MethodInfo_t * get_method_info_7() const { return ___method_info_7; } inline MethodInfo_t ** get_address_of_method_info_7() { return &___method_info_7; } inline void set_method_info_7(MethodInfo_t * value) { ___method_info_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___method_info_7), (void*)value); } inline static int32_t get_offset_of_original_method_info_8() { return static_cast<int32_t>(offsetof(Delegate_t, ___original_method_info_8)); } inline MethodInfo_t * get_original_method_info_8() const { return ___original_method_info_8; } inline MethodInfo_t ** get_address_of_original_method_info_8() { return &___original_method_info_8; } inline void set_original_method_info_8(MethodInfo_t * value) { ___original_method_info_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___original_method_info_8), (void*)value); } inline static int32_t get_offset_of_data_9() { return static_cast<int32_t>(offsetof(Delegate_t, ___data_9)); } inline DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * get_data_9() const { return ___data_9; } inline DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE ** get_address_of_data_9() { return &___data_9; } inline void set_data_9(DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * value) { ___data_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___data_9), (void*)value); } inline static int32_t get_offset_of_method_is_virtual_10() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_is_virtual_10)); } inline bool get_method_is_virtual_10() const { return ___method_is_virtual_10; } inline bool* get_address_of_method_is_virtual_10() { return &___method_is_virtual_10; } inline void set_method_is_virtual_10(bool value) { ___method_is_virtual_10 = value; } }; // Native definition for P/Invoke marshalling of System.Delegate struct Delegate_t_marshaled_pinvoke { intptr_t ___method_ptr_0; intptr_t ___invoke_impl_1; Il2CppIUnknown* ___m_target_2; intptr_t ___method_3; intptr_t ___delegate_trampoline_4; intptr_t ___extra_arg_5; intptr_t ___method_code_6; MethodInfo_t * ___method_info_7; MethodInfo_t * ___original_method_info_8; DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9; int32_t ___method_is_virtual_10; }; // Native definition for COM marshalling of System.Delegate struct Delegate_t_marshaled_com { intptr_t ___method_ptr_0; intptr_t ___invoke_impl_1; Il2CppIUnknown* ___m_target_2; intptr_t ___method_3; intptr_t ___delegate_trampoline_4; intptr_t ___extra_arg_5; intptr_t ___method_code_6; MethodInfo_t * ___method_info_7; MethodInfo_t * ___original_method_info_8; DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9; int32_t ___method_is_virtual_10; }; // System.Diagnostics.StackTrace_TraceFormat struct TraceFormat_t0B4115A5EC115A575F04DFA04F4510C20AF83617 { public: // System.Int32 System.Diagnostics.StackTrace_TraceFormat::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TraceFormat_t0B4115A5EC115A575F04DFA04F4510C20AF83617, ___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.Diagnostics.Tracing.ControllerCommand struct ControllerCommand_t4153272266B77F0CC30FFC224F238B4358B36A53 { public: // System.Int32 System.Diagnostics.Tracing.ControllerCommand::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ControllerCommand_t4153272266B77F0CC30FFC224F238B4358B36A53, ___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.Diagnostics.Tracing.EventActivityOptions struct EventActivityOptions_t929DC56692200C1AE8FD9194A2510B6149D69168 { public: // System.Int32 System.Diagnostics.Tracing.EventActivityOptions::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EventActivityOptions_t929DC56692200C1AE8FD9194A2510B6149D69168, ___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.Diagnostics.Tracing.EventCommand struct EventCommand_tF27BD5E5E008A8CC5F0434590C486EBD37867550 { public: // System.Int32 System.Diagnostics.Tracing.EventCommand::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EventCommand_tF27BD5E5E008A8CC5F0434590C486EBD37867550, ___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.Diagnostics.Tracing.EventFieldFormat struct EventFieldFormat_t41B223711875BE8417E9C3D48E7A03D21CB71538 { public: // System.Int32 System.Diagnostics.Tracing.EventFieldFormat::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EventFieldFormat_t41B223711875BE8417E9C3D48E7A03D21CB71538, ___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.Diagnostics.Tracing.EventFieldTags struct EventFieldTags_t88BE34A8AA9B64F6E37F7E372E6318C4EFB8FE40 { public: // System.Int32 System.Diagnostics.Tracing.EventFieldTags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EventFieldTags_t88BE34A8AA9B64F6E37F7E372E6318C4EFB8FE40, ___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.Diagnostics.Tracing.EventKeywords struct EventKeywords_t23A3504C8689DEED4A3545494C8C52C55214B942 { public: // System.Int64 System.Diagnostics.Tracing.EventKeywords::value__ int64_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EventKeywords_t23A3504C8689DEED4A3545494C8C52C55214B942, ___value___2)); } inline int64_t get_value___2() const { return ___value___2; } inline int64_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int64_t value) { ___value___2 = value; } }; // System.Diagnostics.Tracing.EventLevel struct EventLevel_t647BA4EA78B2B108075D614A19C8C2204644790E { public: // System.Int32 System.Diagnostics.Tracing.EventLevel::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EventLevel_t647BA4EA78B2B108075D614A19C8C2204644790E, ___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.Diagnostics.Tracing.EventManifestOptions struct EventManifestOptions_tE60966636485328AC4D00850C1FCB9B8E25190DF { public: // System.Int32 System.Diagnostics.Tracing.EventManifestOptions::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EventManifestOptions_tE60966636485328AC4D00850C1FCB9B8E25190DF, ___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.Diagnostics.Tracing.EventOpcode struct EventOpcode_t52B1CBEC2A4C6FDDC00A61ECF12BF584A5146C44 { public: // System.Int32 System.Diagnostics.Tracing.EventOpcode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EventOpcode_t52B1CBEC2A4C6FDDC00A61ECF12BF584A5146C44, ___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.Diagnostics.Tracing.EventProvider_WriteEventErrorCode struct WriteEventErrorCode_t2985FE5E3CE913815E6F506873798D31C6DD347F { public: // System.Int32 System.Diagnostics.Tracing.EventProvider_WriteEventErrorCode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(WriteEventErrorCode_t2985FE5E3CE913815E6F506873798D31C6DD347F, ___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.Diagnostics.Tracing.EventSourceSettings struct EventSourceSettings_t56A3A2CF82262192C3FB6935B694C9A7405D38FB { public: // System.Int32 System.Diagnostics.Tracing.EventSourceSettings::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EventSourceSettings_t56A3A2CF82262192C3FB6935B694C9A7405D38FB, ___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.Diagnostics.Tracing.EventTags struct EventTags_t886E6B89C75F05A5BA40FBC96790AA6C5F24A712 { public: // System.Int32 System.Diagnostics.Tracing.EventTags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EventTags_t886E6B89C75F05A5BA40FBC96790AA6C5F24A712, ___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.Diagnostics.Tracing.EventTask struct EventTask_tBEC61529FD6426C4863B30C6BDD3CC5E4201E8C9 { public: // System.Int32 System.Diagnostics.Tracing.EventTask::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EventTask_tBEC61529FD6426C4863B30C6BDD3CC5E4201E8C9, ___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.Diagnostics.Tracing.EventWrittenEventArgs struct EventWrittenEventArgs_t3E46581254D84E46F89EE4154394C8B5B75A523E : public EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E { public: // System.Int32 System.Diagnostics.Tracing.EventWrittenEventArgs::<EventId>k__BackingField int32_t ___U3CEventIdU3Ek__BackingField_1; // System.Guid System.Diagnostics.Tracing.EventWrittenEventArgs::<RelatedActivityId>k__BackingField Guid_t ___U3CRelatedActivityIdU3Ek__BackingField_2; // System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object> System.Diagnostics.Tracing.EventWrittenEventArgs::<Payload>k__BackingField ReadOnlyCollection_1_t5D996E967221C71E4EC5CC11210C3076432D5A50 * ___U3CPayloadU3Ek__BackingField_3; // System.String System.Diagnostics.Tracing.EventWrittenEventArgs::m_message String_t* ___m_message_4; // System.String System.Diagnostics.Tracing.EventWrittenEventArgs::m_eventName String_t* ___m_eventName_5; // System.Diagnostics.Tracing.EventSource System.Diagnostics.Tracing.EventWrittenEventArgs::m_eventSource EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB * ___m_eventSource_6; // System.Collections.ObjectModel.ReadOnlyCollection`1<System.String> System.Diagnostics.Tracing.EventWrittenEventArgs::m_payloadNames ReadOnlyCollection_1_tB9E469CEA1A95F21BDF5C8594323E208E5454BE0 * ___m_payloadNames_7; public: inline static int32_t get_offset_of_U3CEventIdU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(EventWrittenEventArgs_t3E46581254D84E46F89EE4154394C8B5B75A523E, ___U3CEventIdU3Ek__BackingField_1)); } inline int32_t get_U3CEventIdU3Ek__BackingField_1() const { return ___U3CEventIdU3Ek__BackingField_1; } inline int32_t* get_address_of_U3CEventIdU3Ek__BackingField_1() { return &___U3CEventIdU3Ek__BackingField_1; } inline void set_U3CEventIdU3Ek__BackingField_1(int32_t value) { ___U3CEventIdU3Ek__BackingField_1 = value; } inline static int32_t get_offset_of_U3CRelatedActivityIdU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(EventWrittenEventArgs_t3E46581254D84E46F89EE4154394C8B5B75A523E, ___U3CRelatedActivityIdU3Ek__BackingField_2)); } inline Guid_t get_U3CRelatedActivityIdU3Ek__BackingField_2() const { return ___U3CRelatedActivityIdU3Ek__BackingField_2; } inline Guid_t * get_address_of_U3CRelatedActivityIdU3Ek__BackingField_2() { return &___U3CRelatedActivityIdU3Ek__BackingField_2; } inline void set_U3CRelatedActivityIdU3Ek__BackingField_2(Guid_t value) { ___U3CRelatedActivityIdU3Ek__BackingField_2 = value; } inline static int32_t get_offset_of_U3CPayloadU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(EventWrittenEventArgs_t3E46581254D84E46F89EE4154394C8B5B75A523E, ___U3CPayloadU3Ek__BackingField_3)); } inline ReadOnlyCollection_1_t5D996E967221C71E4EC5CC11210C3076432D5A50 * get_U3CPayloadU3Ek__BackingField_3() const { return ___U3CPayloadU3Ek__BackingField_3; } inline ReadOnlyCollection_1_t5D996E967221C71E4EC5CC11210C3076432D5A50 ** get_address_of_U3CPayloadU3Ek__BackingField_3() { return &___U3CPayloadU3Ek__BackingField_3; } inline void set_U3CPayloadU3Ek__BackingField_3(ReadOnlyCollection_1_t5D996E967221C71E4EC5CC11210C3076432D5A50 * value) { ___U3CPayloadU3Ek__BackingField_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CPayloadU3Ek__BackingField_3), (void*)value); } inline static int32_t get_offset_of_m_message_4() { return static_cast<int32_t>(offsetof(EventWrittenEventArgs_t3E46581254D84E46F89EE4154394C8B5B75A523E, ___m_message_4)); } inline String_t* get_m_message_4() const { return ___m_message_4; } inline String_t** get_address_of_m_message_4() { return &___m_message_4; } inline void set_m_message_4(String_t* value) { ___m_message_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_message_4), (void*)value); } inline static int32_t get_offset_of_m_eventName_5() { return static_cast<int32_t>(offsetof(EventWrittenEventArgs_t3E46581254D84E46F89EE4154394C8B5B75A523E, ___m_eventName_5)); } inline String_t* get_m_eventName_5() const { return ___m_eventName_5; } inline String_t** get_address_of_m_eventName_5() { return &___m_eventName_5; } inline void set_m_eventName_5(String_t* value) { ___m_eventName_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_eventName_5), (void*)value); } inline static int32_t get_offset_of_m_eventSource_6() { return static_cast<int32_t>(offsetof(EventWrittenEventArgs_t3E46581254D84E46F89EE4154394C8B5B75A523E, ___m_eventSource_6)); } inline EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB * get_m_eventSource_6() const { return ___m_eventSource_6; } inline EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB ** get_address_of_m_eventSource_6() { return &___m_eventSource_6; } inline void set_m_eventSource_6(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB * value) { ___m_eventSource_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_eventSource_6), (void*)value); } inline static int32_t get_offset_of_m_payloadNames_7() { return static_cast<int32_t>(offsetof(EventWrittenEventArgs_t3E46581254D84E46F89EE4154394C8B5B75A523E, ___m_payloadNames_7)); } inline ReadOnlyCollection_1_tB9E469CEA1A95F21BDF5C8594323E208E5454BE0 * get_m_payloadNames_7() const { return ___m_payloadNames_7; } inline ReadOnlyCollection_1_tB9E469CEA1A95F21BDF5C8594323E208E5454BE0 ** get_address_of_m_payloadNames_7() { return &___m_payloadNames_7; } inline void set_m_payloadNames_7(ReadOnlyCollection_1_tB9E469CEA1A95F21BDF5C8594323E208E5454BE0 * value) { ___m_payloadNames_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_payloadNames_7), (void*)value); } }; // System.Diagnostics.Tracing.ManifestEnvelope_ManifestFormats struct ManifestFormats_t463B40ED85683557A1610A3FD7C1D61953F3112B { public: // System.Byte System.Diagnostics.Tracing.ManifestEnvelope_ManifestFormats::value__ uint8_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ManifestFormats_t463B40ED85683557A1610A3FD7C1D61953F3112B, ___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.Diagnostics.Tracing.TraceLoggingDataType struct TraceLoggingDataType_tAF569833EAB13AD2793006E97B6D27A72B8301FE { public: // System.Int32 System.Diagnostics.Tracing.TraceLoggingDataType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TraceLoggingDataType_tAF569833EAB13AD2793006E97B6D27A72B8301FE, ___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.Enum_ParseFailureKind struct ParseFailureKind_tEA92535264CBB0B0838EDDDA2B7203384426BF80 { public: // System.Int32 System.Enum_ParseFailureKind::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ParseFailureKind_tEA92535264CBB0B0838EDDDA2B7203384426BF80, ___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.Environment_SpecialFolder struct SpecialFolder_t5A2C2AE97BD6C2DF95061C8904B2225228AC9BA0 { public: // System.Int32 System.Environment_SpecialFolder::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(SpecialFolder_t5A2C2AE97BD6C2DF95061C8904B2225228AC9BA0, ___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.Environment_SpecialFolderOption struct SpecialFolderOption_tAF2DB60F447738C1E46C3D5660A0CBB0F4480470 { public: // System.Int32 System.Environment_SpecialFolderOption::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(SpecialFolderOption_tAF2DB60F447738C1E46C3D5660A0CBB0F4480470, ___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.Exception struct Exception_t : public RuntimeObject { public: // System.String System.Exception::_className String_t* ____className_1; // System.String System.Exception::_message String_t* ____message_2; // System.Collections.IDictionary System.Exception::_data RuntimeObject* ____data_3; // System.Exception System.Exception::_innerException Exception_t * ____innerException_4; // System.String System.Exception::_helpURL String_t* ____helpURL_5; // System.Object System.Exception::_stackTrace RuntimeObject * ____stackTrace_6; // System.String System.Exception::_stackTraceString String_t* ____stackTraceString_7; // System.String System.Exception::_remoteStackTraceString String_t* ____remoteStackTraceString_8; // System.Int32 System.Exception::_remoteStackIndex int32_t ____remoteStackIndex_9; // System.Object System.Exception::_dynamicMethods RuntimeObject * ____dynamicMethods_10; // System.Int32 System.Exception::_HResult int32_t ____HResult_11; // System.String System.Exception::_source String_t* ____source_12; // System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13; // System.Diagnostics.StackTrace[] System.Exception::captured_traces StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14; // System.IntPtr[] System.Exception::native_trace_ips IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* ___native_trace_ips_15; public: inline static int32_t get_offset_of__className_1() { return static_cast<int32_t>(offsetof(Exception_t, ____className_1)); } inline String_t* get__className_1() const { return ____className_1; } inline String_t** get_address_of__className_1() { return &____className_1; } inline void set__className_1(String_t* value) { ____className_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____className_1), (void*)value); } inline static int32_t get_offset_of__message_2() { return static_cast<int32_t>(offsetof(Exception_t, ____message_2)); } inline String_t* get__message_2() const { return ____message_2; } inline String_t** get_address_of__message_2() { return &____message_2; } inline void set__message_2(String_t* value) { ____message_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____message_2), (void*)value); } inline static int32_t get_offset_of__data_3() { return static_cast<int32_t>(offsetof(Exception_t, ____data_3)); } inline RuntimeObject* get__data_3() const { return ____data_3; } inline RuntimeObject** get_address_of__data_3() { return &____data_3; } inline void set__data_3(RuntimeObject* value) { ____data_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____data_3), (void*)value); } inline static int32_t get_offset_of__innerException_4() { return static_cast<int32_t>(offsetof(Exception_t, ____innerException_4)); } inline Exception_t * get__innerException_4() const { return ____innerException_4; } inline Exception_t ** get_address_of__innerException_4() { return &____innerException_4; } inline void set__innerException_4(Exception_t * value) { ____innerException_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____innerException_4), (void*)value); } inline static int32_t get_offset_of__helpURL_5() { return static_cast<int32_t>(offsetof(Exception_t, ____helpURL_5)); } inline String_t* get__helpURL_5() const { return ____helpURL_5; } inline String_t** get_address_of__helpURL_5() { return &____helpURL_5; } inline void set__helpURL_5(String_t* value) { ____helpURL_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____helpURL_5), (void*)value); } inline static int32_t get_offset_of__stackTrace_6() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTrace_6)); } inline RuntimeObject * get__stackTrace_6() const { return ____stackTrace_6; } inline RuntimeObject ** get_address_of__stackTrace_6() { return &____stackTrace_6; } inline void set__stackTrace_6(RuntimeObject * value) { ____stackTrace_6 = value; Il2CppCodeGenWriteBarrier((void**)(&____stackTrace_6), (void*)value); } inline static int32_t get_offset_of__stackTraceString_7() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTraceString_7)); } inline String_t* get__stackTraceString_7() const { return ____stackTraceString_7; } inline String_t** get_address_of__stackTraceString_7() { return &____stackTraceString_7; } inline void set__stackTraceString_7(String_t* value) { ____stackTraceString_7 = value; Il2CppCodeGenWriteBarrier((void**)(&____stackTraceString_7), (void*)value); } inline static int32_t get_offset_of__remoteStackTraceString_8() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackTraceString_8)); } inline String_t* get__remoteStackTraceString_8() const { return ____remoteStackTraceString_8; } inline String_t** get_address_of__remoteStackTraceString_8() { return &____remoteStackTraceString_8; } inline void set__remoteStackTraceString_8(String_t* value) { ____remoteStackTraceString_8 = value; Il2CppCodeGenWriteBarrier((void**)(&____remoteStackTraceString_8), (void*)value); } inline static int32_t get_offset_of__remoteStackIndex_9() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackIndex_9)); } inline int32_t get__remoteStackIndex_9() const { return ____remoteStackIndex_9; } inline int32_t* get_address_of__remoteStackIndex_9() { return &____remoteStackIndex_9; } inline void set__remoteStackIndex_9(int32_t value) { ____remoteStackIndex_9 = value; } inline static int32_t get_offset_of__dynamicMethods_10() { return static_cast<int32_t>(offsetof(Exception_t, ____dynamicMethods_10)); } inline RuntimeObject * get__dynamicMethods_10() const { return ____dynamicMethods_10; } inline RuntimeObject ** get_address_of__dynamicMethods_10() { return &____dynamicMethods_10; } inline void set__dynamicMethods_10(RuntimeObject * value) { ____dynamicMethods_10 = value; Il2CppCodeGenWriteBarrier((void**)(&____dynamicMethods_10), (void*)value); } inline static int32_t get_offset_of__HResult_11() { return static_cast<int32_t>(offsetof(Exception_t, ____HResult_11)); } inline int32_t get__HResult_11() const { return ____HResult_11; } inline int32_t* get_address_of__HResult_11() { return &____HResult_11; } inline void set__HResult_11(int32_t value) { ____HResult_11 = value; } inline static int32_t get_offset_of__source_12() { return static_cast<int32_t>(offsetof(Exception_t, ____source_12)); } inline String_t* get__source_12() const { return ____source_12; } inline String_t** get_address_of__source_12() { return &____source_12; } inline void set__source_12(String_t* value) { ____source_12 = value; Il2CppCodeGenWriteBarrier((void**)(&____source_12), (void*)value); } inline static int32_t get_offset_of__safeSerializationManager_13() { return static_cast<int32_t>(offsetof(Exception_t, ____safeSerializationManager_13)); } inline SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; } inline SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; } inline void set__safeSerializationManager_13(SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * value) { ____safeSerializationManager_13 = value; Il2CppCodeGenWriteBarrier((void**)(&____safeSerializationManager_13), (void*)value); } inline static int32_t get_offset_of_captured_traces_14() { return static_cast<int32_t>(offsetof(Exception_t, ___captured_traces_14)); } inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* get_captured_traces_14() const { return ___captured_traces_14; } inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196** get_address_of_captured_traces_14() { return &___captured_traces_14; } inline void set_captured_traces_14(StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* value) { ___captured_traces_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___captured_traces_14), (void*)value); } inline static int32_t get_offset_of_native_trace_ips_15() { return static_cast<int32_t>(offsetof(Exception_t, ___native_trace_ips_15)); } inline IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* get_native_trace_ips_15() const { return ___native_trace_ips_15; } inline IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; } inline void set_native_trace_ips_15(IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* value) { ___native_trace_ips_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___native_trace_ips_15), (void*)value); } }; struct Exception_t_StaticFields { public: // System.Object System.Exception::s_EDILock RuntimeObject * ___s_EDILock_0; public: inline static int32_t get_offset_of_s_EDILock_0() { return static_cast<int32_t>(offsetof(Exception_t_StaticFields, ___s_EDILock_0)); } inline RuntimeObject * get_s_EDILock_0() const { return ___s_EDILock_0; } inline RuntimeObject ** get_address_of_s_EDILock_0() { return &___s_EDILock_0; } inline void set_s_EDILock_0(RuntimeObject * value) { ___s_EDILock_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_EDILock_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Exception struct Exception_t_marshaled_pinvoke { char* ____className_1; char* ____message_2; RuntimeObject* ____data_3; Exception_t_marshaled_pinvoke* ____innerException_4; char* ____helpURL_5; Il2CppIUnknown* ____stackTrace_6; char* ____stackTraceString_7; char* ____remoteStackTraceString_8; int32_t ____remoteStackIndex_9; Il2CppIUnknown* ____dynamicMethods_10; int32_t ____HResult_11; char* ____source_12; SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13; StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14; Il2CppSafeArray/*NONE*/* ___native_trace_ips_15; }; // Native definition for COM marshalling of System.Exception struct Exception_t_marshaled_com { Il2CppChar* ____className_1; Il2CppChar* ____message_2; RuntimeObject* ____data_3; Exception_t_marshaled_com* ____innerException_4; Il2CppChar* ____helpURL_5; Il2CppIUnknown* ____stackTrace_6; Il2CppChar* ____stackTraceString_7; Il2CppChar* ____remoteStackTraceString_8; int32_t ____remoteStackIndex_9; Il2CppIUnknown* ____dynamicMethods_10; int32_t ____HResult_11; Il2CppChar* ____source_12; SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13; StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14; Il2CppSafeArray/*NONE*/* ___native_trace_ips_15; }; // System.Exception_ExceptionMessageKind struct ExceptionMessageKind_t5151BECAA7C450ADA0DDF5BB98A51E7042166AB7 { public: // System.Int32 System.Exception_ExceptionMessageKind::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ExceptionMessageKind_t5151BECAA7C450ADA0DDF5BB98A51E7042166AB7, ___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.ExceptionArgument struct ExceptionArgument_tE4C1E083DC891ECF9688A8A0C62D7F7841057B14 { public: // System.Int32 System.ExceptionArgument::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ExceptionArgument_tE4C1E083DC891ECF9688A8A0C62D7F7841057B14, ___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.ExceptionResource struct ExceptionResource_t897ACCB868BF3CAAC00AB0C00D57D7A2B6C7586A { public: // System.Int32 System.ExceptionResource::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ExceptionResource_t897ACCB868BF3CAAC00AB0C00D57D7A2B6C7586A, ___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.Globalization.CalendarId struct CalendarId_t6BEB24607D1F90A7EA377D0C97FB4167B5A7B364 { public: // System.UInt16 System.Globalization.CalendarId::value__ uint16_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CalendarId_t6BEB24607D1F90A7EA377D0C97FB4167B5A7B364, ___value___2)); } inline uint16_t get_value___2() const { return ___value___2; } inline uint16_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(uint16_t value) { ___value___2 = value; } }; // System.Globalization.CompareOptions struct CompareOptions_t163DCEA9A0972750294CC1A8348E5CA69E943939 { public: // System.Int32 System.Globalization.CompareOptions::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CompareOptions_t163DCEA9A0972750294CC1A8348E5CA69E943939, ___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.Globalization.CultureTypes struct CultureTypes_t04A866B07972D6C174F6BB5A60E76A1F2A123BBD { public: // System.Int32 System.Globalization.CultureTypes::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CultureTypes_t04A866B07972D6C174F6BB5A60E76A1F2A123BBD, ___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.Globalization.NumberStyles struct NumberStyles_tB0ADA2D9CCAA236331AED14C42BE5832B2351592 { public: // System.Int32 System.Globalization.NumberStyles::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(NumberStyles_tB0ADA2D9CCAA236331AED14C42BE5832B2351592, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Globalization.UnicodeCategory struct UnicodeCategory_tC192ED2DE3FB1214FA458FEEF2380911F1C32788 { public: // System.Int32 System.Globalization.UnicodeCategory::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UnicodeCategory_tC192ED2DE3FB1214FA458FEEF2380911F1C32788, ___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.IO.StreamReader struct StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E : public TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A { public: // System.IO.Stream System.IO.StreamReader::stream Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream_5; // System.Text.Encoding System.IO.StreamReader::encoding Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding_6; // System.Text.Decoder System.IO.StreamReader::decoder Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * ___decoder_7; // System.Byte[] System.IO.StreamReader::byteBuffer ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___byteBuffer_8; // System.Char[] System.IO.StreamReader::charBuffer CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___charBuffer_9; // System.Byte[] System.IO.StreamReader::_preamble ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ____preamble_10; // System.Int32 System.IO.StreamReader::charPos int32_t ___charPos_11; // System.Int32 System.IO.StreamReader::charLen int32_t ___charLen_12; // System.Int32 System.IO.StreamReader::byteLen int32_t ___byteLen_13; // System.Int32 System.IO.StreamReader::bytePos int32_t ___bytePos_14; // System.Int32 System.IO.StreamReader::_maxCharsPerBuffer int32_t ____maxCharsPerBuffer_15; // System.Boolean System.IO.StreamReader::_detectEncoding bool ____detectEncoding_16; // System.Boolean System.IO.StreamReader::_checkPreamble bool ____checkPreamble_17; // System.Boolean System.IO.StreamReader::_isBlocked bool ____isBlocked_18; // System.Boolean System.IO.StreamReader::_closable bool ____closable_19; // System.Threading.Tasks.Task modreq(System.Runtime.CompilerServices.IsVolatile) System.IO.StreamReader::_asyncReadTask Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ____asyncReadTask_20; public: inline static int32_t get_offset_of_stream_5() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___stream_5)); } inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * get_stream_5() const { return ___stream_5; } inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 ** get_address_of_stream_5() { return &___stream_5; } inline void set_stream_5(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * value) { ___stream_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___stream_5), (void*)value); } inline static int32_t get_offset_of_encoding_6() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___encoding_6)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_encoding_6() const { return ___encoding_6; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_encoding_6() { return &___encoding_6; } inline void set_encoding_6(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___encoding_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___encoding_6), (void*)value); } inline static int32_t get_offset_of_decoder_7() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___decoder_7)); } inline Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * get_decoder_7() const { return ___decoder_7; } inline Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 ** get_address_of_decoder_7() { return &___decoder_7; } inline void set_decoder_7(Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * value) { ___decoder_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___decoder_7), (void*)value); } inline static int32_t get_offset_of_byteBuffer_8() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___byteBuffer_8)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_byteBuffer_8() const { return ___byteBuffer_8; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_byteBuffer_8() { return &___byteBuffer_8; } inline void set_byteBuffer_8(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___byteBuffer_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___byteBuffer_8), (void*)value); } inline static int32_t get_offset_of_charBuffer_9() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___charBuffer_9)); } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_charBuffer_9() const { return ___charBuffer_9; } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_charBuffer_9() { return &___charBuffer_9; } inline void set_charBuffer_9(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value) { ___charBuffer_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___charBuffer_9), (void*)value); } inline static int32_t get_offset_of__preamble_10() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ____preamble_10)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get__preamble_10() const { return ____preamble_10; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of__preamble_10() { return &____preamble_10; } inline void set__preamble_10(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ____preamble_10 = value; Il2CppCodeGenWriteBarrier((void**)(&____preamble_10), (void*)value); } inline static int32_t get_offset_of_charPos_11() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___charPos_11)); } inline int32_t get_charPos_11() const { return ___charPos_11; } inline int32_t* get_address_of_charPos_11() { return &___charPos_11; } inline void set_charPos_11(int32_t value) { ___charPos_11 = value; } inline static int32_t get_offset_of_charLen_12() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___charLen_12)); } inline int32_t get_charLen_12() const { return ___charLen_12; } inline int32_t* get_address_of_charLen_12() { return &___charLen_12; } inline void set_charLen_12(int32_t value) { ___charLen_12 = value; } inline static int32_t get_offset_of_byteLen_13() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___byteLen_13)); } inline int32_t get_byteLen_13() const { return ___byteLen_13; } inline int32_t* get_address_of_byteLen_13() { return &___byteLen_13; } inline void set_byteLen_13(int32_t value) { ___byteLen_13 = value; } inline static int32_t get_offset_of_bytePos_14() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___bytePos_14)); } inline int32_t get_bytePos_14() const { return ___bytePos_14; } inline int32_t* get_address_of_bytePos_14() { return &___bytePos_14; } inline void set_bytePos_14(int32_t value) { ___bytePos_14 = value; } inline static int32_t get_offset_of__maxCharsPerBuffer_15() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ____maxCharsPerBuffer_15)); } inline int32_t get__maxCharsPerBuffer_15() const { return ____maxCharsPerBuffer_15; } inline int32_t* get_address_of__maxCharsPerBuffer_15() { return &____maxCharsPerBuffer_15; } inline void set__maxCharsPerBuffer_15(int32_t value) { ____maxCharsPerBuffer_15 = value; } inline static int32_t get_offset_of__detectEncoding_16() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ____detectEncoding_16)); } inline bool get__detectEncoding_16() const { return ____detectEncoding_16; } inline bool* get_address_of__detectEncoding_16() { return &____detectEncoding_16; } inline void set__detectEncoding_16(bool value) { ____detectEncoding_16 = value; } inline static int32_t get_offset_of__checkPreamble_17() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ____checkPreamble_17)); } inline bool get__checkPreamble_17() const { return ____checkPreamble_17; } inline bool* get_address_of__checkPreamble_17() { return &____checkPreamble_17; } inline void set__checkPreamble_17(bool value) { ____checkPreamble_17 = value; } inline static int32_t get_offset_of__isBlocked_18() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ____isBlocked_18)); } inline bool get__isBlocked_18() const { return ____isBlocked_18; } inline bool* get_address_of__isBlocked_18() { return &____isBlocked_18; } inline void set__isBlocked_18(bool value) { ____isBlocked_18 = value; } inline static int32_t get_offset_of__closable_19() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ____closable_19)); } inline bool get__closable_19() const { return ____closable_19; } inline bool* get_address_of__closable_19() { return &____closable_19; } inline void set__closable_19(bool value) { ____closable_19 = value; } inline static int32_t get_offset_of__asyncReadTask_20() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ____asyncReadTask_20)); } inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * get__asyncReadTask_20() const { return ____asyncReadTask_20; } inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 ** get_address_of__asyncReadTask_20() { return &____asyncReadTask_20; } inline void set__asyncReadTask_20(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * value) { ____asyncReadTask_20 = value; Il2CppCodeGenWriteBarrier((void**)(&____asyncReadTask_20), (void*)value); } }; struct StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E_StaticFields { public: // System.IO.StreamReader System.IO.StreamReader::Null StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * ___Null_4; public: inline static int32_t get_offset_of_Null_4() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E_StaticFields, ___Null_4)); } inline StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * get_Null_4() const { return ___Null_4; } inline StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E ** get_address_of_Null_4() { return &___Null_4; } inline void set_Null_4(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * value) { ___Null_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___Null_4), (void*)value); } }; // System.Int32Enum struct Int32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD { public: // System.Int32 System.Int32Enum::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Int32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.PlatformID struct PlatformID_t7969561D329B66D3E609C70CA506A519E06F2776 { public: // System.Int32 System.PlatformID::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(PlatformID_t7969561D329B66D3E609C70CA506A519E06F2776, ___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.Assembly struct Assembly_t : public RuntimeObject { public: // System.IntPtr System.Reflection.Assembly::_mono_assembly intptr_t ____mono_assembly_0; // System.Reflection.Assembly_ResolveEventHolder System.Reflection.Assembly::resolve_event_holder ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * ___resolve_event_holder_1; // System.Object System.Reflection.Assembly::_evidence RuntimeObject * ____evidence_2; // System.Object System.Reflection.Assembly::_minimum RuntimeObject * ____minimum_3; // System.Object System.Reflection.Assembly::_optional RuntimeObject * ____optional_4; // System.Object System.Reflection.Assembly::_refuse RuntimeObject * ____refuse_5; // System.Object System.Reflection.Assembly::_granted RuntimeObject * ____granted_6; // System.Object System.Reflection.Assembly::_denied RuntimeObject * ____denied_7; // System.Boolean System.Reflection.Assembly::fromByteArray bool ___fromByteArray_8; // System.String System.Reflection.Assembly::assemblyName String_t* ___assemblyName_9; public: inline static int32_t get_offset_of__mono_assembly_0() { return static_cast<int32_t>(offsetof(Assembly_t, ____mono_assembly_0)); } inline intptr_t get__mono_assembly_0() const { return ____mono_assembly_0; } inline intptr_t* get_address_of__mono_assembly_0() { return &____mono_assembly_0; } inline void set__mono_assembly_0(intptr_t value) { ____mono_assembly_0 = value; } inline static int32_t get_offset_of_resolve_event_holder_1() { return static_cast<int32_t>(offsetof(Assembly_t, ___resolve_event_holder_1)); } inline ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * get_resolve_event_holder_1() const { return ___resolve_event_holder_1; } inline ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E ** get_address_of_resolve_event_holder_1() { return &___resolve_event_holder_1; } inline void set_resolve_event_holder_1(ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * value) { ___resolve_event_holder_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___resolve_event_holder_1), (void*)value); } inline static int32_t get_offset_of__evidence_2() { return static_cast<int32_t>(offsetof(Assembly_t, ____evidence_2)); } inline RuntimeObject * get__evidence_2() const { return ____evidence_2; } inline RuntimeObject ** get_address_of__evidence_2() { return &____evidence_2; } inline void set__evidence_2(RuntimeObject * value) { ____evidence_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____evidence_2), (void*)value); } inline static int32_t get_offset_of__minimum_3() { return static_cast<int32_t>(offsetof(Assembly_t, ____minimum_3)); } inline RuntimeObject * get__minimum_3() const { return ____minimum_3; } inline RuntimeObject ** get_address_of__minimum_3() { return &____minimum_3; } inline void set__minimum_3(RuntimeObject * value) { ____minimum_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____minimum_3), (void*)value); } inline static int32_t get_offset_of__optional_4() { return static_cast<int32_t>(offsetof(Assembly_t, ____optional_4)); } inline RuntimeObject * get__optional_4() const { return ____optional_4; } inline RuntimeObject ** get_address_of__optional_4() { return &____optional_4; } inline void set__optional_4(RuntimeObject * value) { ____optional_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____optional_4), (void*)value); } inline static int32_t get_offset_of__refuse_5() { return static_cast<int32_t>(offsetof(Assembly_t, ____refuse_5)); } inline RuntimeObject * get__refuse_5() const { return ____refuse_5; } inline RuntimeObject ** get_address_of__refuse_5() { return &____refuse_5; } inline void set__refuse_5(RuntimeObject * value) { ____refuse_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____refuse_5), (void*)value); } inline static int32_t get_offset_of__granted_6() { return static_cast<int32_t>(offsetof(Assembly_t, ____granted_6)); } inline RuntimeObject * get__granted_6() const { return ____granted_6; } inline RuntimeObject ** get_address_of__granted_6() { return &____granted_6; } inline void set__granted_6(RuntimeObject * value) { ____granted_6 = value; Il2CppCodeGenWriteBarrier((void**)(&____granted_6), (void*)value); } inline static int32_t get_offset_of__denied_7() { return static_cast<int32_t>(offsetof(Assembly_t, ____denied_7)); } inline RuntimeObject * get__denied_7() const { return ____denied_7; } inline RuntimeObject ** get_address_of__denied_7() { return &____denied_7; } inline void set__denied_7(RuntimeObject * value) { ____denied_7 = value; Il2CppCodeGenWriteBarrier((void**)(&____denied_7), (void*)value); } inline static int32_t get_offset_of_fromByteArray_8() { return static_cast<int32_t>(offsetof(Assembly_t, ___fromByteArray_8)); } inline bool get_fromByteArray_8() const { return ___fromByteArray_8; } inline bool* get_address_of_fromByteArray_8() { return &___fromByteArray_8; } inline void set_fromByteArray_8(bool value) { ___fromByteArray_8 = value; } inline static int32_t get_offset_of_assemblyName_9() { return static_cast<int32_t>(offsetof(Assembly_t, ___assemblyName_9)); } inline String_t* get_assemblyName_9() const { return ___assemblyName_9; } inline String_t** get_address_of_assemblyName_9() { return &___assemblyName_9; } inline void set_assemblyName_9(String_t* value) { ___assemblyName_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___assemblyName_9), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Reflection.Assembly struct Assembly_t_marshaled_pinvoke { intptr_t ____mono_assembly_0; ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * ___resolve_event_holder_1; Il2CppIUnknown* ____evidence_2; Il2CppIUnknown* ____minimum_3; Il2CppIUnknown* ____optional_4; Il2CppIUnknown* ____refuse_5; Il2CppIUnknown* ____granted_6; Il2CppIUnknown* ____denied_7; int32_t ___fromByteArray_8; char* ___assemblyName_9; }; // Native definition for COM marshalling of System.Reflection.Assembly struct Assembly_t_marshaled_com { intptr_t ____mono_assembly_0; ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * ___resolve_event_holder_1; Il2CppIUnknown* ____evidence_2; Il2CppIUnknown* ____minimum_3; Il2CppIUnknown* ____optional_4; Il2CppIUnknown* ____refuse_5; Il2CppIUnknown* ____granted_6; Il2CppIUnknown* ____denied_7; int32_t ___fromByteArray_8; Il2CppChar* ___assemblyName_9; }; // System.Reflection.AssemblyContentType struct AssemblyContentType_t9869DE40B7B1976B389F3B6A5A5D18B09E623401 { public: // System.Int32 System.Reflection.AssemblyContentType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AssemblyContentType_t9869DE40B7B1976B389F3B6A5A5D18B09E623401, ___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.AssemblyNameFlags struct AssemblyNameFlags_t7834EDF078E7ECA985AA434A1EA0D95C2A44F256 { public: // System.Int32 System.Reflection.AssemblyNameFlags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AssemblyNameFlags_t7834EDF078E7ECA985AA434A1EA0D95C2A44F256, ___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.Reflection.MethodInfo struct MethodInfo_t : public MethodBase_t { public: public: }; // System.Reflection.ParameterAttributes struct ParameterAttributes_tF9962395513C2A48CF5AF2F371C66DD52789F110 { public: // System.Int32 System.Reflection.ParameterAttributes::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ParameterAttributes_tF9962395513C2A48CF5AF2F371C66DD52789F110, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Reflection.ProcessorArchitecture struct ProcessorArchitecture_t0CFB73A83469D6AC222B9FE46E81EAC73C2627C7 { public: // System.Int32 System.Reflection.ProcessorArchitecture::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ProcessorArchitecture_t0CFB73A83469D6AC222B9FE46E81EAC73C2627C7, ___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.Resources.UltimateResourceFallbackLocation struct UltimateResourceFallbackLocation_t9E7495B2ADC328EB99FD80EDE68A2E5781D2882E { public: // System.Int32 System.Resources.UltimateResourceFallbackLocation::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UltimateResourceFallbackLocation_t9E7495B2ADC328EB99FD80EDE68A2E5781D2882E, ___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.RuntimeFieldHandle struct RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF { public: // System.IntPtr System.RuntimeFieldHandle::value intptr_t ___value_0; public: inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF, ___value_0)); } inline intptr_t get_value_0() const { return ___value_0; } inline intptr_t* get_address_of_value_0() { return &___value_0; } inline void set_value_0(intptr_t value) { ___value_0 = value; } }; // System.RuntimeTypeHandle struct RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D { public: // System.IntPtr System.RuntimeTypeHandle::value intptr_t ___value_0; public: inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D, ___value_0)); } inline intptr_t get_value_0() const { return ___value_0; } inline intptr_t* get_address_of_value_0() { return &___value_0; } inline void set_value_0(intptr_t value) { ___value_0 = value; } }; // System.StringComparison struct StringComparison_t02BAA95468CE9E91115C604577611FDF58FEDCF0 { public: // System.Int32 System.StringComparison::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StringComparison_t02BAA95468CE9E91115C604577611FDF58FEDCF0, ___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.TimeSpan struct TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 { public: // System.Int64 System.TimeSpan::_ticks int64_t ____ticks_3; public: inline static int32_t get_offset_of__ticks_3() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4, ____ticks_3)); } inline int64_t get__ticks_3() const { return ____ticks_3; } inline int64_t* get_address_of__ticks_3() { return &____ticks_3; } inline void set__ticks_3(int64_t value) { ____ticks_3 = value; } }; struct TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields { public: // System.TimeSpan System.TimeSpan::Zero TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___Zero_0; // System.TimeSpan System.TimeSpan::MaxValue TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___MaxValue_1; // System.TimeSpan System.TimeSpan::MinValue TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___MinValue_2; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyConfigChecked bool ____legacyConfigChecked_4; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyMode bool ____legacyMode_5; public: inline static int32_t get_offset_of_Zero_0() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ___Zero_0)); } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_Zero_0() const { return ___Zero_0; } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_Zero_0() { return &___Zero_0; } inline void set_Zero_0(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value) { ___Zero_0 = value; } inline static int32_t get_offset_of_MaxValue_1() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ___MaxValue_1)); } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_MaxValue_1() const { return ___MaxValue_1; } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_MaxValue_1() { return &___MaxValue_1; } inline void set_MaxValue_1(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value) { ___MaxValue_1 = value; } inline static int32_t get_offset_of_MinValue_2() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ___MinValue_2)); } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_MinValue_2() const { return ___MinValue_2; } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_MinValue_2() { return &___MinValue_2; } inline void set_MinValue_2(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value) { ___MinValue_2 = value; } inline static int32_t get_offset_of__legacyConfigChecked_4() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ____legacyConfigChecked_4)); } inline bool get__legacyConfigChecked_4() const { return ____legacyConfigChecked_4; } inline bool* get_address_of__legacyConfigChecked_4() { return &____legacyConfigChecked_4; } inline void set__legacyConfigChecked_4(bool value) { ____legacyConfigChecked_4 = value; } inline static int32_t get_offset_of__legacyMode_5() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ____legacyMode_5)); } inline bool get__legacyMode_5() const { return ____legacyMode_5; } inline bool* get_address_of__legacyMode_5() { return &____legacyMode_5; } inline void set__legacyMode_5(bool value) { ____legacyMode_5 = value; } }; // System.TypeCode struct TypeCode_t03ED52F888000DAF40C550C434F29F39A23D61C6 { public: // System.Int32 System.TypeCode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TypeCode_t03ED52F888000DAF40C550C434F29F39A23D61C6, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.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.Collections.Generic.KeyValuePair`2<System.String,System.Diagnostics.Tracing.EventTags> struct KeyValuePair_2_tC5E97F5FFE30651DD75FE9EC048400D9A5C57C74 { public: // TKey System.Collections.Generic.KeyValuePair`2::key String_t* ___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_tC5E97F5FFE30651DD75FE9EC048400D9A5C57C74, ___key_0)); } inline String_t* get_key_0() const { return ___key_0; } inline String_t** get_address_of_key_0() { return &___key_0; } inline void set_key_0(String_t* value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tC5E97F5FFE30651DD75FE9EC048400D9A5C57C74, ___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.Diagnostics.Tracing.EventAttribute struct EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 { public: // System.Int32 System.Diagnostics.Tracing.EventAttribute::<EventId>k__BackingField int32_t ___U3CEventIdU3Ek__BackingField_0; // System.Diagnostics.Tracing.EventLevel System.Diagnostics.Tracing.EventAttribute::<Level>k__BackingField int32_t ___U3CLevelU3Ek__BackingField_1; // System.Diagnostics.Tracing.EventKeywords System.Diagnostics.Tracing.EventAttribute::<Keywords>k__BackingField int64_t ___U3CKeywordsU3Ek__BackingField_2; // System.Diagnostics.Tracing.EventTask System.Diagnostics.Tracing.EventAttribute::<Task>k__BackingField int32_t ___U3CTaskU3Ek__BackingField_3; // System.Byte System.Diagnostics.Tracing.EventAttribute::<Version>k__BackingField uint8_t ___U3CVersionU3Ek__BackingField_4; // System.String System.Diagnostics.Tracing.EventAttribute::<Message>k__BackingField String_t* ___U3CMessageU3Ek__BackingField_5; // System.Diagnostics.Tracing.EventTags System.Diagnostics.Tracing.EventAttribute::<Tags>k__BackingField int32_t ___U3CTagsU3Ek__BackingField_6; // System.Diagnostics.Tracing.EventActivityOptions System.Diagnostics.Tracing.EventAttribute::<ActivityOptions>k__BackingField int32_t ___U3CActivityOptionsU3Ek__BackingField_7; // System.Diagnostics.Tracing.EventOpcode System.Diagnostics.Tracing.EventAttribute::m_opcode int32_t ___m_opcode_8; // System.Boolean System.Diagnostics.Tracing.EventAttribute::m_opcodeSet bool ___m_opcodeSet_9; public: inline static int32_t get_offset_of_U3CEventIdU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1, ___U3CEventIdU3Ek__BackingField_0)); } inline int32_t get_U3CEventIdU3Ek__BackingField_0() const { return ___U3CEventIdU3Ek__BackingField_0; } inline int32_t* get_address_of_U3CEventIdU3Ek__BackingField_0() { return &___U3CEventIdU3Ek__BackingField_0; } inline void set_U3CEventIdU3Ek__BackingField_0(int32_t value) { ___U3CEventIdU3Ek__BackingField_0 = value; } inline static int32_t get_offset_of_U3CLevelU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1, ___U3CLevelU3Ek__BackingField_1)); } inline int32_t get_U3CLevelU3Ek__BackingField_1() const { return ___U3CLevelU3Ek__BackingField_1; } inline int32_t* get_address_of_U3CLevelU3Ek__BackingField_1() { return &___U3CLevelU3Ek__BackingField_1; } inline void set_U3CLevelU3Ek__BackingField_1(int32_t value) { ___U3CLevelU3Ek__BackingField_1 = value; } inline static int32_t get_offset_of_U3CKeywordsU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1, ___U3CKeywordsU3Ek__BackingField_2)); } inline int64_t get_U3CKeywordsU3Ek__BackingField_2() const { return ___U3CKeywordsU3Ek__BackingField_2; } inline int64_t* get_address_of_U3CKeywordsU3Ek__BackingField_2() { return &___U3CKeywordsU3Ek__BackingField_2; } inline void set_U3CKeywordsU3Ek__BackingField_2(int64_t value) { ___U3CKeywordsU3Ek__BackingField_2 = value; } inline static int32_t get_offset_of_U3CTaskU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1, ___U3CTaskU3Ek__BackingField_3)); } inline int32_t get_U3CTaskU3Ek__BackingField_3() const { return ___U3CTaskU3Ek__BackingField_3; } inline int32_t* get_address_of_U3CTaskU3Ek__BackingField_3() { return &___U3CTaskU3Ek__BackingField_3; } inline void set_U3CTaskU3Ek__BackingField_3(int32_t value) { ___U3CTaskU3Ek__BackingField_3 = value; } inline static int32_t get_offset_of_U3CVersionU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1, ___U3CVersionU3Ek__BackingField_4)); } inline uint8_t get_U3CVersionU3Ek__BackingField_4() const { return ___U3CVersionU3Ek__BackingField_4; } inline uint8_t* get_address_of_U3CVersionU3Ek__BackingField_4() { return &___U3CVersionU3Ek__BackingField_4; } inline void set_U3CVersionU3Ek__BackingField_4(uint8_t value) { ___U3CVersionU3Ek__BackingField_4 = value; } inline static int32_t get_offset_of_U3CMessageU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1, ___U3CMessageU3Ek__BackingField_5)); } inline String_t* get_U3CMessageU3Ek__BackingField_5() const { return ___U3CMessageU3Ek__BackingField_5; } inline String_t** get_address_of_U3CMessageU3Ek__BackingField_5() { return &___U3CMessageU3Ek__BackingField_5; } inline void set_U3CMessageU3Ek__BackingField_5(String_t* value) { ___U3CMessageU3Ek__BackingField_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CMessageU3Ek__BackingField_5), (void*)value); } inline static int32_t get_offset_of_U3CTagsU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1, ___U3CTagsU3Ek__BackingField_6)); } inline int32_t get_U3CTagsU3Ek__BackingField_6() const { return ___U3CTagsU3Ek__BackingField_6; } inline int32_t* get_address_of_U3CTagsU3Ek__BackingField_6() { return &___U3CTagsU3Ek__BackingField_6; } inline void set_U3CTagsU3Ek__BackingField_6(int32_t value) { ___U3CTagsU3Ek__BackingField_6 = value; } inline static int32_t get_offset_of_U3CActivityOptionsU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1, ___U3CActivityOptionsU3Ek__BackingField_7)); } inline int32_t get_U3CActivityOptionsU3Ek__BackingField_7() const { return ___U3CActivityOptionsU3Ek__BackingField_7; } inline int32_t* get_address_of_U3CActivityOptionsU3Ek__BackingField_7() { return &___U3CActivityOptionsU3Ek__BackingField_7; } inline void set_U3CActivityOptionsU3Ek__BackingField_7(int32_t value) { ___U3CActivityOptionsU3Ek__BackingField_7 = value; } inline static int32_t get_offset_of_m_opcode_8() { return static_cast<int32_t>(offsetof(EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1, ___m_opcode_8)); } inline int32_t get_m_opcode_8() const { return ___m_opcode_8; } inline int32_t* get_address_of_m_opcode_8() { return &___m_opcode_8; } inline void set_m_opcode_8(int32_t value) { ___m_opcode_8 = value; } inline static int32_t get_offset_of_m_opcodeSet_9() { return static_cast<int32_t>(offsetof(EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1, ___m_opcodeSet_9)); } inline bool get_m_opcodeSet_9() const { return ___m_opcodeSet_9; } inline bool* get_address_of_m_opcodeSet_9() { return &___m_opcodeSet_9; } inline void set_m_opcodeSet_9(bool value) { ___m_opcodeSet_9 = value; } }; // System.Diagnostics.Tracing.EventDataAttribute struct EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 { public: // System.Diagnostics.Tracing.EventLevel System.Diagnostics.Tracing.EventDataAttribute::level int32_t ___level_0; // System.Diagnostics.Tracing.EventOpcode System.Diagnostics.Tracing.EventDataAttribute::opcode int32_t ___opcode_1; // System.String System.Diagnostics.Tracing.EventDataAttribute::<Name>k__BackingField String_t* ___U3CNameU3Ek__BackingField_2; // System.Diagnostics.Tracing.EventKeywords System.Diagnostics.Tracing.EventDataAttribute::<Keywords>k__BackingField int64_t ___U3CKeywordsU3Ek__BackingField_3; // System.Diagnostics.Tracing.EventTags System.Diagnostics.Tracing.EventDataAttribute::<Tags>k__BackingField int32_t ___U3CTagsU3Ek__BackingField_4; public: inline static int32_t get_offset_of_level_0() { return static_cast<int32_t>(offsetof(EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85, ___level_0)); } inline int32_t get_level_0() const { return ___level_0; } inline int32_t* get_address_of_level_0() { return &___level_0; } inline void set_level_0(int32_t value) { ___level_0 = value; } inline static int32_t get_offset_of_opcode_1() { return static_cast<int32_t>(offsetof(EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85, ___opcode_1)); } inline int32_t get_opcode_1() const { return ___opcode_1; } inline int32_t* get_address_of_opcode_1() { return &___opcode_1; } inline void set_opcode_1(int32_t value) { ___opcode_1 = value; } inline static int32_t get_offset_of_U3CNameU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85, ___U3CNameU3Ek__BackingField_2)); } inline String_t* get_U3CNameU3Ek__BackingField_2() const { return ___U3CNameU3Ek__BackingField_2; } inline String_t** get_address_of_U3CNameU3Ek__BackingField_2() { return &___U3CNameU3Ek__BackingField_2; } inline void set_U3CNameU3Ek__BackingField_2(String_t* value) { ___U3CNameU3Ek__BackingField_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CNameU3Ek__BackingField_2), (void*)value); } inline static int32_t get_offset_of_U3CKeywordsU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85, ___U3CKeywordsU3Ek__BackingField_3)); } inline int64_t get_U3CKeywordsU3Ek__BackingField_3() const { return ___U3CKeywordsU3Ek__BackingField_3; } inline int64_t* get_address_of_U3CKeywordsU3Ek__BackingField_3() { return &___U3CKeywordsU3Ek__BackingField_3; } inline void set_U3CKeywordsU3Ek__BackingField_3(int64_t value) { ___U3CKeywordsU3Ek__BackingField_3 = value; } inline static int32_t get_offset_of_U3CTagsU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85, ___U3CTagsU3Ek__BackingField_4)); } inline int32_t get_U3CTagsU3Ek__BackingField_4() const { return ___U3CTagsU3Ek__BackingField_4; } inline int32_t* get_address_of_U3CTagsU3Ek__BackingField_4() { return &___U3CTagsU3Ek__BackingField_4; } inline void set_U3CTagsU3Ek__BackingField_4(int32_t value) { ___U3CTagsU3Ek__BackingField_4 = value; } }; // System.Diagnostics.Tracing.EventFieldAttribute struct EventFieldAttribute_tCD8E252D7D673724F2980B794282B715E16A675C : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 { public: // System.Diagnostics.Tracing.EventFieldTags System.Diagnostics.Tracing.EventFieldAttribute::<Tags>k__BackingField int32_t ___U3CTagsU3Ek__BackingField_0; // System.String System.Diagnostics.Tracing.EventFieldAttribute::<Name>k__BackingField String_t* ___U3CNameU3Ek__BackingField_1; // System.Diagnostics.Tracing.EventFieldFormat System.Diagnostics.Tracing.EventFieldAttribute::<Format>k__BackingField int32_t ___U3CFormatU3Ek__BackingField_2; public: inline static int32_t get_offset_of_U3CTagsU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(EventFieldAttribute_tCD8E252D7D673724F2980B794282B715E16A675C, ___U3CTagsU3Ek__BackingField_0)); } inline int32_t get_U3CTagsU3Ek__BackingField_0() const { return ___U3CTagsU3Ek__BackingField_0; } inline int32_t* get_address_of_U3CTagsU3Ek__BackingField_0() { return &___U3CTagsU3Ek__BackingField_0; } inline void set_U3CTagsU3Ek__BackingField_0(int32_t value) { ___U3CTagsU3Ek__BackingField_0 = value; } inline static int32_t get_offset_of_U3CNameU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(EventFieldAttribute_tCD8E252D7D673724F2980B794282B715E16A675C, ___U3CNameU3Ek__BackingField_1)); } inline String_t* get_U3CNameU3Ek__BackingField_1() const { return ___U3CNameU3Ek__BackingField_1; } inline String_t** get_address_of_U3CNameU3Ek__BackingField_1() { return &___U3CNameU3Ek__BackingField_1; } inline void set_U3CNameU3Ek__BackingField_1(String_t* value) { ___U3CNameU3Ek__BackingField_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CNameU3Ek__BackingField_1), (void*)value); } inline static int32_t get_offset_of_U3CFormatU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(EventFieldAttribute_tCD8E252D7D673724F2980B794282B715E16A675C, ___U3CFormatU3Ek__BackingField_2)); } inline int32_t get_U3CFormatU3Ek__BackingField_2() const { return ___U3CFormatU3Ek__BackingField_2; } inline int32_t* get_address_of_U3CFormatU3Ek__BackingField_2() { return &___U3CFormatU3Ek__BackingField_2; } inline void set_U3CFormatU3Ek__BackingField_2(int32_t value) { ___U3CFormatU3Ek__BackingField_2 = value; } }; // System.Diagnostics.Tracing.EventProvider struct EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483 : public RuntimeObject { public: // Microsoft.Win32.UnsafeNativeMethods_ManifestEtw_EtwEnableCallback System.Diagnostics.Tracing.EventProvider::m_etwCallback EtwEnableCallback_tE661421A2F149DA151D5A519A09E09448E396A4A * ___m_etwCallback_1; // System.Runtime.InteropServices.GCHandle System.Diagnostics.Tracing.EventProvider::m_thisGCHandle GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 ___m_thisGCHandle_2; // System.Int64 System.Diagnostics.Tracing.EventProvider::m_regHandle int64_t ___m_regHandle_3; // System.Byte System.Diagnostics.Tracing.EventProvider::m_level uint8_t ___m_level_4; // System.Int64 System.Diagnostics.Tracing.EventProvider::m_anyKeywordMask int64_t ___m_anyKeywordMask_5; // System.Int64 System.Diagnostics.Tracing.EventProvider::m_allKeywordMask int64_t ___m_allKeywordMask_6; // System.Collections.Generic.List`1<System.Diagnostics.Tracing.EventProvider_SessionInfo> System.Diagnostics.Tracing.EventProvider::m_liveSessions List_1_t48C08E578B230ECD129D7CD72958FDC29E6D1975 * ___m_liveSessions_7; // System.Boolean System.Diagnostics.Tracing.EventProvider::m_enabled bool ___m_enabled_8; // System.Guid System.Diagnostics.Tracing.EventProvider::m_providerId Guid_t ___m_providerId_9; // System.Boolean System.Diagnostics.Tracing.EventProvider::m_disposed bool ___m_disposed_10; public: inline static int32_t get_offset_of_m_etwCallback_1() { return static_cast<int32_t>(offsetof(EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483, ___m_etwCallback_1)); } inline EtwEnableCallback_tE661421A2F149DA151D5A519A09E09448E396A4A * get_m_etwCallback_1() const { return ___m_etwCallback_1; } inline EtwEnableCallback_tE661421A2F149DA151D5A519A09E09448E396A4A ** get_address_of_m_etwCallback_1() { return &___m_etwCallback_1; } inline void set_m_etwCallback_1(EtwEnableCallback_tE661421A2F149DA151D5A519A09E09448E396A4A * value) { ___m_etwCallback_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_etwCallback_1), (void*)value); } inline static int32_t get_offset_of_m_thisGCHandle_2() { return static_cast<int32_t>(offsetof(EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483, ___m_thisGCHandle_2)); } inline GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 get_m_thisGCHandle_2() const { return ___m_thisGCHandle_2; } inline GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 * get_address_of_m_thisGCHandle_2() { return &___m_thisGCHandle_2; } inline void set_m_thisGCHandle_2(GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 value) { ___m_thisGCHandle_2 = value; } inline static int32_t get_offset_of_m_regHandle_3() { return static_cast<int32_t>(offsetof(EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483, ___m_regHandle_3)); } inline int64_t get_m_regHandle_3() const { return ___m_regHandle_3; } inline int64_t* get_address_of_m_regHandle_3() { return &___m_regHandle_3; } inline void set_m_regHandle_3(int64_t value) { ___m_regHandle_3 = value; } inline static int32_t get_offset_of_m_level_4() { return static_cast<int32_t>(offsetof(EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483, ___m_level_4)); } inline uint8_t get_m_level_4() const { return ___m_level_4; } inline uint8_t* get_address_of_m_level_4() { return &___m_level_4; } inline void set_m_level_4(uint8_t value) { ___m_level_4 = value; } inline static int32_t get_offset_of_m_anyKeywordMask_5() { return static_cast<int32_t>(offsetof(EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483, ___m_anyKeywordMask_5)); } inline int64_t get_m_anyKeywordMask_5() const { return ___m_anyKeywordMask_5; } inline int64_t* get_address_of_m_anyKeywordMask_5() { return &___m_anyKeywordMask_5; } inline void set_m_anyKeywordMask_5(int64_t value) { ___m_anyKeywordMask_5 = value; } inline static int32_t get_offset_of_m_allKeywordMask_6() { return static_cast<int32_t>(offsetof(EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483, ___m_allKeywordMask_6)); } inline int64_t get_m_allKeywordMask_6() const { return ___m_allKeywordMask_6; } inline int64_t* get_address_of_m_allKeywordMask_6() { return &___m_allKeywordMask_6; } inline void set_m_allKeywordMask_6(int64_t value) { ___m_allKeywordMask_6 = value; } inline static int32_t get_offset_of_m_liveSessions_7() { return static_cast<int32_t>(offsetof(EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483, ___m_liveSessions_7)); } inline List_1_t48C08E578B230ECD129D7CD72958FDC29E6D1975 * get_m_liveSessions_7() const { return ___m_liveSessions_7; } inline List_1_t48C08E578B230ECD129D7CD72958FDC29E6D1975 ** get_address_of_m_liveSessions_7() { return &___m_liveSessions_7; } inline void set_m_liveSessions_7(List_1_t48C08E578B230ECD129D7CD72958FDC29E6D1975 * value) { ___m_liveSessions_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_liveSessions_7), (void*)value); } inline static int32_t get_offset_of_m_enabled_8() { return static_cast<int32_t>(offsetof(EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483, ___m_enabled_8)); } inline bool get_m_enabled_8() const { return ___m_enabled_8; } inline bool* get_address_of_m_enabled_8() { return &___m_enabled_8; } inline void set_m_enabled_8(bool value) { ___m_enabled_8 = value; } inline static int32_t get_offset_of_m_providerId_9() { return static_cast<int32_t>(offsetof(EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483, ___m_providerId_9)); } inline Guid_t get_m_providerId_9() const { return ___m_providerId_9; } inline Guid_t * get_address_of_m_providerId_9() { return &___m_providerId_9; } inline void set_m_providerId_9(Guid_t value) { ___m_providerId_9 = value; } inline static int32_t get_offset_of_m_disposed_10() { return static_cast<int32_t>(offsetof(EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483, ___m_disposed_10)); } inline bool get_m_disposed_10() const { return ___m_disposed_10; } inline bool* get_address_of_m_disposed_10() { return &___m_disposed_10; } inline void set_m_disposed_10(bool value) { ___m_disposed_10 = value; } }; struct EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483_StaticFields { public: // System.Boolean System.Diagnostics.Tracing.EventProvider::m_setInformationMissing bool ___m_setInformationMissing_0; // System.Int32[] System.Diagnostics.Tracing.EventProvider::nibblebits Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___nibblebits_12; public: inline static int32_t get_offset_of_m_setInformationMissing_0() { return static_cast<int32_t>(offsetof(EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483_StaticFields, ___m_setInformationMissing_0)); } inline bool get_m_setInformationMissing_0() const { return ___m_setInformationMissing_0; } inline bool* get_address_of_m_setInformationMissing_0() { return &___m_setInformationMissing_0; } inline void set_m_setInformationMissing_0(bool value) { ___m_setInformationMissing_0 = value; } inline static int32_t get_offset_of_nibblebits_12() { return static_cast<int32_t>(offsetof(EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483_StaticFields, ___nibblebits_12)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_nibblebits_12() const { return ___nibblebits_12; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_nibblebits_12() { return &___nibblebits_12; } inline void set_nibblebits_12(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___nibblebits_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___nibblebits_12), (void*)value); } }; struct EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483_ThreadStaticFields { public: // System.Diagnostics.Tracing.EventProvider_WriteEventErrorCode System.Diagnostics.Tracing.EventProvider::s_returnCode int32_t ___s_returnCode_11; public: inline static int32_t get_offset_of_s_returnCode_11() { return static_cast<int32_t>(offsetof(EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483_ThreadStaticFields, ___s_returnCode_11)); } inline int32_t get_s_returnCode_11() const { return ___s_returnCode_11; } inline int32_t* get_address_of_s_returnCode_11() { return &___s_returnCode_11; } inline void set_s_returnCode_11(int32_t value) { ___s_returnCode_11 = value; } }; // System.Diagnostics.Tracing.EventSource struct EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB : public RuntimeObject { public: // System.Byte[] System.Diagnostics.Tracing.EventSource::providerMetadata ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___providerMetadata_0; // System.String System.Diagnostics.Tracing.EventSource::m_name String_t* ___m_name_1; // System.Int32 System.Diagnostics.Tracing.EventSource::m_id int32_t ___m_id_2; // System.Guid System.Diagnostics.Tracing.EventSource::m_guid Guid_t ___m_guid_3; // System.Diagnostics.Tracing.EventSource_EventMetadata[] modreq(System.Runtime.CompilerServices.IsVolatile) System.Diagnostics.Tracing.EventSource::m_eventData EventMetadataU5BU5D_tA6A4B1FE9D3A53D9941A4C63D95399E4594ABE94* ___m_eventData_4; // System.Byte[] modreq(System.Runtime.CompilerServices.IsVolatile) System.Diagnostics.Tracing.EventSource::m_rawManifest ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___m_rawManifest_5; // System.EventHandler`1<System.Diagnostics.Tracing.EventCommandEventArgs> System.Diagnostics.Tracing.EventSource::m_eventCommandExecuted EventHandler_1_t7B950CA178FCE6D050E740E55B739A0C75BDE49C * ___m_eventCommandExecuted_6; // System.Diagnostics.Tracing.EventSourceSettings System.Diagnostics.Tracing.EventSource::m_config int32_t ___m_config_7; // System.Boolean System.Diagnostics.Tracing.EventSource::m_eventSourceEnabled bool ___m_eventSourceEnabled_8; // System.Diagnostics.Tracing.EventLevel System.Diagnostics.Tracing.EventSource::m_level int32_t ___m_level_9; // System.Diagnostics.Tracing.EventKeywords System.Diagnostics.Tracing.EventSource::m_matchAnyKeyword int64_t ___m_matchAnyKeyword_10; // System.Diagnostics.Tracing.EventDispatcher modreq(System.Runtime.CompilerServices.IsVolatile) System.Diagnostics.Tracing.EventSource::m_Dispatchers EventDispatcher_tCC0CD01793D8CA99D9F2580DF4DA0663AFB54BFF * ___m_Dispatchers_11; // System.Diagnostics.Tracing.EventSource_OverideEventProvider modreq(System.Runtime.CompilerServices.IsVolatile) System.Diagnostics.Tracing.EventSource::m_provider OverideEventProvider_t354C68E8EFB53023A6C94D61F8F44358225D7C2B * ___m_provider_12; // System.Boolean System.Diagnostics.Tracing.EventSource::m_completelyInited bool ___m_completelyInited_13; // System.Exception System.Diagnostics.Tracing.EventSource::m_constructionException Exception_t * ___m_constructionException_14; // System.Byte System.Diagnostics.Tracing.EventSource::m_outOfBandMessageCount uint8_t ___m_outOfBandMessageCount_15; // System.Diagnostics.Tracing.EventCommandEventArgs System.Diagnostics.Tracing.EventSource::m_deferredCommands EventCommandEventArgs_t96A2E796A34D5D2D56784C5DEDAE4BDA14EDBE15 * ___m_deferredCommands_16; // System.String[] System.Diagnostics.Tracing.EventSource::m_traits StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___m_traits_17; // System.Diagnostics.Tracing.SessionMask System.Diagnostics.Tracing.EventSource::m_curLiveSessions SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE ___m_curLiveSessions_20; // System.Diagnostics.Tracing.EtwSession[] System.Diagnostics.Tracing.EventSource::m_etwSessionIdMap EtwSessionU5BU5D_t8797EC7C4B69B091119AFD2A22F03049811748FA* ___m_etwSessionIdMap_21; // System.Collections.Generic.List`1<System.Diagnostics.Tracing.EtwSession> System.Diagnostics.Tracing.EventSource::m_legacySessions List_1_t9CDF2E150AAD0D0EF043696D08554EE4E22E3E88 * ___m_legacySessions_22; // System.Int64 System.Diagnostics.Tracing.EventSource::m_keywordTriggers int64_t ___m_keywordTriggers_23; // System.Diagnostics.Tracing.SessionMask System.Diagnostics.Tracing.EventSource::m_activityFilteringForETWEnabled SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE ___m_activityFilteringForETWEnabled_24; // System.Diagnostics.Tracing.ActivityTracker System.Diagnostics.Tracing.EventSource::m_activityTracker ActivityTracker_tFBAFEF8651768D41ECD29EF2692D57A6B6A80838 * ___m_activityTracker_26; public: inline static int32_t get_offset_of_providerMetadata_0() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___providerMetadata_0)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_providerMetadata_0() const { return ___providerMetadata_0; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_providerMetadata_0() { return &___providerMetadata_0; } inline void set_providerMetadata_0(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___providerMetadata_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___providerMetadata_0), (void*)value); } inline static int32_t get_offset_of_m_name_1() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_name_1)); } inline String_t* get_m_name_1() const { return ___m_name_1; } inline String_t** get_address_of_m_name_1() { return &___m_name_1; } inline void set_m_name_1(String_t* value) { ___m_name_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_name_1), (void*)value); } inline static int32_t get_offset_of_m_id_2() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_id_2)); } inline int32_t get_m_id_2() const { return ___m_id_2; } inline int32_t* get_address_of_m_id_2() { return &___m_id_2; } inline void set_m_id_2(int32_t value) { ___m_id_2 = value; } inline static int32_t get_offset_of_m_guid_3() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_guid_3)); } inline Guid_t get_m_guid_3() const { return ___m_guid_3; } inline Guid_t * get_address_of_m_guid_3() { return &___m_guid_3; } inline void set_m_guid_3(Guid_t value) { ___m_guid_3 = value; } inline static int32_t get_offset_of_m_eventData_4() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_eventData_4)); } inline EventMetadataU5BU5D_tA6A4B1FE9D3A53D9941A4C63D95399E4594ABE94* get_m_eventData_4() const { return ___m_eventData_4; } inline EventMetadataU5BU5D_tA6A4B1FE9D3A53D9941A4C63D95399E4594ABE94** get_address_of_m_eventData_4() { return &___m_eventData_4; } inline void set_m_eventData_4(EventMetadataU5BU5D_tA6A4B1FE9D3A53D9941A4C63D95399E4594ABE94* value) { ___m_eventData_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_eventData_4), (void*)value); } inline static int32_t get_offset_of_m_rawManifest_5() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_rawManifest_5)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_m_rawManifest_5() const { return ___m_rawManifest_5; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_m_rawManifest_5() { return &___m_rawManifest_5; } inline void set_m_rawManifest_5(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___m_rawManifest_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_rawManifest_5), (void*)value); } inline static int32_t get_offset_of_m_eventCommandExecuted_6() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_eventCommandExecuted_6)); } inline EventHandler_1_t7B950CA178FCE6D050E740E55B739A0C75BDE49C * get_m_eventCommandExecuted_6() const { return ___m_eventCommandExecuted_6; } inline EventHandler_1_t7B950CA178FCE6D050E740E55B739A0C75BDE49C ** get_address_of_m_eventCommandExecuted_6() { return &___m_eventCommandExecuted_6; } inline void set_m_eventCommandExecuted_6(EventHandler_1_t7B950CA178FCE6D050E740E55B739A0C75BDE49C * value) { ___m_eventCommandExecuted_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_eventCommandExecuted_6), (void*)value); } inline static int32_t get_offset_of_m_config_7() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_config_7)); } inline int32_t get_m_config_7() const { return ___m_config_7; } inline int32_t* get_address_of_m_config_7() { return &___m_config_7; } inline void set_m_config_7(int32_t value) { ___m_config_7 = value; } inline static int32_t get_offset_of_m_eventSourceEnabled_8() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_eventSourceEnabled_8)); } inline bool get_m_eventSourceEnabled_8() const { return ___m_eventSourceEnabled_8; } inline bool* get_address_of_m_eventSourceEnabled_8() { return &___m_eventSourceEnabled_8; } inline void set_m_eventSourceEnabled_8(bool value) { ___m_eventSourceEnabled_8 = value; } inline static int32_t get_offset_of_m_level_9() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_level_9)); } inline int32_t get_m_level_9() const { return ___m_level_9; } inline int32_t* get_address_of_m_level_9() { return &___m_level_9; } inline void set_m_level_9(int32_t value) { ___m_level_9 = value; } inline static int32_t get_offset_of_m_matchAnyKeyword_10() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_matchAnyKeyword_10)); } inline int64_t get_m_matchAnyKeyword_10() const { return ___m_matchAnyKeyword_10; } inline int64_t* get_address_of_m_matchAnyKeyword_10() { return &___m_matchAnyKeyword_10; } inline void set_m_matchAnyKeyword_10(int64_t value) { ___m_matchAnyKeyword_10 = value; } inline static int32_t get_offset_of_m_Dispatchers_11() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_Dispatchers_11)); } inline EventDispatcher_tCC0CD01793D8CA99D9F2580DF4DA0663AFB54BFF * get_m_Dispatchers_11() const { return ___m_Dispatchers_11; } inline EventDispatcher_tCC0CD01793D8CA99D9F2580DF4DA0663AFB54BFF ** get_address_of_m_Dispatchers_11() { return &___m_Dispatchers_11; } inline void set_m_Dispatchers_11(EventDispatcher_tCC0CD01793D8CA99D9F2580DF4DA0663AFB54BFF * value) { ___m_Dispatchers_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Dispatchers_11), (void*)value); } inline static int32_t get_offset_of_m_provider_12() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_provider_12)); } inline OverideEventProvider_t354C68E8EFB53023A6C94D61F8F44358225D7C2B * get_m_provider_12() const { return ___m_provider_12; } inline OverideEventProvider_t354C68E8EFB53023A6C94D61F8F44358225D7C2B ** get_address_of_m_provider_12() { return &___m_provider_12; } inline void set_m_provider_12(OverideEventProvider_t354C68E8EFB53023A6C94D61F8F44358225D7C2B * value) { ___m_provider_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_provider_12), (void*)value); } inline static int32_t get_offset_of_m_completelyInited_13() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_completelyInited_13)); } inline bool get_m_completelyInited_13() const { return ___m_completelyInited_13; } inline bool* get_address_of_m_completelyInited_13() { return &___m_completelyInited_13; } inline void set_m_completelyInited_13(bool value) { ___m_completelyInited_13 = value; } inline static int32_t get_offset_of_m_constructionException_14() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_constructionException_14)); } inline Exception_t * get_m_constructionException_14() const { return ___m_constructionException_14; } inline Exception_t ** get_address_of_m_constructionException_14() { return &___m_constructionException_14; } inline void set_m_constructionException_14(Exception_t * value) { ___m_constructionException_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_constructionException_14), (void*)value); } inline static int32_t get_offset_of_m_outOfBandMessageCount_15() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_outOfBandMessageCount_15)); } inline uint8_t get_m_outOfBandMessageCount_15() const { return ___m_outOfBandMessageCount_15; } inline uint8_t* get_address_of_m_outOfBandMessageCount_15() { return &___m_outOfBandMessageCount_15; } inline void set_m_outOfBandMessageCount_15(uint8_t value) { ___m_outOfBandMessageCount_15 = value; } inline static int32_t get_offset_of_m_deferredCommands_16() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_deferredCommands_16)); } inline EventCommandEventArgs_t96A2E796A34D5D2D56784C5DEDAE4BDA14EDBE15 * get_m_deferredCommands_16() const { return ___m_deferredCommands_16; } inline EventCommandEventArgs_t96A2E796A34D5D2D56784C5DEDAE4BDA14EDBE15 ** get_address_of_m_deferredCommands_16() { return &___m_deferredCommands_16; } inline void set_m_deferredCommands_16(EventCommandEventArgs_t96A2E796A34D5D2D56784C5DEDAE4BDA14EDBE15 * value) { ___m_deferredCommands_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_deferredCommands_16), (void*)value); } inline static int32_t get_offset_of_m_traits_17() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_traits_17)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_m_traits_17() const { return ___m_traits_17; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_m_traits_17() { return &___m_traits_17; } inline void set_m_traits_17(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___m_traits_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_traits_17), (void*)value); } inline static int32_t get_offset_of_m_curLiveSessions_20() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_curLiveSessions_20)); } inline SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE get_m_curLiveSessions_20() const { return ___m_curLiveSessions_20; } inline SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE * get_address_of_m_curLiveSessions_20() { return &___m_curLiveSessions_20; } inline void set_m_curLiveSessions_20(SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE value) { ___m_curLiveSessions_20 = value; } inline static int32_t get_offset_of_m_etwSessionIdMap_21() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_etwSessionIdMap_21)); } inline EtwSessionU5BU5D_t8797EC7C4B69B091119AFD2A22F03049811748FA* get_m_etwSessionIdMap_21() const { return ___m_etwSessionIdMap_21; } inline EtwSessionU5BU5D_t8797EC7C4B69B091119AFD2A22F03049811748FA** get_address_of_m_etwSessionIdMap_21() { return &___m_etwSessionIdMap_21; } inline void set_m_etwSessionIdMap_21(EtwSessionU5BU5D_t8797EC7C4B69B091119AFD2A22F03049811748FA* value) { ___m_etwSessionIdMap_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_etwSessionIdMap_21), (void*)value); } inline static int32_t get_offset_of_m_legacySessions_22() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_legacySessions_22)); } inline List_1_t9CDF2E150AAD0D0EF043696D08554EE4E22E3E88 * get_m_legacySessions_22() const { return ___m_legacySessions_22; } inline List_1_t9CDF2E150AAD0D0EF043696D08554EE4E22E3E88 ** get_address_of_m_legacySessions_22() { return &___m_legacySessions_22; } inline void set_m_legacySessions_22(List_1_t9CDF2E150AAD0D0EF043696D08554EE4E22E3E88 * value) { ___m_legacySessions_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_legacySessions_22), (void*)value); } inline static int32_t get_offset_of_m_keywordTriggers_23() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_keywordTriggers_23)); } inline int64_t get_m_keywordTriggers_23() const { return ___m_keywordTriggers_23; } inline int64_t* get_address_of_m_keywordTriggers_23() { return &___m_keywordTriggers_23; } inline void set_m_keywordTriggers_23(int64_t value) { ___m_keywordTriggers_23 = value; } inline static int32_t get_offset_of_m_activityFilteringForETWEnabled_24() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_activityFilteringForETWEnabled_24)); } inline SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE get_m_activityFilteringForETWEnabled_24() const { return ___m_activityFilteringForETWEnabled_24; } inline SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE * get_address_of_m_activityFilteringForETWEnabled_24() { return &___m_activityFilteringForETWEnabled_24; } inline void set_m_activityFilteringForETWEnabled_24(SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE value) { ___m_activityFilteringForETWEnabled_24 = value; } inline static int32_t get_offset_of_m_activityTracker_26() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_activityTracker_26)); } inline ActivityTracker_tFBAFEF8651768D41ECD29EF2692D57A6B6A80838 * get_m_activityTracker_26() const { return ___m_activityTracker_26; } inline ActivityTracker_tFBAFEF8651768D41ECD29EF2692D57A6B6A80838 ** get_address_of_m_activityTracker_26() { return &___m_activityTracker_26; } inline void set_m_activityTracker_26(ActivityTracker_tFBAFEF8651768D41ECD29EF2692D57A6B6A80838 * value) { ___m_activityTracker_26 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_activityTracker_26), (void*)value); } }; struct EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB_StaticFields { public: // System.UInt32 System.Diagnostics.Tracing.EventSource::s_currentPid uint32_t ___s_currentPid_18; // System.Action`1<System.Guid> System.Diagnostics.Tracing.EventSource::s_activityDying Action_1_t914484DED737548EE8FABFA959036371C8235942 * ___s_activityDying_25; // System.Byte[] System.Diagnostics.Tracing.EventSource::namespaceBytes ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___namespaceBytes_27; // System.Guid System.Diagnostics.Tracing.EventSource::AspNetEventSourceGuid Guid_t ___AspNetEventSourceGuid_28; public: inline static int32_t get_offset_of_s_currentPid_18() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB_StaticFields, ___s_currentPid_18)); } inline uint32_t get_s_currentPid_18() const { return ___s_currentPid_18; } inline uint32_t* get_address_of_s_currentPid_18() { return &___s_currentPid_18; } inline void set_s_currentPid_18(uint32_t value) { ___s_currentPid_18 = value; } inline static int32_t get_offset_of_s_activityDying_25() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB_StaticFields, ___s_activityDying_25)); } inline Action_1_t914484DED737548EE8FABFA959036371C8235942 * get_s_activityDying_25() const { return ___s_activityDying_25; } inline Action_1_t914484DED737548EE8FABFA959036371C8235942 ** get_address_of_s_activityDying_25() { return &___s_activityDying_25; } inline void set_s_activityDying_25(Action_1_t914484DED737548EE8FABFA959036371C8235942 * value) { ___s_activityDying_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_activityDying_25), (void*)value); } inline static int32_t get_offset_of_namespaceBytes_27() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB_StaticFields, ___namespaceBytes_27)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_namespaceBytes_27() const { return ___namespaceBytes_27; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_namespaceBytes_27() { return &___namespaceBytes_27; } inline void set_namespaceBytes_27(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___namespaceBytes_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___namespaceBytes_27), (void*)value); } inline static int32_t get_offset_of_AspNetEventSourceGuid_28() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB_StaticFields, ___AspNetEventSourceGuid_28)); } inline Guid_t get_AspNetEventSourceGuid_28() const { return ___AspNetEventSourceGuid_28; } inline Guid_t * get_address_of_AspNetEventSourceGuid_28() { return &___AspNetEventSourceGuid_28; } inline void set_AspNetEventSourceGuid_28(Guid_t value) { ___AspNetEventSourceGuid_28 = value; } }; struct EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB_ThreadStaticFields { public: // System.Byte System.Diagnostics.Tracing.EventSource::m_EventSourceExceptionRecurenceCount uint8_t ___m_EventSourceExceptionRecurenceCount_19; public: inline static int32_t get_offset_of_m_EventSourceExceptionRecurenceCount_19() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB_ThreadStaticFields, ___m_EventSourceExceptionRecurenceCount_19)); } inline uint8_t get_m_EventSourceExceptionRecurenceCount_19() const { return ___m_EventSourceExceptionRecurenceCount_19; } inline uint8_t* get_address_of_m_EventSourceExceptionRecurenceCount_19() { return &___m_EventSourceExceptionRecurenceCount_19; } inline void set_m_EventSourceExceptionRecurenceCount_19(uint8_t value) { ___m_EventSourceExceptionRecurenceCount_19 = value; } }; // System.Diagnostics.Tracing.EventSource_EventMetadata struct EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B { public: // System.Diagnostics.Tracing.EventDescriptor System.Diagnostics.Tracing.EventSource_EventMetadata::Descriptor EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E ___Descriptor_0; // System.Diagnostics.Tracing.EventTags System.Diagnostics.Tracing.EventSource_EventMetadata::Tags int32_t ___Tags_1; // System.Boolean System.Diagnostics.Tracing.EventSource_EventMetadata::EnabledForAnyListener bool ___EnabledForAnyListener_2; // System.Boolean System.Diagnostics.Tracing.EventSource_EventMetadata::EnabledForETW bool ___EnabledForETW_3; // System.Boolean System.Diagnostics.Tracing.EventSource_EventMetadata::HasRelatedActivityID bool ___HasRelatedActivityID_4; // System.Byte System.Diagnostics.Tracing.EventSource_EventMetadata::TriggersActivityTracking uint8_t ___TriggersActivityTracking_5; // System.String System.Diagnostics.Tracing.EventSource_EventMetadata::Name String_t* ___Name_6; // System.String System.Diagnostics.Tracing.EventSource_EventMetadata::Message String_t* ___Message_7; // System.Reflection.ParameterInfo[] System.Diagnostics.Tracing.EventSource_EventMetadata::Parameters ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* ___Parameters_8; // System.Diagnostics.Tracing.TraceLoggingEventTypes System.Diagnostics.Tracing.EventSource_EventMetadata::TraceLoggingEventTypes TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * ___TraceLoggingEventTypes_9; // System.Diagnostics.Tracing.EventActivityOptions System.Diagnostics.Tracing.EventSource_EventMetadata::ActivityOptions int32_t ___ActivityOptions_10; public: inline static int32_t get_offset_of_Descriptor_0() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___Descriptor_0)); } inline EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E get_Descriptor_0() const { return ___Descriptor_0; } inline EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E * get_address_of_Descriptor_0() { return &___Descriptor_0; } inline void set_Descriptor_0(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E value) { ___Descriptor_0 = value; } inline static int32_t get_offset_of_Tags_1() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___Tags_1)); } inline int32_t get_Tags_1() const { return ___Tags_1; } inline int32_t* get_address_of_Tags_1() { return &___Tags_1; } inline void set_Tags_1(int32_t value) { ___Tags_1 = value; } inline static int32_t get_offset_of_EnabledForAnyListener_2() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___EnabledForAnyListener_2)); } inline bool get_EnabledForAnyListener_2() const { return ___EnabledForAnyListener_2; } inline bool* get_address_of_EnabledForAnyListener_2() { return &___EnabledForAnyListener_2; } inline void set_EnabledForAnyListener_2(bool value) { ___EnabledForAnyListener_2 = value; } inline static int32_t get_offset_of_EnabledForETW_3() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___EnabledForETW_3)); } inline bool get_EnabledForETW_3() const { return ___EnabledForETW_3; } inline bool* get_address_of_EnabledForETW_3() { return &___EnabledForETW_3; } inline void set_EnabledForETW_3(bool value) { ___EnabledForETW_3 = value; } inline static int32_t get_offset_of_HasRelatedActivityID_4() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___HasRelatedActivityID_4)); } inline bool get_HasRelatedActivityID_4() const { return ___HasRelatedActivityID_4; } inline bool* get_address_of_HasRelatedActivityID_4() { return &___HasRelatedActivityID_4; } inline void set_HasRelatedActivityID_4(bool value) { ___HasRelatedActivityID_4 = value; } inline static int32_t get_offset_of_TriggersActivityTracking_5() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___TriggersActivityTracking_5)); } inline uint8_t get_TriggersActivityTracking_5() const { return ___TriggersActivityTracking_5; } inline uint8_t* get_address_of_TriggersActivityTracking_5() { return &___TriggersActivityTracking_5; } inline void set_TriggersActivityTracking_5(uint8_t value) { ___TriggersActivityTracking_5 = value; } inline static int32_t get_offset_of_Name_6() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___Name_6)); } inline String_t* get_Name_6() const { return ___Name_6; } inline String_t** get_address_of_Name_6() { return &___Name_6; } inline void set_Name_6(String_t* value) { ___Name_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___Name_6), (void*)value); } inline static int32_t get_offset_of_Message_7() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___Message_7)); } inline String_t* get_Message_7() const { return ___Message_7; } inline String_t** get_address_of_Message_7() { return &___Message_7; } inline void set_Message_7(String_t* value) { ___Message_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___Message_7), (void*)value); } inline static int32_t get_offset_of_Parameters_8() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___Parameters_8)); } inline ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* get_Parameters_8() const { return ___Parameters_8; } inline ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694** get_address_of_Parameters_8() { return &___Parameters_8; } inline void set_Parameters_8(ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* value) { ___Parameters_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___Parameters_8), (void*)value); } inline static int32_t get_offset_of_TraceLoggingEventTypes_9() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___TraceLoggingEventTypes_9)); } inline TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * get_TraceLoggingEventTypes_9() const { return ___TraceLoggingEventTypes_9; } inline TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 ** get_address_of_TraceLoggingEventTypes_9() { return &___TraceLoggingEventTypes_9; } inline void set_TraceLoggingEventTypes_9(TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * value) { ___TraceLoggingEventTypes_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___TraceLoggingEventTypes_9), (void*)value); } inline static int32_t get_offset_of_ActivityOptions_10() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___ActivityOptions_10)); } inline int32_t get_ActivityOptions_10() const { return ___ActivityOptions_10; } inline int32_t* get_address_of_ActivityOptions_10() { return &___ActivityOptions_10; } inline void set_ActivityOptions_10(int32_t value) { ___ActivityOptions_10 = value; } }; // Native definition for P/Invoke marshalling of System.Diagnostics.Tracing.EventSource/EventMetadata struct EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_marshaled_pinvoke { EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E ___Descriptor_0; int32_t ___Tags_1; int32_t ___EnabledForAnyListener_2; int32_t ___EnabledForETW_3; int32_t ___HasRelatedActivityID_4; uint8_t ___TriggersActivityTracking_5; char* ___Name_6; char* ___Message_7; ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_pinvoke** ___Parameters_8; TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * ___TraceLoggingEventTypes_9; int32_t ___ActivityOptions_10; }; // Native definition for COM marshalling of System.Diagnostics.Tracing.EventSource/EventMetadata struct EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_marshaled_com { EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E ___Descriptor_0; int32_t ___Tags_1; int32_t ___EnabledForAnyListener_2; int32_t ___EnabledForETW_3; int32_t ___HasRelatedActivityID_4; uint8_t ___TriggersActivityTracking_5; Il2CppChar* ___Name_6; Il2CppChar* ___Message_7; ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_com** ___Parameters_8; TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * ___TraceLoggingEventTypes_9; int32_t ___ActivityOptions_10; }; // System.Diagnostics.Tracing.EventSourceException struct EventSourceException_tCD5CC7F1F4F968609FB863449D9A5CD630236275 : public Exception_t { public: public: }; // System.Diagnostics.Tracing.EventSourceOptions struct EventSourceOptions_tB3B2EDA0BF087FEB0198CF64451FAAF4C1B3002C { public: // System.Diagnostics.Tracing.EventKeywords System.Diagnostics.Tracing.EventSourceOptions::keywords int64_t ___keywords_0; // System.Diagnostics.Tracing.EventTags System.Diagnostics.Tracing.EventSourceOptions::tags int32_t ___tags_1; // System.Diagnostics.Tracing.EventActivityOptions System.Diagnostics.Tracing.EventSourceOptions::activityOptions int32_t ___activityOptions_2; // System.Byte System.Diagnostics.Tracing.EventSourceOptions::level uint8_t ___level_3; // System.Byte System.Diagnostics.Tracing.EventSourceOptions::opcode uint8_t ___opcode_4; // System.Byte System.Diagnostics.Tracing.EventSourceOptions::valuesSet uint8_t ___valuesSet_5; public: inline static int32_t get_offset_of_keywords_0() { return static_cast<int32_t>(offsetof(EventSourceOptions_tB3B2EDA0BF087FEB0198CF64451FAAF4C1B3002C, ___keywords_0)); } inline int64_t get_keywords_0() const { return ___keywords_0; } inline int64_t* get_address_of_keywords_0() { return &___keywords_0; } inline void set_keywords_0(int64_t value) { ___keywords_0 = value; } inline static int32_t get_offset_of_tags_1() { return static_cast<int32_t>(offsetof(EventSourceOptions_tB3B2EDA0BF087FEB0198CF64451FAAF4C1B3002C, ___tags_1)); } inline int32_t get_tags_1() const { return ___tags_1; } inline int32_t* get_address_of_tags_1() { return &___tags_1; } inline void set_tags_1(int32_t value) { ___tags_1 = value; } inline static int32_t get_offset_of_activityOptions_2() { return static_cast<int32_t>(offsetof(EventSourceOptions_tB3B2EDA0BF087FEB0198CF64451FAAF4C1B3002C, ___activityOptions_2)); } inline int32_t get_activityOptions_2() const { return ___activityOptions_2; } inline int32_t* get_address_of_activityOptions_2() { return &___activityOptions_2; } inline void set_activityOptions_2(int32_t value) { ___activityOptions_2 = value; } inline static int32_t get_offset_of_level_3() { return static_cast<int32_t>(offsetof(EventSourceOptions_tB3B2EDA0BF087FEB0198CF64451FAAF4C1B3002C, ___level_3)); } inline uint8_t get_level_3() const { return ___level_3; } inline uint8_t* get_address_of_level_3() { return &___level_3; } inline void set_level_3(uint8_t value) { ___level_3 = value; } inline static int32_t get_offset_of_opcode_4() { return static_cast<int32_t>(offsetof(EventSourceOptions_tB3B2EDA0BF087FEB0198CF64451FAAF4C1B3002C, ___opcode_4)); } inline uint8_t get_opcode_4() const { return ___opcode_4; } inline uint8_t* get_address_of_opcode_4() { return &___opcode_4; } inline void set_opcode_4(uint8_t value) { ___opcode_4 = value; } inline static int32_t get_offset_of_valuesSet_5() { return static_cast<int32_t>(offsetof(EventSourceOptions_tB3B2EDA0BF087FEB0198CF64451FAAF4C1B3002C, ___valuesSet_5)); } inline uint8_t get_valuesSet_5() const { return ___valuesSet_5; } inline uint8_t* get_address_of_valuesSet_5() { return &___valuesSet_5; } inline void set_valuesSet_5(uint8_t value) { ___valuesSet_5 = value; } }; // System.Diagnostics.Tracing.FieldMetadata struct FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC : public RuntimeObject { public: // System.String System.Diagnostics.Tracing.FieldMetadata::name String_t* ___name_0; // System.Int32 System.Diagnostics.Tracing.FieldMetadata::nameSize int32_t ___nameSize_1; // System.Diagnostics.Tracing.EventFieldTags System.Diagnostics.Tracing.FieldMetadata::tags int32_t ___tags_2; // System.Byte[] System.Diagnostics.Tracing.FieldMetadata::custom ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___custom_3; // System.UInt16 System.Diagnostics.Tracing.FieldMetadata::fixedCount uint16_t ___fixedCount_4; // System.Byte System.Diagnostics.Tracing.FieldMetadata::inType uint8_t ___inType_5; // System.Byte System.Diagnostics.Tracing.FieldMetadata::outType uint8_t ___outType_6; public: inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC, ___name_0)); } inline String_t* get_name_0() const { return ___name_0; } inline String_t** get_address_of_name_0() { return &___name_0; } inline void set_name_0(String_t* value) { ___name_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___name_0), (void*)value); } inline static int32_t get_offset_of_nameSize_1() { return static_cast<int32_t>(offsetof(FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC, ___nameSize_1)); } inline int32_t get_nameSize_1() const { return ___nameSize_1; } inline int32_t* get_address_of_nameSize_1() { return &___nameSize_1; } inline void set_nameSize_1(int32_t value) { ___nameSize_1 = value; } inline static int32_t get_offset_of_tags_2() { return static_cast<int32_t>(offsetof(FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC, ___tags_2)); } inline int32_t get_tags_2() const { return ___tags_2; } inline int32_t* get_address_of_tags_2() { return &___tags_2; } inline void set_tags_2(int32_t value) { ___tags_2 = value; } inline static int32_t get_offset_of_custom_3() { return static_cast<int32_t>(offsetof(FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC, ___custom_3)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_custom_3() const { return ___custom_3; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_custom_3() { return &___custom_3; } inline void set_custom_3(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___custom_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___custom_3), (void*)value); } inline static int32_t get_offset_of_fixedCount_4() { return static_cast<int32_t>(offsetof(FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC, ___fixedCount_4)); } inline uint16_t get_fixedCount_4() const { return ___fixedCount_4; } inline uint16_t* get_address_of_fixedCount_4() { return &___fixedCount_4; } inline void set_fixedCount_4(uint16_t value) { ___fixedCount_4 = value; } inline static int32_t get_offset_of_inType_5() { return static_cast<int32_t>(offsetof(FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC, ___inType_5)); } inline uint8_t get_inType_5() const { return ___inType_5; } inline uint8_t* get_address_of_inType_5() { return &___inType_5; } inline void set_inType_5(uint8_t value) { ___inType_5 = value; } inline static int32_t get_offset_of_outType_6() { return static_cast<int32_t>(offsetof(FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC, ___outType_6)); } inline uint8_t get_outType_6() const { return ___outType_6; } inline uint8_t* get_address_of_outType_6() { return &___outType_6; } inline void set_outType_6(uint8_t value) { ___outType_6 = value; } }; // System.Diagnostics.Tracing.ManifestBuilder struct ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 : public RuntimeObject { public: // System.Collections.Generic.Dictionary`2<System.Int32,System.String> System.Diagnostics.Tracing.ManifestBuilder::opcodeTab Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * ___opcodeTab_0; // System.Collections.Generic.Dictionary`2<System.Int32,System.String> System.Diagnostics.Tracing.ManifestBuilder::taskTab Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * ___taskTab_1; // System.Collections.Generic.Dictionary`2<System.UInt64,System.String> System.Diagnostics.Tracing.ManifestBuilder::keywordTab Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 * ___keywordTab_2; // System.Collections.Generic.Dictionary`2<System.String,System.Type> System.Diagnostics.Tracing.ManifestBuilder::mapsTab Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A * ___mapsTab_3; // System.Collections.Generic.Dictionary`2<System.String,System.String> System.Diagnostics.Tracing.ManifestBuilder::stringTab Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * ___stringTab_4; // System.Text.StringBuilder System.Diagnostics.Tracing.ManifestBuilder::sb StringBuilder_t * ___sb_5; // System.Text.StringBuilder System.Diagnostics.Tracing.ManifestBuilder::events StringBuilder_t * ___events_6; // System.Text.StringBuilder System.Diagnostics.Tracing.ManifestBuilder::templates StringBuilder_t * ___templates_7; // System.Resources.ResourceManager System.Diagnostics.Tracing.ManifestBuilder::resources ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF * ___resources_8; // System.Diagnostics.Tracing.EventManifestOptions System.Diagnostics.Tracing.ManifestBuilder::flags int32_t ___flags_9; // System.Collections.Generic.IList`1<System.String> System.Diagnostics.Tracing.ManifestBuilder::errors RuntimeObject* ___errors_10; // System.Collections.Generic.Dictionary`2<System.String,System.Collections.Generic.List`1<System.Int32>> System.Diagnostics.Tracing.ManifestBuilder::perEventByteArrayArgIndices Dictionary_2_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28 * ___perEventByteArrayArgIndices_11; // System.String System.Diagnostics.Tracing.ManifestBuilder::eventName String_t* ___eventName_12; // System.Int32 System.Diagnostics.Tracing.ManifestBuilder::numParams int32_t ___numParams_13; // System.Collections.Generic.List`1<System.Int32> System.Diagnostics.Tracing.ManifestBuilder::byteArrArgIndices List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * ___byteArrArgIndices_14; public: inline static int32_t get_offset_of_opcodeTab_0() { return static_cast<int32_t>(offsetof(ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450, ___opcodeTab_0)); } inline Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * get_opcodeTab_0() const { return ___opcodeTab_0; } inline Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C ** get_address_of_opcodeTab_0() { return &___opcodeTab_0; } inline void set_opcodeTab_0(Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * value) { ___opcodeTab_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___opcodeTab_0), (void*)value); } inline static int32_t get_offset_of_taskTab_1() { return static_cast<int32_t>(offsetof(ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450, ___taskTab_1)); } inline Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * get_taskTab_1() const { return ___taskTab_1; } inline Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C ** get_address_of_taskTab_1() { return &___taskTab_1; } inline void set_taskTab_1(Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * value) { ___taskTab_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___taskTab_1), (void*)value); } inline static int32_t get_offset_of_keywordTab_2() { return static_cast<int32_t>(offsetof(ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450, ___keywordTab_2)); } inline Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 * get_keywordTab_2() const { return ___keywordTab_2; } inline Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 ** get_address_of_keywordTab_2() { return &___keywordTab_2; } inline void set_keywordTab_2(Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 * value) { ___keywordTab_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___keywordTab_2), (void*)value); } inline static int32_t get_offset_of_mapsTab_3() { return static_cast<int32_t>(offsetof(ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450, ___mapsTab_3)); } inline Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A * get_mapsTab_3() const { return ___mapsTab_3; } inline Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A ** get_address_of_mapsTab_3() { return &___mapsTab_3; } inline void set_mapsTab_3(Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A * value) { ___mapsTab_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___mapsTab_3), (void*)value); } inline static int32_t get_offset_of_stringTab_4() { return static_cast<int32_t>(offsetof(ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450, ___stringTab_4)); } inline Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * get_stringTab_4() const { return ___stringTab_4; } inline Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC ** get_address_of_stringTab_4() { return &___stringTab_4; } inline void set_stringTab_4(Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * value) { ___stringTab_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___stringTab_4), (void*)value); } inline static int32_t get_offset_of_sb_5() { return static_cast<int32_t>(offsetof(ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450, ___sb_5)); } inline StringBuilder_t * get_sb_5() const { return ___sb_5; } inline StringBuilder_t ** get_address_of_sb_5() { return &___sb_5; } inline void set_sb_5(StringBuilder_t * value) { ___sb_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___sb_5), (void*)value); } inline static int32_t get_offset_of_events_6() { return static_cast<int32_t>(offsetof(ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450, ___events_6)); } inline StringBuilder_t * get_events_6() const { return ___events_6; } inline StringBuilder_t ** get_address_of_events_6() { return &___events_6; } inline void set_events_6(StringBuilder_t * value) { ___events_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___events_6), (void*)value); } inline static int32_t get_offset_of_templates_7() { return static_cast<int32_t>(offsetof(ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450, ___templates_7)); } inline StringBuilder_t * get_templates_7() const { return ___templates_7; } inline StringBuilder_t ** get_address_of_templates_7() { return &___templates_7; } inline void set_templates_7(StringBuilder_t * value) { ___templates_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___templates_7), (void*)value); } inline static int32_t get_offset_of_resources_8() { return static_cast<int32_t>(offsetof(ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450, ___resources_8)); } inline ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF * get_resources_8() const { return ___resources_8; } inline ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF ** get_address_of_resources_8() { return &___resources_8; } inline void set_resources_8(ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF * value) { ___resources_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___resources_8), (void*)value); } inline static int32_t get_offset_of_flags_9() { return static_cast<int32_t>(offsetof(ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450, ___flags_9)); } inline int32_t get_flags_9() const { return ___flags_9; } inline int32_t* get_address_of_flags_9() { return &___flags_9; } inline void set_flags_9(int32_t value) { ___flags_9 = value; } inline static int32_t get_offset_of_errors_10() { return static_cast<int32_t>(offsetof(ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450, ___errors_10)); } inline RuntimeObject* get_errors_10() const { return ___errors_10; } inline RuntimeObject** get_address_of_errors_10() { return &___errors_10; } inline void set_errors_10(RuntimeObject* value) { ___errors_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___errors_10), (void*)value); } inline static int32_t get_offset_of_perEventByteArrayArgIndices_11() { return static_cast<int32_t>(offsetof(ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450, ___perEventByteArrayArgIndices_11)); } inline Dictionary_2_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28 * get_perEventByteArrayArgIndices_11() const { return ___perEventByteArrayArgIndices_11; } inline Dictionary_2_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28 ** get_address_of_perEventByteArrayArgIndices_11() { return &___perEventByteArrayArgIndices_11; } inline void set_perEventByteArrayArgIndices_11(Dictionary_2_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28 * value) { ___perEventByteArrayArgIndices_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___perEventByteArrayArgIndices_11), (void*)value); } inline static int32_t get_offset_of_eventName_12() { return static_cast<int32_t>(offsetof(ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450, ___eventName_12)); } inline String_t* get_eventName_12() const { return ___eventName_12; } inline String_t** get_address_of_eventName_12() { return &___eventName_12; } inline void set_eventName_12(String_t* value) { ___eventName_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___eventName_12), (void*)value); } inline static int32_t get_offset_of_numParams_13() { return static_cast<int32_t>(offsetof(ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450, ___numParams_13)); } inline int32_t get_numParams_13() const { return ___numParams_13; } inline int32_t* get_address_of_numParams_13() { return &___numParams_13; } inline void set_numParams_13(int32_t value) { ___numParams_13 = value; } inline static int32_t get_offset_of_byteArrArgIndices_14() { return static_cast<int32_t>(offsetof(ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450, ___byteArrArgIndices_14)); } inline List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * get_byteArrArgIndices_14() const { return ___byteArrArgIndices_14; } inline List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 ** get_address_of_byteArrArgIndices_14() { return &___byteArrArgIndices_14; } inline void set_byteArrArgIndices_14(List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * value) { ___byteArrArgIndices_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___byteArrArgIndices_14), (void*)value); } }; // System.Diagnostics.Tracing.ManifestEnvelope struct ManifestEnvelope_t77CD15A106F6540BFB7C48C6F4E4427CA1994E34 { public: // System.Diagnostics.Tracing.ManifestEnvelope_ManifestFormats System.Diagnostics.Tracing.ManifestEnvelope::Format uint8_t ___Format_0; // System.Byte System.Diagnostics.Tracing.ManifestEnvelope::MajorVersion uint8_t ___MajorVersion_1; // System.Byte System.Diagnostics.Tracing.ManifestEnvelope::MinorVersion uint8_t ___MinorVersion_2; // System.Byte System.Diagnostics.Tracing.ManifestEnvelope::Magic uint8_t ___Magic_3; // System.UInt16 System.Diagnostics.Tracing.ManifestEnvelope::TotalChunks uint16_t ___TotalChunks_4; // System.UInt16 System.Diagnostics.Tracing.ManifestEnvelope::ChunkNumber uint16_t ___ChunkNumber_5; public: inline static int32_t get_offset_of_Format_0() { return static_cast<int32_t>(offsetof(ManifestEnvelope_t77CD15A106F6540BFB7C48C6F4E4427CA1994E34, ___Format_0)); } inline uint8_t get_Format_0() const { return ___Format_0; } inline uint8_t* get_address_of_Format_0() { return &___Format_0; } inline void set_Format_0(uint8_t value) { ___Format_0 = value; } inline static int32_t get_offset_of_MajorVersion_1() { return static_cast<int32_t>(offsetof(ManifestEnvelope_t77CD15A106F6540BFB7C48C6F4E4427CA1994E34, ___MajorVersion_1)); } inline uint8_t get_MajorVersion_1() const { return ___MajorVersion_1; } inline uint8_t* get_address_of_MajorVersion_1() { return &___MajorVersion_1; } inline void set_MajorVersion_1(uint8_t value) { ___MajorVersion_1 = value; } inline static int32_t get_offset_of_MinorVersion_2() { return static_cast<int32_t>(offsetof(ManifestEnvelope_t77CD15A106F6540BFB7C48C6F4E4427CA1994E34, ___MinorVersion_2)); } inline uint8_t get_MinorVersion_2() const { return ___MinorVersion_2; } inline uint8_t* get_address_of_MinorVersion_2() { return &___MinorVersion_2; } inline void set_MinorVersion_2(uint8_t value) { ___MinorVersion_2 = value; } inline static int32_t get_offset_of_Magic_3() { return static_cast<int32_t>(offsetof(ManifestEnvelope_t77CD15A106F6540BFB7C48C6F4E4427CA1994E34, ___Magic_3)); } inline uint8_t get_Magic_3() const { return ___Magic_3; } inline uint8_t* get_address_of_Magic_3() { return &___Magic_3; } inline void set_Magic_3(uint8_t value) { ___Magic_3 = value; } inline static int32_t get_offset_of_TotalChunks_4() { return static_cast<int32_t>(offsetof(ManifestEnvelope_t77CD15A106F6540BFB7C48C6F4E4427CA1994E34, ___TotalChunks_4)); } inline uint16_t get_TotalChunks_4() const { return ___TotalChunks_4; } inline uint16_t* get_address_of_TotalChunks_4() { return &___TotalChunks_4; } inline void set_TotalChunks_4(uint16_t value) { ___TotalChunks_4 = value; } inline static int32_t get_offset_of_ChunkNumber_5() { return static_cast<int32_t>(offsetof(ManifestEnvelope_t77CD15A106F6540BFB7C48C6F4E4427CA1994E34, ___ChunkNumber_5)); } inline uint16_t get_ChunkNumber_5() const { return ___ChunkNumber_5; } inline uint16_t* get_address_of_ChunkNumber_5() { return &___ChunkNumber_5; } inline void set_ChunkNumber_5(uint16_t value) { ___ChunkNumber_5 = value; } }; // System.Diagnostics.Tracing.NameInfo struct NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C : public ConcurrentSetItem_2_tF75C8666AA6AE859719571013C6765518785D0DA { public: // System.String System.Diagnostics.Tracing.NameInfo::name String_t* ___name_1; // System.Diagnostics.Tracing.EventTags System.Diagnostics.Tracing.NameInfo::tags int32_t ___tags_2; // System.Int32 System.Diagnostics.Tracing.NameInfo::identity int32_t ___identity_3; // System.Byte[] System.Diagnostics.Tracing.NameInfo::nameMetadata ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___nameMetadata_4; public: inline static int32_t get_offset_of_name_1() { return static_cast<int32_t>(offsetof(NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C, ___name_1)); } inline String_t* get_name_1() const { return ___name_1; } inline String_t** get_address_of_name_1() { return &___name_1; } inline void set_name_1(String_t* value) { ___name_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___name_1), (void*)value); } inline static int32_t get_offset_of_tags_2() { return static_cast<int32_t>(offsetof(NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C, ___tags_2)); } inline int32_t get_tags_2() const { return ___tags_2; } inline int32_t* get_address_of_tags_2() { return &___tags_2; } inline void set_tags_2(int32_t value) { ___tags_2 = value; } inline static int32_t get_offset_of_identity_3() { return static_cast<int32_t>(offsetof(NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C, ___identity_3)); } inline int32_t get_identity_3() const { return ___identity_3; } inline int32_t* get_address_of_identity_3() { return &___identity_3; } inline void set_identity_3(int32_t value) { ___identity_3 = value; } inline static int32_t get_offset_of_nameMetadata_4() { return static_cast<int32_t>(offsetof(NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C, ___nameMetadata_4)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_nameMetadata_4() const { return ___nameMetadata_4; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_nameMetadata_4() { return &___nameMetadata_4; } inline void set_nameMetadata_4(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___nameMetadata_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___nameMetadata_4), (void*)value); } }; struct NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C_StaticFields { public: // System.Int32 System.Diagnostics.Tracing.NameInfo::lastIdentity int32_t ___lastIdentity_0; public: inline static int32_t get_offset_of_lastIdentity_0() { return static_cast<int32_t>(offsetof(NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C_StaticFields, ___lastIdentity_0)); } inline int32_t get_lastIdentity_0() const { return ___lastIdentity_0; } inline int32_t* get_address_of_lastIdentity_0() { return &___lastIdentity_0; } inline void set_lastIdentity_0(int32_t value) { ___lastIdentity_0 = value; } }; // System.Diagnostics.Tracing.Statics struct Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95 : public RuntimeObject { public: public: }; struct Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_StaticFields { public: // System.Diagnostics.Tracing.TraceLoggingDataType System.Diagnostics.Tracing.Statics::IntPtrType int32_t ___IntPtrType_0; // System.Diagnostics.Tracing.TraceLoggingDataType System.Diagnostics.Tracing.Statics::UIntPtrType int32_t ___UIntPtrType_1; // System.Diagnostics.Tracing.TraceLoggingDataType System.Diagnostics.Tracing.Statics::HexIntPtrType int32_t ___HexIntPtrType_2; public: inline static int32_t get_offset_of_IntPtrType_0() { return static_cast<int32_t>(offsetof(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_StaticFields, ___IntPtrType_0)); } inline int32_t get_IntPtrType_0() const { return ___IntPtrType_0; } inline int32_t* get_address_of_IntPtrType_0() { return &___IntPtrType_0; } inline void set_IntPtrType_0(int32_t value) { ___IntPtrType_0 = value; } inline static int32_t get_offset_of_UIntPtrType_1() { return static_cast<int32_t>(offsetof(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_StaticFields, ___UIntPtrType_1)); } inline int32_t get_UIntPtrType_1() const { return ___UIntPtrType_1; } inline int32_t* get_address_of_UIntPtrType_1() { return &___UIntPtrType_1; } inline void set_UIntPtrType_1(int32_t value) { ___UIntPtrType_1 = value; } inline static int32_t get_offset_of_HexIntPtrType_2() { return static_cast<int32_t>(offsetof(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_StaticFields, ___HexIntPtrType_2)); } inline int32_t get_HexIntPtrType_2() const { return ___HexIntPtrType_2; } inline int32_t* get_address_of_HexIntPtrType_2() { return &___HexIntPtrType_2; } inline void set_HexIntPtrType_2(int32_t value) { ___HexIntPtrType_2 = value; } }; // System.Diagnostics.Tracing.TplEtwProvider_Keywords struct Keywords_t5171937FE26BD6E78DA288FCE99671E055EF3CCC : public RuntimeObject { public: public: }; // System.Diagnostics.Tracing.TraceLoggingEventTypes struct TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 : public RuntimeObject { public: // System.Diagnostics.Tracing.TraceLoggingTypeInfo[] System.Diagnostics.Tracing.TraceLoggingEventTypes::typeInfos TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC* ___typeInfos_0; // System.String System.Diagnostics.Tracing.TraceLoggingEventTypes::name String_t* ___name_1; // System.Diagnostics.Tracing.EventTags System.Diagnostics.Tracing.TraceLoggingEventTypes::tags int32_t ___tags_2; // System.Byte System.Diagnostics.Tracing.TraceLoggingEventTypes::level uint8_t ___level_3; // System.Byte System.Diagnostics.Tracing.TraceLoggingEventTypes::opcode uint8_t ___opcode_4; // System.Diagnostics.Tracing.EventKeywords System.Diagnostics.Tracing.TraceLoggingEventTypes::keywords int64_t ___keywords_5; // System.Byte[] System.Diagnostics.Tracing.TraceLoggingEventTypes::typeMetadata ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___typeMetadata_6; // System.Int32 System.Diagnostics.Tracing.TraceLoggingEventTypes::scratchSize int32_t ___scratchSize_7; // System.Int32 System.Diagnostics.Tracing.TraceLoggingEventTypes::dataCount int32_t ___dataCount_8; // System.Int32 System.Diagnostics.Tracing.TraceLoggingEventTypes::pinCount int32_t ___pinCount_9; // System.Diagnostics.Tracing.ConcurrentSet`2<System.Collections.Generic.KeyValuePair`2<System.String,System.Diagnostics.Tracing.EventTags>,System.Diagnostics.Tracing.NameInfo> System.Diagnostics.Tracing.TraceLoggingEventTypes::nameInfos ConcurrentSet_2_t9B37AE19508B10669906106353C62B3C877BFA95 ___nameInfos_10; public: inline static int32_t get_offset_of_typeInfos_0() { return static_cast<int32_t>(offsetof(TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25, ___typeInfos_0)); } inline TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC* get_typeInfos_0() const { return ___typeInfos_0; } inline TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC** get_address_of_typeInfos_0() { return &___typeInfos_0; } inline void set_typeInfos_0(TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC* value) { ___typeInfos_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___typeInfos_0), (void*)value); } inline static int32_t get_offset_of_name_1() { return static_cast<int32_t>(offsetof(TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25, ___name_1)); } inline String_t* get_name_1() const { return ___name_1; } inline String_t** get_address_of_name_1() { return &___name_1; } inline void set_name_1(String_t* value) { ___name_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___name_1), (void*)value); } inline static int32_t get_offset_of_tags_2() { return static_cast<int32_t>(offsetof(TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25, ___tags_2)); } inline int32_t get_tags_2() const { return ___tags_2; } inline int32_t* get_address_of_tags_2() { return &___tags_2; } inline void set_tags_2(int32_t value) { ___tags_2 = value; } inline static int32_t get_offset_of_level_3() { return static_cast<int32_t>(offsetof(TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25, ___level_3)); } inline uint8_t get_level_3() const { return ___level_3; } inline uint8_t* get_address_of_level_3() { return &___level_3; } inline void set_level_3(uint8_t value) { ___level_3 = value; } inline static int32_t get_offset_of_opcode_4() { return static_cast<int32_t>(offsetof(TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25, ___opcode_4)); } inline uint8_t get_opcode_4() const { return ___opcode_4; } inline uint8_t* get_address_of_opcode_4() { return &___opcode_4; } inline void set_opcode_4(uint8_t value) { ___opcode_4 = value; } inline static int32_t get_offset_of_keywords_5() { return static_cast<int32_t>(offsetof(TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25, ___keywords_5)); } inline int64_t get_keywords_5() const { return ___keywords_5; } inline int64_t* get_address_of_keywords_5() { return &___keywords_5; } inline void set_keywords_5(int64_t value) { ___keywords_5 = value; } inline static int32_t get_offset_of_typeMetadata_6() { return static_cast<int32_t>(offsetof(TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25, ___typeMetadata_6)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_typeMetadata_6() const { return ___typeMetadata_6; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_typeMetadata_6() { return &___typeMetadata_6; } inline void set_typeMetadata_6(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___typeMetadata_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___typeMetadata_6), (void*)value); } inline static int32_t get_offset_of_scratchSize_7() { return static_cast<int32_t>(offsetof(TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25, ___scratchSize_7)); } inline int32_t get_scratchSize_7() const { return ___scratchSize_7; } inline int32_t* get_address_of_scratchSize_7() { return &___scratchSize_7; } inline void set_scratchSize_7(int32_t value) { ___scratchSize_7 = value; } inline static int32_t get_offset_of_dataCount_8() { return static_cast<int32_t>(offsetof(TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25, ___dataCount_8)); } inline int32_t get_dataCount_8() const { return ___dataCount_8; } inline int32_t* get_address_of_dataCount_8() { return &___dataCount_8; } inline void set_dataCount_8(int32_t value) { ___dataCount_8 = value; } inline static int32_t get_offset_of_pinCount_9() { return static_cast<int32_t>(offsetof(TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25, ___pinCount_9)); } inline int32_t get_pinCount_9() const { return ___pinCount_9; } inline int32_t* get_address_of_pinCount_9() { return &___pinCount_9; } inline void set_pinCount_9(int32_t value) { ___pinCount_9 = value; } inline static int32_t get_offset_of_nameInfos_10() { return static_cast<int32_t>(offsetof(TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25, ___nameInfos_10)); } inline ConcurrentSet_2_t9B37AE19508B10669906106353C62B3C877BFA95 get_nameInfos_10() const { return ___nameInfos_10; } inline ConcurrentSet_2_t9B37AE19508B10669906106353C62B3C877BFA95 * get_address_of_nameInfos_10() { return &___nameInfos_10; } inline void set_nameInfos_10(ConcurrentSet_2_t9B37AE19508B10669906106353C62B3C877BFA95 value) { ___nameInfos_10 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___nameInfos_10))->___items_0), (void*)NULL); } }; // System.Diagnostics.Tracing.TraceLoggingMetadataCollector struct TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E : public RuntimeObject { public: // System.Diagnostics.Tracing.TraceLoggingMetadataCollector_Impl System.Diagnostics.Tracing.TraceLoggingMetadataCollector::impl Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * ___impl_0; // System.Diagnostics.Tracing.FieldMetadata System.Diagnostics.Tracing.TraceLoggingMetadataCollector::currentGroup FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * ___currentGroup_1; // System.Int32 System.Diagnostics.Tracing.TraceLoggingMetadataCollector::bufferedArrayFieldCount int32_t ___bufferedArrayFieldCount_2; // System.Diagnostics.Tracing.EventFieldTags System.Diagnostics.Tracing.TraceLoggingMetadataCollector::<Tags>k__BackingField int32_t ___U3CTagsU3Ek__BackingField_3; public: inline static int32_t get_offset_of_impl_0() { return static_cast<int32_t>(offsetof(TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E, ___impl_0)); } inline Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * get_impl_0() const { return ___impl_0; } inline Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F ** get_address_of_impl_0() { return &___impl_0; } inline void set_impl_0(Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * value) { ___impl_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___impl_0), (void*)value); } inline static int32_t get_offset_of_currentGroup_1() { return static_cast<int32_t>(offsetof(TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E, ___currentGroup_1)); } inline FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * get_currentGroup_1() const { return ___currentGroup_1; } inline FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC ** get_address_of_currentGroup_1() { return &___currentGroup_1; } inline void set_currentGroup_1(FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * value) { ___currentGroup_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentGroup_1), (void*)value); } inline static int32_t get_offset_of_bufferedArrayFieldCount_2() { return static_cast<int32_t>(offsetof(TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E, ___bufferedArrayFieldCount_2)); } inline int32_t get_bufferedArrayFieldCount_2() const { return ___bufferedArrayFieldCount_2; } inline int32_t* get_address_of_bufferedArrayFieldCount_2() { return &___bufferedArrayFieldCount_2; } inline void set_bufferedArrayFieldCount_2(int32_t value) { ___bufferedArrayFieldCount_2 = value; } inline static int32_t get_offset_of_U3CTagsU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E, ___U3CTagsU3Ek__BackingField_3)); } inline int32_t get_U3CTagsU3Ek__BackingField_3() const { return ___U3CTagsU3Ek__BackingField_3; } inline int32_t* get_address_of_U3CTagsU3Ek__BackingField_3() { return &___U3CTagsU3Ek__BackingField_3; } inline void set_U3CTagsU3Ek__BackingField_3(int32_t value) { ___U3CTagsU3Ek__BackingField_3 = value; } }; // System.Diagnostics.Tracing.TraceLoggingTypeInfo struct TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F : public RuntimeObject { public: // System.String System.Diagnostics.Tracing.TraceLoggingTypeInfo::name String_t* ___name_0; // System.Diagnostics.Tracing.EventKeywords System.Diagnostics.Tracing.TraceLoggingTypeInfo::keywords int64_t ___keywords_1; // System.Diagnostics.Tracing.EventLevel System.Diagnostics.Tracing.TraceLoggingTypeInfo::level int32_t ___level_2; // System.Diagnostics.Tracing.EventOpcode System.Diagnostics.Tracing.TraceLoggingTypeInfo::opcode int32_t ___opcode_3; // System.Diagnostics.Tracing.EventTags System.Diagnostics.Tracing.TraceLoggingTypeInfo::tags int32_t ___tags_4; // System.Type System.Diagnostics.Tracing.TraceLoggingTypeInfo::dataType Type_t * ___dataType_5; public: inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F, ___name_0)); } inline String_t* get_name_0() const { return ___name_0; } inline String_t** get_address_of_name_0() { return &___name_0; } inline void set_name_0(String_t* value) { ___name_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___name_0), (void*)value); } inline static int32_t get_offset_of_keywords_1() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F, ___keywords_1)); } inline int64_t get_keywords_1() const { return ___keywords_1; } inline int64_t* get_address_of_keywords_1() { return &___keywords_1; } inline void set_keywords_1(int64_t value) { ___keywords_1 = value; } inline static int32_t get_offset_of_level_2() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F, ___level_2)); } inline int32_t get_level_2() const { return ___level_2; } inline int32_t* get_address_of_level_2() { return &___level_2; } inline void set_level_2(int32_t value) { ___level_2 = value; } inline static int32_t get_offset_of_opcode_3() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F, ___opcode_3)); } inline int32_t get_opcode_3() const { return ___opcode_3; } inline int32_t* get_address_of_opcode_3() { return &___opcode_3; } inline void set_opcode_3(int32_t value) { ___opcode_3 = value; } inline static int32_t get_offset_of_tags_4() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F, ___tags_4)); } inline int32_t get_tags_4() const { return ___tags_4; } inline int32_t* get_address_of_tags_4() { return &___tags_4; } inline void set_tags_4(int32_t value) { ___tags_4 = value; } inline static int32_t get_offset_of_dataType_5() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F, ___dataType_5)); } inline Type_t * get_dataType_5() const { return ___dataType_5; } inline Type_t ** get_address_of_dataType_5() { return &___dataType_5; } inline void set_dataType_5(Type_t * value) { ___dataType_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___dataType_5), (void*)value); } }; // System.Diagnostics.Tracing.TypeAnalysis struct TypeAnalysis_tDF056211469FB207E3865AC52165AE84BF156DFD : public RuntimeObject { public: // System.Diagnostics.Tracing.PropertyAnalysis[] System.Diagnostics.Tracing.TypeAnalysis::properties PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB* ___properties_0; // System.String System.Diagnostics.Tracing.TypeAnalysis::name String_t* ___name_1; // System.Diagnostics.Tracing.EventKeywords System.Diagnostics.Tracing.TypeAnalysis::keywords int64_t ___keywords_2; // System.Diagnostics.Tracing.EventLevel System.Diagnostics.Tracing.TypeAnalysis::level int32_t ___level_3; // System.Diagnostics.Tracing.EventOpcode System.Diagnostics.Tracing.TypeAnalysis::opcode int32_t ___opcode_4; // System.Diagnostics.Tracing.EventTags System.Diagnostics.Tracing.TypeAnalysis::tags int32_t ___tags_5; public: inline static int32_t get_offset_of_properties_0() { return static_cast<int32_t>(offsetof(TypeAnalysis_tDF056211469FB207E3865AC52165AE84BF156DFD, ___properties_0)); } inline PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB* get_properties_0() const { return ___properties_0; } inline PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB** get_address_of_properties_0() { return &___properties_0; } inline void set_properties_0(PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB* value) { ___properties_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___properties_0), (void*)value); } inline static int32_t get_offset_of_name_1() { return static_cast<int32_t>(offsetof(TypeAnalysis_tDF056211469FB207E3865AC52165AE84BF156DFD, ___name_1)); } inline String_t* get_name_1() const { return ___name_1; } inline String_t** get_address_of_name_1() { return &___name_1; } inline void set_name_1(String_t* value) { ___name_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___name_1), (void*)value); } inline static int32_t get_offset_of_keywords_2() { return static_cast<int32_t>(offsetof(TypeAnalysis_tDF056211469FB207E3865AC52165AE84BF156DFD, ___keywords_2)); } inline int64_t get_keywords_2() const { return ___keywords_2; } inline int64_t* get_address_of_keywords_2() { return &___keywords_2; } inline void set_keywords_2(int64_t value) { ___keywords_2 = value; } inline static int32_t get_offset_of_level_3() { return static_cast<int32_t>(offsetof(TypeAnalysis_tDF056211469FB207E3865AC52165AE84BF156DFD, ___level_3)); } inline int32_t get_level_3() const { return ___level_3; } inline int32_t* get_address_of_level_3() { return &___level_3; } inline void set_level_3(int32_t value) { ___level_3 = value; } inline static int32_t get_offset_of_opcode_4() { return static_cast<int32_t>(offsetof(TypeAnalysis_tDF056211469FB207E3865AC52165AE84BF156DFD, ___opcode_4)); } inline int32_t get_opcode_4() const { return ___opcode_4; } inline int32_t* get_address_of_opcode_4() { return &___opcode_4; } inline void set_opcode_4(int32_t value) { ___opcode_4 = value; } inline static int32_t get_offset_of_tags_5() { return static_cast<int32_t>(offsetof(TypeAnalysis_tDF056211469FB207E3865AC52165AE84BF156DFD, ___tags_5)); } inline int32_t get_tags_5() const { return ___tags_5; } inline int32_t* get_address_of_tags_5() { return &___tags_5; } inline void set_tags_5(int32_t value) { ___tags_5 = value; } }; // System.Enum_EnumResult struct EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C { public: // System.Object System.Enum_EnumResult::parsedEnum RuntimeObject * ___parsedEnum_0; // System.Boolean System.Enum_EnumResult::canThrow bool ___canThrow_1; // System.Enum_ParseFailureKind System.Enum_EnumResult::m_failure int32_t ___m_failure_2; // System.String System.Enum_EnumResult::m_failureMessageID String_t* ___m_failureMessageID_3; // System.String System.Enum_EnumResult::m_failureParameter String_t* ___m_failureParameter_4; // System.Object System.Enum_EnumResult::m_failureMessageFormatArgument RuntimeObject * ___m_failureMessageFormatArgument_5; // System.Exception System.Enum_EnumResult::m_innerException Exception_t * ___m_innerException_6; public: inline static int32_t get_offset_of_parsedEnum_0() { return static_cast<int32_t>(offsetof(EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C, ___parsedEnum_0)); } inline RuntimeObject * get_parsedEnum_0() const { return ___parsedEnum_0; } inline RuntimeObject ** get_address_of_parsedEnum_0() { return &___parsedEnum_0; } inline void set_parsedEnum_0(RuntimeObject * value) { ___parsedEnum_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___parsedEnum_0), (void*)value); } inline static int32_t get_offset_of_canThrow_1() { return static_cast<int32_t>(offsetof(EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C, ___canThrow_1)); } inline bool get_canThrow_1() const { return ___canThrow_1; } inline bool* get_address_of_canThrow_1() { return &___canThrow_1; } inline void set_canThrow_1(bool value) { ___canThrow_1 = value; } inline static int32_t get_offset_of_m_failure_2() { return static_cast<int32_t>(offsetof(EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C, ___m_failure_2)); } inline int32_t get_m_failure_2() const { return ___m_failure_2; } inline int32_t* get_address_of_m_failure_2() { return &___m_failure_2; } inline void set_m_failure_2(int32_t value) { ___m_failure_2 = value; } inline static int32_t get_offset_of_m_failureMessageID_3() { return static_cast<int32_t>(offsetof(EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C, ___m_failureMessageID_3)); } inline String_t* get_m_failureMessageID_3() const { return ___m_failureMessageID_3; } inline String_t** get_address_of_m_failureMessageID_3() { return &___m_failureMessageID_3; } inline void set_m_failureMessageID_3(String_t* value) { ___m_failureMessageID_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_failureMessageID_3), (void*)value); } inline static int32_t get_offset_of_m_failureParameter_4() { return static_cast<int32_t>(offsetof(EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C, ___m_failureParameter_4)); } inline String_t* get_m_failureParameter_4() const { return ___m_failureParameter_4; } inline String_t** get_address_of_m_failureParameter_4() { return &___m_failureParameter_4; } inline void set_m_failureParameter_4(String_t* value) { ___m_failureParameter_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_failureParameter_4), (void*)value); } inline static int32_t get_offset_of_m_failureMessageFormatArgument_5() { return static_cast<int32_t>(offsetof(EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C, ___m_failureMessageFormatArgument_5)); } inline RuntimeObject * get_m_failureMessageFormatArgument_5() const { return ___m_failureMessageFormatArgument_5; } inline RuntimeObject ** get_address_of_m_failureMessageFormatArgument_5() { return &___m_failureMessageFormatArgument_5; } inline void set_m_failureMessageFormatArgument_5(RuntimeObject * value) { ___m_failureMessageFormatArgument_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_failureMessageFormatArgument_5), (void*)value); } inline static int32_t get_offset_of_m_innerException_6() { return static_cast<int32_t>(offsetof(EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C, ___m_innerException_6)); } inline Exception_t * get_m_innerException_6() const { return ___m_innerException_6; } inline Exception_t ** get_address_of_m_innerException_6() { return &___m_innerException_6; } inline void set_m_innerException_6(Exception_t * value) { ___m_innerException_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_innerException_6), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Enum/EnumResult struct EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C_marshaled_pinvoke { Il2CppIUnknown* ___parsedEnum_0; int32_t ___canThrow_1; int32_t ___m_failure_2; char* ___m_failureMessageID_3; char* ___m_failureParameter_4; Il2CppIUnknown* ___m_failureMessageFormatArgument_5; Exception_t_marshaled_pinvoke* ___m_innerException_6; }; // Native definition for COM marshalling of System.Enum/EnumResult struct EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C_marshaled_com { Il2CppIUnknown* ___parsedEnum_0; int32_t ___canThrow_1; int32_t ___m_failure_2; Il2CppChar* ___m_failureMessageID_3; Il2CppChar* ___m_failureParameter_4; Il2CppIUnknown* ___m_failureMessageFormatArgument_5; Exception_t_marshaled_com* ___m_innerException_6; }; // System.Globalization.CompareInfo struct CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 : public RuntimeObject { public: // System.String System.Globalization.CompareInfo::m_name String_t* ___m_name_3; // System.String System.Globalization.CompareInfo::m_sortName String_t* ___m_sortName_4; // System.Int32 System.Globalization.CompareInfo::win32LCID int32_t ___win32LCID_5; // System.Int32 System.Globalization.CompareInfo::culture int32_t ___culture_6; // System.Globalization.SortVersion System.Globalization.CompareInfo::m_SortVersion SortVersion_tE7080CE09A0B8CE226F8046C0D1374DD0A0CAE71 * ___m_SortVersion_20; // Mono.Globalization.Unicode.SimpleCollator System.Globalization.CompareInfo::collator SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * ___collator_21; public: inline static int32_t get_offset_of_m_name_3() { return static_cast<int32_t>(offsetof(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1, ___m_name_3)); } inline String_t* get_m_name_3() const { return ___m_name_3; } inline String_t** get_address_of_m_name_3() { return &___m_name_3; } inline void set_m_name_3(String_t* value) { ___m_name_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_name_3), (void*)value); } inline static int32_t get_offset_of_m_sortName_4() { return static_cast<int32_t>(offsetof(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1, ___m_sortName_4)); } inline String_t* get_m_sortName_4() const { return ___m_sortName_4; } inline String_t** get_address_of_m_sortName_4() { return &___m_sortName_4; } inline void set_m_sortName_4(String_t* value) { ___m_sortName_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_sortName_4), (void*)value); } inline static int32_t get_offset_of_win32LCID_5() { return static_cast<int32_t>(offsetof(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1, ___win32LCID_5)); } inline int32_t get_win32LCID_5() const { return ___win32LCID_5; } inline int32_t* get_address_of_win32LCID_5() { return &___win32LCID_5; } inline void set_win32LCID_5(int32_t value) { ___win32LCID_5 = value; } inline static int32_t get_offset_of_culture_6() { return static_cast<int32_t>(offsetof(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1, ___culture_6)); } inline int32_t get_culture_6() const { return ___culture_6; } inline int32_t* get_address_of_culture_6() { return &___culture_6; } inline void set_culture_6(int32_t value) { ___culture_6 = value; } inline static int32_t get_offset_of_m_SortVersion_20() { return static_cast<int32_t>(offsetof(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1, ___m_SortVersion_20)); } inline SortVersion_tE7080CE09A0B8CE226F8046C0D1374DD0A0CAE71 * get_m_SortVersion_20() const { return ___m_SortVersion_20; } inline SortVersion_tE7080CE09A0B8CE226F8046C0D1374DD0A0CAE71 ** get_address_of_m_SortVersion_20() { return &___m_SortVersion_20; } inline void set_m_SortVersion_20(SortVersion_tE7080CE09A0B8CE226F8046C0D1374DD0A0CAE71 * value) { ___m_SortVersion_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_SortVersion_20), (void*)value); } inline static int32_t get_offset_of_collator_21() { return static_cast<int32_t>(offsetof(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1, ___collator_21)); } inline SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * get_collator_21() const { return ___collator_21; } inline SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 ** get_address_of_collator_21() { return &___collator_21; } inline void set_collator_21(SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * value) { ___collator_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___collator_21), (void*)value); } }; struct CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_StaticFields { public: // System.Collections.Generic.Dictionary`2<System.String,Mono.Globalization.Unicode.SimpleCollator> System.Globalization.CompareInfo::collators Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 * ___collators_22; // System.Boolean System.Globalization.CompareInfo::managedCollation bool ___managedCollation_23; // System.Boolean System.Globalization.CompareInfo::managedCollationChecked bool ___managedCollationChecked_24; public: inline static int32_t get_offset_of_collators_22() { return static_cast<int32_t>(offsetof(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_StaticFields, ___collators_22)); } inline Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 * get_collators_22() const { return ___collators_22; } inline Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 ** get_address_of_collators_22() { return &___collators_22; } inline void set_collators_22(Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 * value) { ___collators_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___collators_22), (void*)value); } inline static int32_t get_offset_of_managedCollation_23() { return static_cast<int32_t>(offsetof(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_StaticFields, ___managedCollation_23)); } inline bool get_managedCollation_23() const { return ___managedCollation_23; } inline bool* get_address_of_managedCollation_23() { return &___managedCollation_23; } inline void set_managedCollation_23(bool value) { ___managedCollation_23 = value; } inline static int32_t get_offset_of_managedCollationChecked_24() { return static_cast<int32_t>(offsetof(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_StaticFields, ___managedCollationChecked_24)); } inline bool get_managedCollationChecked_24() const { return ___managedCollationChecked_24; } inline bool* get_address_of_managedCollationChecked_24() { return &___managedCollationChecked_24; } inline void set_managedCollationChecked_24(bool value) { ___managedCollationChecked_24 = value; } }; // System.Globalization.NumberFormatInfo struct NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 : public RuntimeObject { public: // System.Int32[] System.Globalization.NumberFormatInfo::numberGroupSizes Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___numberGroupSizes_1; // System.Int32[] System.Globalization.NumberFormatInfo::currencyGroupSizes Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___currencyGroupSizes_2; // System.Int32[] System.Globalization.NumberFormatInfo::percentGroupSizes Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___percentGroupSizes_3; // System.String System.Globalization.NumberFormatInfo::positiveSign String_t* ___positiveSign_4; // System.String System.Globalization.NumberFormatInfo::negativeSign String_t* ___negativeSign_5; // System.String System.Globalization.NumberFormatInfo::numberDecimalSeparator String_t* ___numberDecimalSeparator_6; // System.String System.Globalization.NumberFormatInfo::numberGroupSeparator String_t* ___numberGroupSeparator_7; // System.String System.Globalization.NumberFormatInfo::currencyGroupSeparator String_t* ___currencyGroupSeparator_8; // System.String System.Globalization.NumberFormatInfo::currencyDecimalSeparator String_t* ___currencyDecimalSeparator_9; // System.String System.Globalization.NumberFormatInfo::currencySymbol String_t* ___currencySymbol_10; // System.String System.Globalization.NumberFormatInfo::ansiCurrencySymbol String_t* ___ansiCurrencySymbol_11; // System.String System.Globalization.NumberFormatInfo::nanSymbol String_t* ___nanSymbol_12; // System.String System.Globalization.NumberFormatInfo::positiveInfinitySymbol String_t* ___positiveInfinitySymbol_13; // System.String System.Globalization.NumberFormatInfo::negativeInfinitySymbol String_t* ___negativeInfinitySymbol_14; // System.String System.Globalization.NumberFormatInfo::percentDecimalSeparator String_t* ___percentDecimalSeparator_15; // System.String System.Globalization.NumberFormatInfo::percentGroupSeparator String_t* ___percentGroupSeparator_16; // System.String System.Globalization.NumberFormatInfo::percentSymbol String_t* ___percentSymbol_17; // System.String System.Globalization.NumberFormatInfo::perMilleSymbol String_t* ___perMilleSymbol_18; // System.String[] System.Globalization.NumberFormatInfo::nativeDigits StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___nativeDigits_19; // System.Int32 System.Globalization.NumberFormatInfo::m_dataItem int32_t ___m_dataItem_20; // System.Int32 System.Globalization.NumberFormatInfo::numberDecimalDigits int32_t ___numberDecimalDigits_21; // System.Int32 System.Globalization.NumberFormatInfo::currencyDecimalDigits int32_t ___currencyDecimalDigits_22; // System.Int32 System.Globalization.NumberFormatInfo::currencyPositivePattern int32_t ___currencyPositivePattern_23; // System.Int32 System.Globalization.NumberFormatInfo::currencyNegativePattern int32_t ___currencyNegativePattern_24; // System.Int32 System.Globalization.NumberFormatInfo::numberNegativePattern int32_t ___numberNegativePattern_25; // System.Int32 System.Globalization.NumberFormatInfo::percentPositivePattern int32_t ___percentPositivePattern_26; // System.Int32 System.Globalization.NumberFormatInfo::percentNegativePattern int32_t ___percentNegativePattern_27; // System.Int32 System.Globalization.NumberFormatInfo::percentDecimalDigits int32_t ___percentDecimalDigits_28; // System.Int32 System.Globalization.NumberFormatInfo::digitSubstitution int32_t ___digitSubstitution_29; // System.Boolean System.Globalization.NumberFormatInfo::isReadOnly bool ___isReadOnly_30; // System.Boolean System.Globalization.NumberFormatInfo::m_useUserOverride bool ___m_useUserOverride_31; // System.Boolean System.Globalization.NumberFormatInfo::m_isInvariant bool ___m_isInvariant_32; // System.Boolean System.Globalization.NumberFormatInfo::validForParseAsNumber bool ___validForParseAsNumber_33; // System.Boolean System.Globalization.NumberFormatInfo::validForParseAsCurrency bool ___validForParseAsCurrency_34; public: inline static int32_t get_offset_of_numberGroupSizes_1() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___numberGroupSizes_1)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_numberGroupSizes_1() const { return ___numberGroupSizes_1; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_numberGroupSizes_1() { return &___numberGroupSizes_1; } inline void set_numberGroupSizes_1(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___numberGroupSizes_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___numberGroupSizes_1), (void*)value); } inline static int32_t get_offset_of_currencyGroupSizes_2() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencyGroupSizes_2)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_currencyGroupSizes_2() const { return ___currencyGroupSizes_2; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_currencyGroupSizes_2() { return &___currencyGroupSizes_2; } inline void set_currencyGroupSizes_2(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___currencyGroupSizes_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___currencyGroupSizes_2), (void*)value); } inline static int32_t get_offset_of_percentGroupSizes_3() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentGroupSizes_3)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_percentGroupSizes_3() const { return ___percentGroupSizes_3; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_percentGroupSizes_3() { return &___percentGroupSizes_3; } inline void set_percentGroupSizes_3(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___percentGroupSizes_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___percentGroupSizes_3), (void*)value); } inline static int32_t get_offset_of_positiveSign_4() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___positiveSign_4)); } inline String_t* get_positiveSign_4() const { return ___positiveSign_4; } inline String_t** get_address_of_positiveSign_4() { return &___positiveSign_4; } inline void set_positiveSign_4(String_t* value) { ___positiveSign_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___positiveSign_4), (void*)value); } inline static int32_t get_offset_of_negativeSign_5() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___negativeSign_5)); } inline String_t* get_negativeSign_5() const { return ___negativeSign_5; } inline String_t** get_address_of_negativeSign_5() { return &___negativeSign_5; } inline void set_negativeSign_5(String_t* value) { ___negativeSign_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___negativeSign_5), (void*)value); } inline static int32_t get_offset_of_numberDecimalSeparator_6() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___numberDecimalSeparator_6)); } inline String_t* get_numberDecimalSeparator_6() const { return ___numberDecimalSeparator_6; } inline String_t** get_address_of_numberDecimalSeparator_6() { return &___numberDecimalSeparator_6; } inline void set_numberDecimalSeparator_6(String_t* value) { ___numberDecimalSeparator_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___numberDecimalSeparator_6), (void*)value); } inline static int32_t get_offset_of_numberGroupSeparator_7() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___numberGroupSeparator_7)); } inline String_t* get_numberGroupSeparator_7() const { return ___numberGroupSeparator_7; } inline String_t** get_address_of_numberGroupSeparator_7() { return &___numberGroupSeparator_7; } inline void set_numberGroupSeparator_7(String_t* value) { ___numberGroupSeparator_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___numberGroupSeparator_7), (void*)value); } inline static int32_t get_offset_of_currencyGroupSeparator_8() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencyGroupSeparator_8)); } inline String_t* get_currencyGroupSeparator_8() const { return ___currencyGroupSeparator_8; } inline String_t** get_address_of_currencyGroupSeparator_8() { return &___currencyGroupSeparator_8; } inline void set_currencyGroupSeparator_8(String_t* value) { ___currencyGroupSeparator_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___currencyGroupSeparator_8), (void*)value); } inline static int32_t get_offset_of_currencyDecimalSeparator_9() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencyDecimalSeparator_9)); } inline String_t* get_currencyDecimalSeparator_9() const { return ___currencyDecimalSeparator_9; } inline String_t** get_address_of_currencyDecimalSeparator_9() { return &___currencyDecimalSeparator_9; } inline void set_currencyDecimalSeparator_9(String_t* value) { ___currencyDecimalSeparator_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___currencyDecimalSeparator_9), (void*)value); } inline static int32_t get_offset_of_currencySymbol_10() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencySymbol_10)); } inline String_t* get_currencySymbol_10() const { return ___currencySymbol_10; } inline String_t** get_address_of_currencySymbol_10() { return &___currencySymbol_10; } inline void set_currencySymbol_10(String_t* value) { ___currencySymbol_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___currencySymbol_10), (void*)value); } inline static int32_t get_offset_of_ansiCurrencySymbol_11() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___ansiCurrencySymbol_11)); } inline String_t* get_ansiCurrencySymbol_11() const { return ___ansiCurrencySymbol_11; } inline String_t** get_address_of_ansiCurrencySymbol_11() { return &___ansiCurrencySymbol_11; } inline void set_ansiCurrencySymbol_11(String_t* value) { ___ansiCurrencySymbol_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___ansiCurrencySymbol_11), (void*)value); } inline static int32_t get_offset_of_nanSymbol_12() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___nanSymbol_12)); } inline String_t* get_nanSymbol_12() const { return ___nanSymbol_12; } inline String_t** get_address_of_nanSymbol_12() { return &___nanSymbol_12; } inline void set_nanSymbol_12(String_t* value) { ___nanSymbol_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___nanSymbol_12), (void*)value); } inline static int32_t get_offset_of_positiveInfinitySymbol_13() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___positiveInfinitySymbol_13)); } inline String_t* get_positiveInfinitySymbol_13() const { return ___positiveInfinitySymbol_13; } inline String_t** get_address_of_positiveInfinitySymbol_13() { return &___positiveInfinitySymbol_13; } inline void set_positiveInfinitySymbol_13(String_t* value) { ___positiveInfinitySymbol_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___positiveInfinitySymbol_13), (void*)value); } inline static int32_t get_offset_of_negativeInfinitySymbol_14() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___negativeInfinitySymbol_14)); } inline String_t* get_negativeInfinitySymbol_14() const { return ___negativeInfinitySymbol_14; } inline String_t** get_address_of_negativeInfinitySymbol_14() { return &___negativeInfinitySymbol_14; } inline void set_negativeInfinitySymbol_14(String_t* value) { ___negativeInfinitySymbol_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___negativeInfinitySymbol_14), (void*)value); } inline static int32_t get_offset_of_percentDecimalSeparator_15() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentDecimalSeparator_15)); } inline String_t* get_percentDecimalSeparator_15() const { return ___percentDecimalSeparator_15; } inline String_t** get_address_of_percentDecimalSeparator_15() { return &___percentDecimalSeparator_15; } inline void set_percentDecimalSeparator_15(String_t* value) { ___percentDecimalSeparator_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___percentDecimalSeparator_15), (void*)value); } inline static int32_t get_offset_of_percentGroupSeparator_16() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentGroupSeparator_16)); } inline String_t* get_percentGroupSeparator_16() const { return ___percentGroupSeparator_16; } inline String_t** get_address_of_percentGroupSeparator_16() { return &___percentGroupSeparator_16; } inline void set_percentGroupSeparator_16(String_t* value) { ___percentGroupSeparator_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___percentGroupSeparator_16), (void*)value); } inline static int32_t get_offset_of_percentSymbol_17() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentSymbol_17)); } inline String_t* get_percentSymbol_17() const { return ___percentSymbol_17; } inline String_t** get_address_of_percentSymbol_17() { return &___percentSymbol_17; } inline void set_percentSymbol_17(String_t* value) { ___percentSymbol_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___percentSymbol_17), (void*)value); } inline static int32_t get_offset_of_perMilleSymbol_18() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___perMilleSymbol_18)); } inline String_t* get_perMilleSymbol_18() const { return ___perMilleSymbol_18; } inline String_t** get_address_of_perMilleSymbol_18() { return &___perMilleSymbol_18; } inline void set_perMilleSymbol_18(String_t* value) { ___perMilleSymbol_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___perMilleSymbol_18), (void*)value); } inline static int32_t get_offset_of_nativeDigits_19() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___nativeDigits_19)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_nativeDigits_19() const { return ___nativeDigits_19; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_nativeDigits_19() { return &___nativeDigits_19; } inline void set_nativeDigits_19(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___nativeDigits_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___nativeDigits_19), (void*)value); } inline static int32_t get_offset_of_m_dataItem_20() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___m_dataItem_20)); } inline int32_t get_m_dataItem_20() const { return ___m_dataItem_20; } inline int32_t* get_address_of_m_dataItem_20() { return &___m_dataItem_20; } inline void set_m_dataItem_20(int32_t value) { ___m_dataItem_20 = value; } inline static int32_t get_offset_of_numberDecimalDigits_21() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___numberDecimalDigits_21)); } inline int32_t get_numberDecimalDigits_21() const { return ___numberDecimalDigits_21; } inline int32_t* get_address_of_numberDecimalDigits_21() { return &___numberDecimalDigits_21; } inline void set_numberDecimalDigits_21(int32_t value) { ___numberDecimalDigits_21 = value; } inline static int32_t get_offset_of_currencyDecimalDigits_22() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencyDecimalDigits_22)); } inline int32_t get_currencyDecimalDigits_22() const { return ___currencyDecimalDigits_22; } inline int32_t* get_address_of_currencyDecimalDigits_22() { return &___currencyDecimalDigits_22; } inline void set_currencyDecimalDigits_22(int32_t value) { ___currencyDecimalDigits_22 = value; } inline static int32_t get_offset_of_currencyPositivePattern_23() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencyPositivePattern_23)); } inline int32_t get_currencyPositivePattern_23() const { return ___currencyPositivePattern_23; } inline int32_t* get_address_of_currencyPositivePattern_23() { return &___currencyPositivePattern_23; } inline void set_currencyPositivePattern_23(int32_t value) { ___currencyPositivePattern_23 = value; } inline static int32_t get_offset_of_currencyNegativePattern_24() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencyNegativePattern_24)); } inline int32_t get_currencyNegativePattern_24() const { return ___currencyNegativePattern_24; } inline int32_t* get_address_of_currencyNegativePattern_24() { return &___currencyNegativePattern_24; } inline void set_currencyNegativePattern_24(int32_t value) { ___currencyNegativePattern_24 = value; } inline static int32_t get_offset_of_numberNegativePattern_25() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___numberNegativePattern_25)); } inline int32_t get_numberNegativePattern_25() const { return ___numberNegativePattern_25; } inline int32_t* get_address_of_numberNegativePattern_25() { return &___numberNegativePattern_25; } inline void set_numberNegativePattern_25(int32_t value) { ___numberNegativePattern_25 = value; } inline static int32_t get_offset_of_percentPositivePattern_26() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentPositivePattern_26)); } inline int32_t get_percentPositivePattern_26() const { return ___percentPositivePattern_26; } inline int32_t* get_address_of_percentPositivePattern_26() { return &___percentPositivePattern_26; } inline void set_percentPositivePattern_26(int32_t value) { ___percentPositivePattern_26 = value; } inline static int32_t get_offset_of_percentNegativePattern_27() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentNegativePattern_27)); } inline int32_t get_percentNegativePattern_27() const { return ___percentNegativePattern_27; } inline int32_t* get_address_of_percentNegativePattern_27() { return &___percentNegativePattern_27; } inline void set_percentNegativePattern_27(int32_t value) { ___percentNegativePattern_27 = value; } inline static int32_t get_offset_of_percentDecimalDigits_28() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentDecimalDigits_28)); } inline int32_t get_percentDecimalDigits_28() const { return ___percentDecimalDigits_28; } inline int32_t* get_address_of_percentDecimalDigits_28() { return &___percentDecimalDigits_28; } inline void set_percentDecimalDigits_28(int32_t value) { ___percentDecimalDigits_28 = value; } inline static int32_t get_offset_of_digitSubstitution_29() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___digitSubstitution_29)); } inline int32_t get_digitSubstitution_29() const { return ___digitSubstitution_29; } inline int32_t* get_address_of_digitSubstitution_29() { return &___digitSubstitution_29; } inline void set_digitSubstitution_29(int32_t value) { ___digitSubstitution_29 = value; } inline static int32_t get_offset_of_isReadOnly_30() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___isReadOnly_30)); } inline bool get_isReadOnly_30() const { return ___isReadOnly_30; } inline bool* get_address_of_isReadOnly_30() { return &___isReadOnly_30; } inline void set_isReadOnly_30(bool value) { ___isReadOnly_30 = value; } inline static int32_t get_offset_of_m_useUserOverride_31() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___m_useUserOverride_31)); } inline bool get_m_useUserOverride_31() const { return ___m_useUserOverride_31; } inline bool* get_address_of_m_useUserOverride_31() { return &___m_useUserOverride_31; } inline void set_m_useUserOverride_31(bool value) { ___m_useUserOverride_31 = value; } inline static int32_t get_offset_of_m_isInvariant_32() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___m_isInvariant_32)); } inline bool get_m_isInvariant_32() const { return ___m_isInvariant_32; } inline bool* get_address_of_m_isInvariant_32() { return &___m_isInvariant_32; } inline void set_m_isInvariant_32(bool value) { ___m_isInvariant_32 = value; } inline static int32_t get_offset_of_validForParseAsNumber_33() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___validForParseAsNumber_33)); } inline bool get_validForParseAsNumber_33() const { return ___validForParseAsNumber_33; } inline bool* get_address_of_validForParseAsNumber_33() { return &___validForParseAsNumber_33; } inline void set_validForParseAsNumber_33(bool value) { ___validForParseAsNumber_33 = value; } inline static int32_t get_offset_of_validForParseAsCurrency_34() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___validForParseAsCurrency_34)); } inline bool get_validForParseAsCurrency_34() const { return ___validForParseAsCurrency_34; } inline bool* get_address_of_validForParseAsCurrency_34() { return &___validForParseAsCurrency_34; } inline void set_validForParseAsCurrency_34(bool value) { ___validForParseAsCurrency_34 = value; } }; struct NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8_StaticFields { public: // System.Globalization.NumberFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.NumberFormatInfo::invariantInfo NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___invariantInfo_0; public: inline static int32_t get_offset_of_invariantInfo_0() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8_StaticFields, ___invariantInfo_0)); } inline NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * get_invariantInfo_0() const { return ___invariantInfo_0; } inline NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 ** get_address_of_invariantInfo_0() { return &___invariantInfo_0; } inline void set_invariantInfo_0(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * value) { ___invariantInfo_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___invariantInfo_0), (void*)value); } }; // System.Globalization.SortKey struct SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9 : public RuntimeObject { public: // System.String System.Globalization.SortKey::source String_t* ___source_0; // System.Byte[] System.Globalization.SortKey::key ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___key_1; // System.Globalization.CompareOptions System.Globalization.SortKey::options int32_t ___options_2; // System.Int32 System.Globalization.SortKey::lcid int32_t ___lcid_3; public: inline static int32_t get_offset_of_source_0() { return static_cast<int32_t>(offsetof(SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9, ___source_0)); } inline String_t* get_source_0() const { return ___source_0; } inline String_t** get_address_of_source_0() { return &___source_0; } inline void set_source_0(String_t* value) { ___source_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___source_0), (void*)value); } inline static int32_t get_offset_of_key_1() { return static_cast<int32_t>(offsetof(SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9, ___key_1)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_key_1() const { return ___key_1; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_key_1() { return &___key_1; } inline void set_key_1(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___key_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_1), (void*)value); } inline static int32_t get_offset_of_options_2() { return static_cast<int32_t>(offsetof(SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9, ___options_2)); } inline int32_t get_options_2() const { return ___options_2; } inline int32_t* get_address_of_options_2() { return &___options_2; } inline void set_options_2(int32_t value) { ___options_2 = value; } inline static int32_t get_offset_of_lcid_3() { return static_cast<int32_t>(offsetof(SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9, ___lcid_3)); } inline int32_t get_lcid_3() const { return ___lcid_3; } inline int32_t* get_address_of_lcid_3() { return &___lcid_3; } inline void set_lcid_3(int32_t value) { ___lcid_3 = value; } }; // Native definition for P/Invoke marshalling of System.Globalization.SortKey struct SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9_marshaled_pinvoke { char* ___source_0; Il2CppSafeArray/*NONE*/* ___key_1; int32_t ___options_2; int32_t ___lcid_3; }; // Native definition for COM marshalling of System.Globalization.SortKey struct SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9_marshaled_com { Il2CppChar* ___source_0; Il2CppSafeArray/*NONE*/* ___key_1; int32_t ___options_2; int32_t ___lcid_3; }; // System.MulticastDelegate struct MulticastDelegate_t : public Delegate_t { public: // System.Delegate[] System.MulticastDelegate::delegates DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* ___delegates_11; public: inline static int32_t get_offset_of_delegates_11() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___delegates_11)); } inline DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* get_delegates_11() const { return ___delegates_11; } inline DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86** get_address_of_delegates_11() { return &___delegates_11; } inline void set_delegates_11(DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* value) { ___delegates_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___delegates_11), (void*)value); } }; // Native definition for P/Invoke marshalling of System.MulticastDelegate struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke { Delegate_t_marshaled_pinvoke** ___delegates_11; }; // Native definition for COM marshalling of System.MulticastDelegate struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com { Delegate_t_marshaled_com** ___delegates_11; }; // System.OperatingSystem struct OperatingSystem_tBB05846D5AA6960FFEB42C59E5FE359255C2BE83 : public RuntimeObject { public: // System.PlatformID System.OperatingSystem::_platform int32_t ____platform_0; // System.Version System.OperatingSystem::_version Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * ____version_1; // System.String System.OperatingSystem::_servicePack String_t* ____servicePack_2; public: inline static int32_t get_offset_of__platform_0() { return static_cast<int32_t>(offsetof(OperatingSystem_tBB05846D5AA6960FFEB42C59E5FE359255C2BE83, ____platform_0)); } inline int32_t get__platform_0() const { return ____platform_0; } inline int32_t* get_address_of__platform_0() { return &____platform_0; } inline void set__platform_0(int32_t value) { ____platform_0 = value; } inline static int32_t get_offset_of__version_1() { return static_cast<int32_t>(offsetof(OperatingSystem_tBB05846D5AA6960FFEB42C59E5FE359255C2BE83, ____version_1)); } inline Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * get__version_1() const { return ____version_1; } inline Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD ** get_address_of__version_1() { return &____version_1; } inline void set__version_1(Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * value) { ____version_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____version_1), (void*)value); } inline static int32_t get_offset_of__servicePack_2() { return static_cast<int32_t>(offsetof(OperatingSystem_tBB05846D5AA6960FFEB42C59E5FE359255C2BE83, ____servicePack_2)); } inline String_t* get__servicePack_2() const { return ____servicePack_2; } inline String_t** get_address_of__servicePack_2() { return &____servicePack_2; } inline void set__servicePack_2(String_t* value) { ____servicePack_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____servicePack_2), (void*)value); } }; // System.Reflection.AssemblyName struct AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 : public RuntimeObject { public: // System.String System.Reflection.AssemblyName::name String_t* ___name_0; // System.String System.Reflection.AssemblyName::codebase String_t* ___codebase_1; // System.Int32 System.Reflection.AssemblyName::major int32_t ___major_2; // System.Int32 System.Reflection.AssemblyName::minor int32_t ___minor_3; // System.Int32 System.Reflection.AssemblyName::build int32_t ___build_4; // System.Int32 System.Reflection.AssemblyName::revision int32_t ___revision_5; // System.Globalization.CultureInfo System.Reflection.AssemblyName::cultureinfo CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___cultureinfo_6; // System.Reflection.AssemblyNameFlags System.Reflection.AssemblyName::flags int32_t ___flags_7; // System.Configuration.Assemblies.AssemblyHashAlgorithm System.Reflection.AssemblyName::hashalg int32_t ___hashalg_8; // System.Reflection.StrongNameKeyPair System.Reflection.AssemblyName::keypair StrongNameKeyPair_tD9AA282E59F4526338781AFD862680ED461FCCFD * ___keypair_9; // System.Byte[] System.Reflection.AssemblyName::publicKey ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___publicKey_10; // System.Byte[] System.Reflection.AssemblyName::keyToken ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___keyToken_11; // System.Configuration.Assemblies.AssemblyVersionCompatibility System.Reflection.AssemblyName::versioncompat int32_t ___versioncompat_12; // System.Version System.Reflection.AssemblyName::version Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * ___version_13; // System.Reflection.ProcessorArchitecture System.Reflection.AssemblyName::processor_architecture int32_t ___processor_architecture_14; // System.Reflection.AssemblyContentType System.Reflection.AssemblyName::contentType int32_t ___contentType_15; public: inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___name_0)); } inline String_t* get_name_0() const { return ___name_0; } inline String_t** get_address_of_name_0() { return &___name_0; } inline void set_name_0(String_t* value) { ___name_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___name_0), (void*)value); } inline static int32_t get_offset_of_codebase_1() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___codebase_1)); } inline String_t* get_codebase_1() const { return ___codebase_1; } inline String_t** get_address_of_codebase_1() { return &___codebase_1; } inline void set_codebase_1(String_t* value) { ___codebase_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___codebase_1), (void*)value); } inline static int32_t get_offset_of_major_2() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___major_2)); } inline int32_t get_major_2() const { return ___major_2; } inline int32_t* get_address_of_major_2() { return &___major_2; } inline void set_major_2(int32_t value) { ___major_2 = value; } inline static int32_t get_offset_of_minor_3() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___minor_3)); } inline int32_t get_minor_3() const { return ___minor_3; } inline int32_t* get_address_of_minor_3() { return &___minor_3; } inline void set_minor_3(int32_t value) { ___minor_3 = value; } inline static int32_t get_offset_of_build_4() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___build_4)); } inline int32_t get_build_4() const { return ___build_4; } inline int32_t* get_address_of_build_4() { return &___build_4; } inline void set_build_4(int32_t value) { ___build_4 = value; } inline static int32_t get_offset_of_revision_5() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___revision_5)); } inline int32_t get_revision_5() const { return ___revision_5; } inline int32_t* get_address_of_revision_5() { return &___revision_5; } inline void set_revision_5(int32_t value) { ___revision_5 = value; } inline static int32_t get_offset_of_cultureinfo_6() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___cultureinfo_6)); } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_cultureinfo_6() const { return ___cultureinfo_6; } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_cultureinfo_6() { return &___cultureinfo_6; } inline void set_cultureinfo_6(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value) { ___cultureinfo_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___cultureinfo_6), (void*)value); } inline static int32_t get_offset_of_flags_7() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___flags_7)); } inline int32_t get_flags_7() const { return ___flags_7; } inline int32_t* get_address_of_flags_7() { return &___flags_7; } inline void set_flags_7(int32_t value) { ___flags_7 = value; } inline static int32_t get_offset_of_hashalg_8() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___hashalg_8)); } inline int32_t get_hashalg_8() const { return ___hashalg_8; } inline int32_t* get_address_of_hashalg_8() { return &___hashalg_8; } inline void set_hashalg_8(int32_t value) { ___hashalg_8 = value; } inline static int32_t get_offset_of_keypair_9() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___keypair_9)); } inline StrongNameKeyPair_tD9AA282E59F4526338781AFD862680ED461FCCFD * get_keypair_9() const { return ___keypair_9; } inline StrongNameKeyPair_tD9AA282E59F4526338781AFD862680ED461FCCFD ** get_address_of_keypair_9() { return &___keypair_9; } inline void set_keypair_9(StrongNameKeyPair_tD9AA282E59F4526338781AFD862680ED461FCCFD * value) { ___keypair_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___keypair_9), (void*)value); } inline static int32_t get_offset_of_publicKey_10() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___publicKey_10)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_publicKey_10() const { return ___publicKey_10; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_publicKey_10() { return &___publicKey_10; } inline void set_publicKey_10(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___publicKey_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___publicKey_10), (void*)value); } inline static int32_t get_offset_of_keyToken_11() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___keyToken_11)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_keyToken_11() const { return ___keyToken_11; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_keyToken_11() { return &___keyToken_11; } inline void set_keyToken_11(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___keyToken_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___keyToken_11), (void*)value); } inline static int32_t get_offset_of_versioncompat_12() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___versioncompat_12)); } inline int32_t get_versioncompat_12() const { return ___versioncompat_12; } inline int32_t* get_address_of_versioncompat_12() { return &___versioncompat_12; } inline void set_versioncompat_12(int32_t value) { ___versioncompat_12 = value; } inline static int32_t get_offset_of_version_13() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___version_13)); } inline Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * get_version_13() const { return ___version_13; } inline Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD ** get_address_of_version_13() { return &___version_13; } inline void set_version_13(Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * value) { ___version_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_13), (void*)value); } inline static int32_t get_offset_of_processor_architecture_14() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___processor_architecture_14)); } inline int32_t get_processor_architecture_14() const { return ___processor_architecture_14; } inline int32_t* get_address_of_processor_architecture_14() { return &___processor_architecture_14; } inline void set_processor_architecture_14(int32_t value) { ___processor_architecture_14 = value; } inline static int32_t get_offset_of_contentType_15() { return static_cast<int32_t>(offsetof(AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82, ___contentType_15)); } inline int32_t get_contentType_15() const { return ___contentType_15; } inline int32_t* get_address_of_contentType_15() { return &___contentType_15; } inline void set_contentType_15(int32_t value) { ___contentType_15 = value; } }; // Native definition for P/Invoke marshalling of System.Reflection.AssemblyName struct AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82_marshaled_pinvoke { char* ___name_0; char* ___codebase_1; int32_t ___major_2; int32_t ___minor_3; int32_t ___build_4; int32_t ___revision_5; CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_pinvoke* ___cultureinfo_6; int32_t ___flags_7; int32_t ___hashalg_8; StrongNameKeyPair_tD9AA282E59F4526338781AFD862680ED461FCCFD * ___keypair_9; Il2CppSafeArray/*NONE*/* ___publicKey_10; Il2CppSafeArray/*NONE*/* ___keyToken_11; int32_t ___versioncompat_12; Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * ___version_13; int32_t ___processor_architecture_14; int32_t ___contentType_15; }; // Native definition for COM marshalling of System.Reflection.AssemblyName struct AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82_marshaled_com { Il2CppChar* ___name_0; Il2CppChar* ___codebase_1; int32_t ___major_2; int32_t ___minor_3; int32_t ___build_4; int32_t ___revision_5; CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_com* ___cultureinfo_6; int32_t ___flags_7; int32_t ___hashalg_8; StrongNameKeyPair_tD9AA282E59F4526338781AFD862680ED461FCCFD * ___keypair_9; Il2CppSafeArray/*NONE*/* ___publicKey_10; Il2CppSafeArray/*NONE*/* ___keyToken_11; int32_t ___versioncompat_12; Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * ___version_13; int32_t ___processor_architecture_14; int32_t ___contentType_15; }; // System.Reflection.ParameterInfo struct ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB : public RuntimeObject { public: // System.Type System.Reflection.ParameterInfo::ClassImpl Type_t * ___ClassImpl_0; // System.Object System.Reflection.ParameterInfo::DefaultValueImpl RuntimeObject * ___DefaultValueImpl_1; // System.Reflection.MemberInfo System.Reflection.ParameterInfo::MemberImpl MemberInfo_t * ___MemberImpl_2; // System.String System.Reflection.ParameterInfo::NameImpl String_t* ___NameImpl_3; // System.Int32 System.Reflection.ParameterInfo::PositionImpl int32_t ___PositionImpl_4; // System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::AttrsImpl int32_t ___AttrsImpl_5; // System.Runtime.InteropServices.MarshalAsAttribute System.Reflection.ParameterInfo::marshalAs MarshalAsAttribute_t1F5CB9960D7AD6C3305475C98A397BD0B9C64020 * ___marshalAs_6; public: inline static int32_t get_offset_of_ClassImpl_0() { return static_cast<int32_t>(offsetof(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB, ___ClassImpl_0)); } inline Type_t * get_ClassImpl_0() const { return ___ClassImpl_0; } inline Type_t ** get_address_of_ClassImpl_0() { return &___ClassImpl_0; } inline void set_ClassImpl_0(Type_t * value) { ___ClassImpl_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___ClassImpl_0), (void*)value); } inline static int32_t get_offset_of_DefaultValueImpl_1() { return static_cast<int32_t>(offsetof(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB, ___DefaultValueImpl_1)); } inline RuntimeObject * get_DefaultValueImpl_1() const { return ___DefaultValueImpl_1; } inline RuntimeObject ** get_address_of_DefaultValueImpl_1() { return &___DefaultValueImpl_1; } inline void set_DefaultValueImpl_1(RuntimeObject * value) { ___DefaultValueImpl_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___DefaultValueImpl_1), (void*)value); } inline static int32_t get_offset_of_MemberImpl_2() { return static_cast<int32_t>(offsetof(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB, ___MemberImpl_2)); } inline MemberInfo_t * get_MemberImpl_2() const { return ___MemberImpl_2; } inline MemberInfo_t ** get_address_of_MemberImpl_2() { return &___MemberImpl_2; } inline void set_MemberImpl_2(MemberInfo_t * value) { ___MemberImpl_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___MemberImpl_2), (void*)value); } inline static int32_t get_offset_of_NameImpl_3() { return static_cast<int32_t>(offsetof(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB, ___NameImpl_3)); } inline String_t* get_NameImpl_3() const { return ___NameImpl_3; } inline String_t** get_address_of_NameImpl_3() { return &___NameImpl_3; } inline void set_NameImpl_3(String_t* value) { ___NameImpl_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___NameImpl_3), (void*)value); } inline static int32_t get_offset_of_PositionImpl_4() { return static_cast<int32_t>(offsetof(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB, ___PositionImpl_4)); } inline int32_t get_PositionImpl_4() const { return ___PositionImpl_4; } inline int32_t* get_address_of_PositionImpl_4() { return &___PositionImpl_4; } inline void set_PositionImpl_4(int32_t value) { ___PositionImpl_4 = value; } inline static int32_t get_offset_of_AttrsImpl_5() { return static_cast<int32_t>(offsetof(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB, ___AttrsImpl_5)); } inline int32_t get_AttrsImpl_5() const { return ___AttrsImpl_5; } inline int32_t* get_address_of_AttrsImpl_5() { return &___AttrsImpl_5; } inline void set_AttrsImpl_5(int32_t value) { ___AttrsImpl_5 = value; } inline static int32_t get_offset_of_marshalAs_6() { return static_cast<int32_t>(offsetof(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB, ___marshalAs_6)); } inline MarshalAsAttribute_t1F5CB9960D7AD6C3305475C98A397BD0B9C64020 * get_marshalAs_6() const { return ___marshalAs_6; } inline MarshalAsAttribute_t1F5CB9960D7AD6C3305475C98A397BD0B9C64020 ** get_address_of_marshalAs_6() { return &___marshalAs_6; } inline void set_marshalAs_6(MarshalAsAttribute_t1F5CB9960D7AD6C3305475C98A397BD0B9C64020 * value) { ___marshalAs_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___marshalAs_6), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Reflection.ParameterInfo struct ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_pinvoke { Type_t * ___ClassImpl_0; Il2CppIUnknown* ___DefaultValueImpl_1; MemberInfo_t * ___MemberImpl_2; char* ___NameImpl_3; int32_t ___PositionImpl_4; int32_t ___AttrsImpl_5; MarshalAsAttribute_t1F5CB9960D7AD6C3305475C98A397BD0B9C64020 * ___marshalAs_6; }; // Native definition for COM marshalling of System.Reflection.ParameterInfo struct ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_com { Type_t * ___ClassImpl_0; Il2CppIUnknown* ___DefaultValueImpl_1; MemberInfo_t * ___MemberImpl_2; Il2CppChar* ___NameImpl_3; int32_t ___PositionImpl_4; int32_t ___AttrsImpl_5; MarshalAsAttribute_t1F5CB9960D7AD6C3305475C98A397BD0B9C64020 * ___marshalAs_6; }; // System.Reflection.RuntimeAssembly struct RuntimeAssembly_t5EE9CD749D82345AE5635B9665665C31A3308EB1 : public Assembly_t { public: public: }; // System.Resources.ResourceManager struct ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF : public RuntimeObject { public: // System.String System.Resources.ResourceManager::BaseNameField String_t* ___BaseNameField_0; // System.Collections.Hashtable System.Resources.ResourceManager::ResourceSets Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___ResourceSets_1; // System.Collections.Generic.Dictionary`2<System.String,System.Resources.ResourceSet> System.Resources.ResourceManager::_resourceSets Dictionary_2_tDE0FFCE2C110EEFB68C37CEA54DBCA577AFC1CE6 * ____resourceSets_2; // System.String System.Resources.ResourceManager::moduleDir String_t* ___moduleDir_3; // System.Reflection.Assembly System.Resources.ResourceManager::MainAssembly Assembly_t * ___MainAssembly_4; // System.Type System.Resources.ResourceManager::_locationInfo Type_t * ____locationInfo_5; // System.Type System.Resources.ResourceManager::_userResourceSet Type_t * ____userResourceSet_6; // System.Globalization.CultureInfo System.Resources.ResourceManager::_neutralResourcesCulture CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ____neutralResourcesCulture_7; // System.Resources.ResourceManager_CultureNameResourceSetPair System.Resources.ResourceManager::_lastUsedResourceCache CultureNameResourceSetPair_t77328DA298FCF741DE21CC5B3E19F160D7060074 * ____lastUsedResourceCache_8; // System.Boolean System.Resources.ResourceManager::_ignoreCase bool ____ignoreCase_9; // System.Boolean System.Resources.ResourceManager::UseManifest bool ___UseManifest_10; // System.Boolean System.Resources.ResourceManager::UseSatelliteAssem bool ___UseSatelliteAssem_11; // System.Resources.UltimateResourceFallbackLocation System.Resources.ResourceManager::_fallbackLoc int32_t ____fallbackLoc_12; // System.Version System.Resources.ResourceManager::_satelliteContractVersion Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * ____satelliteContractVersion_13; // System.Boolean System.Resources.ResourceManager::_lookedForSatelliteContractVersion bool ____lookedForSatelliteContractVersion_14; // System.Reflection.Assembly System.Resources.ResourceManager::_callingAssembly Assembly_t * ____callingAssembly_15; // System.Reflection.RuntimeAssembly System.Resources.ResourceManager::m_callingAssembly RuntimeAssembly_t5EE9CD749D82345AE5635B9665665C31A3308EB1 * ___m_callingAssembly_16; // System.Resources.IResourceGroveler System.Resources.ResourceManager::resourceGroveler RuntimeObject* ___resourceGroveler_17; public: inline static int32_t get_offset_of_BaseNameField_0() { return static_cast<int32_t>(offsetof(ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF, ___BaseNameField_0)); } inline String_t* get_BaseNameField_0() const { return ___BaseNameField_0; } inline String_t** get_address_of_BaseNameField_0() { return &___BaseNameField_0; } inline void set_BaseNameField_0(String_t* value) { ___BaseNameField_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___BaseNameField_0), (void*)value); } inline static int32_t get_offset_of_ResourceSets_1() { return static_cast<int32_t>(offsetof(ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF, ___ResourceSets_1)); } inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_ResourceSets_1() const { return ___ResourceSets_1; } inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_ResourceSets_1() { return &___ResourceSets_1; } inline void set_ResourceSets_1(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value) { ___ResourceSets_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___ResourceSets_1), (void*)value); } inline static int32_t get_offset_of__resourceSets_2() { return static_cast<int32_t>(offsetof(ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF, ____resourceSets_2)); } inline Dictionary_2_tDE0FFCE2C110EEFB68C37CEA54DBCA577AFC1CE6 * get__resourceSets_2() const { return ____resourceSets_2; } inline Dictionary_2_tDE0FFCE2C110EEFB68C37CEA54DBCA577AFC1CE6 ** get_address_of__resourceSets_2() { return &____resourceSets_2; } inline void set__resourceSets_2(Dictionary_2_tDE0FFCE2C110EEFB68C37CEA54DBCA577AFC1CE6 * value) { ____resourceSets_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____resourceSets_2), (void*)value); } inline static int32_t get_offset_of_moduleDir_3() { return static_cast<int32_t>(offsetof(ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF, ___moduleDir_3)); } inline String_t* get_moduleDir_3() const { return ___moduleDir_3; } inline String_t** get_address_of_moduleDir_3() { return &___moduleDir_3; } inline void set_moduleDir_3(String_t* value) { ___moduleDir_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___moduleDir_3), (void*)value); } inline static int32_t get_offset_of_MainAssembly_4() { return static_cast<int32_t>(offsetof(ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF, ___MainAssembly_4)); } inline Assembly_t * get_MainAssembly_4() const { return ___MainAssembly_4; } inline Assembly_t ** get_address_of_MainAssembly_4() { return &___MainAssembly_4; } inline void set_MainAssembly_4(Assembly_t * value) { ___MainAssembly_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___MainAssembly_4), (void*)value); } inline static int32_t get_offset_of__locationInfo_5() { return static_cast<int32_t>(offsetof(ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF, ____locationInfo_5)); } inline Type_t * get__locationInfo_5() const { return ____locationInfo_5; } inline Type_t ** get_address_of__locationInfo_5() { return &____locationInfo_5; } inline void set__locationInfo_5(Type_t * value) { ____locationInfo_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____locationInfo_5), (void*)value); } inline static int32_t get_offset_of__userResourceSet_6() { return static_cast<int32_t>(offsetof(ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF, ____userResourceSet_6)); } inline Type_t * get__userResourceSet_6() const { return ____userResourceSet_6; } inline Type_t ** get_address_of__userResourceSet_6() { return &____userResourceSet_6; } inline void set__userResourceSet_6(Type_t * value) { ____userResourceSet_6 = value; Il2CppCodeGenWriteBarrier((void**)(&____userResourceSet_6), (void*)value); } inline static int32_t get_offset_of__neutralResourcesCulture_7() { return static_cast<int32_t>(offsetof(ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF, ____neutralResourcesCulture_7)); } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get__neutralResourcesCulture_7() const { return ____neutralResourcesCulture_7; } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of__neutralResourcesCulture_7() { return &____neutralResourcesCulture_7; } inline void set__neutralResourcesCulture_7(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value) { ____neutralResourcesCulture_7 = value; Il2CppCodeGenWriteBarrier((void**)(&____neutralResourcesCulture_7), (void*)value); } inline static int32_t get_offset_of__lastUsedResourceCache_8() { return static_cast<int32_t>(offsetof(ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF, ____lastUsedResourceCache_8)); } inline CultureNameResourceSetPair_t77328DA298FCF741DE21CC5B3E19F160D7060074 * get__lastUsedResourceCache_8() const { return ____lastUsedResourceCache_8; } inline CultureNameResourceSetPair_t77328DA298FCF741DE21CC5B3E19F160D7060074 ** get_address_of__lastUsedResourceCache_8() { return &____lastUsedResourceCache_8; } inline void set__lastUsedResourceCache_8(CultureNameResourceSetPair_t77328DA298FCF741DE21CC5B3E19F160D7060074 * value) { ____lastUsedResourceCache_8 = value; Il2CppCodeGenWriteBarrier((void**)(&____lastUsedResourceCache_8), (void*)value); } inline static int32_t get_offset_of__ignoreCase_9() { return static_cast<int32_t>(offsetof(ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF, ____ignoreCase_9)); } inline bool get__ignoreCase_9() const { return ____ignoreCase_9; } inline bool* get_address_of__ignoreCase_9() { return &____ignoreCase_9; } inline void set__ignoreCase_9(bool value) { ____ignoreCase_9 = value; } inline static int32_t get_offset_of_UseManifest_10() { return static_cast<int32_t>(offsetof(ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF, ___UseManifest_10)); } inline bool get_UseManifest_10() const { return ___UseManifest_10; } inline bool* get_address_of_UseManifest_10() { return &___UseManifest_10; } inline void set_UseManifest_10(bool value) { ___UseManifest_10 = value; } inline static int32_t get_offset_of_UseSatelliteAssem_11() { return static_cast<int32_t>(offsetof(ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF, ___UseSatelliteAssem_11)); } inline bool get_UseSatelliteAssem_11() const { return ___UseSatelliteAssem_11; } inline bool* get_address_of_UseSatelliteAssem_11() { return &___UseSatelliteAssem_11; } inline void set_UseSatelliteAssem_11(bool value) { ___UseSatelliteAssem_11 = value; } inline static int32_t get_offset_of__fallbackLoc_12() { return static_cast<int32_t>(offsetof(ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF, ____fallbackLoc_12)); } inline int32_t get__fallbackLoc_12() const { return ____fallbackLoc_12; } inline int32_t* get_address_of__fallbackLoc_12() { return &____fallbackLoc_12; } inline void set__fallbackLoc_12(int32_t value) { ____fallbackLoc_12 = value; } inline static int32_t get_offset_of__satelliteContractVersion_13() { return static_cast<int32_t>(offsetof(ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF, ____satelliteContractVersion_13)); } inline Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * get__satelliteContractVersion_13() const { return ____satelliteContractVersion_13; } inline Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD ** get_address_of__satelliteContractVersion_13() { return &____satelliteContractVersion_13; } inline void set__satelliteContractVersion_13(Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * value) { ____satelliteContractVersion_13 = value; Il2CppCodeGenWriteBarrier((void**)(&____satelliteContractVersion_13), (void*)value); } inline static int32_t get_offset_of__lookedForSatelliteContractVersion_14() { return static_cast<int32_t>(offsetof(ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF, ____lookedForSatelliteContractVersion_14)); } inline bool get__lookedForSatelliteContractVersion_14() const { return ____lookedForSatelliteContractVersion_14; } inline bool* get_address_of__lookedForSatelliteContractVersion_14() { return &____lookedForSatelliteContractVersion_14; } inline void set__lookedForSatelliteContractVersion_14(bool value) { ____lookedForSatelliteContractVersion_14 = value; } inline static int32_t get_offset_of__callingAssembly_15() { return static_cast<int32_t>(offsetof(ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF, ____callingAssembly_15)); } inline Assembly_t * get__callingAssembly_15() const { return ____callingAssembly_15; } inline Assembly_t ** get_address_of__callingAssembly_15() { return &____callingAssembly_15; } inline void set__callingAssembly_15(Assembly_t * value) { ____callingAssembly_15 = value; Il2CppCodeGenWriteBarrier((void**)(&____callingAssembly_15), (void*)value); } inline static int32_t get_offset_of_m_callingAssembly_16() { return static_cast<int32_t>(offsetof(ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF, ___m_callingAssembly_16)); } inline RuntimeAssembly_t5EE9CD749D82345AE5635B9665665C31A3308EB1 * get_m_callingAssembly_16() const { return ___m_callingAssembly_16; } inline RuntimeAssembly_t5EE9CD749D82345AE5635B9665665C31A3308EB1 ** get_address_of_m_callingAssembly_16() { return &___m_callingAssembly_16; } inline void set_m_callingAssembly_16(RuntimeAssembly_t5EE9CD749D82345AE5635B9665665C31A3308EB1 * value) { ___m_callingAssembly_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_callingAssembly_16), (void*)value); } inline static int32_t get_offset_of_resourceGroveler_17() { return static_cast<int32_t>(offsetof(ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF, ___resourceGroveler_17)); } inline RuntimeObject* get_resourceGroveler_17() const { return ___resourceGroveler_17; } inline RuntimeObject** get_address_of_resourceGroveler_17() { return &___resourceGroveler_17; } inline void set_resourceGroveler_17(RuntimeObject* value) { ___resourceGroveler_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___resourceGroveler_17), (void*)value); } }; struct ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF_StaticFields { public: // System.Int32 System.Resources.ResourceManager::MagicNumber int32_t ___MagicNumber_18; // System.Int32 System.Resources.ResourceManager::HeaderVersionNumber int32_t ___HeaderVersionNumber_19; // System.Type System.Resources.ResourceManager::_minResourceSet Type_t * ____minResourceSet_20; // System.String System.Resources.ResourceManager::ResReaderTypeName String_t* ___ResReaderTypeName_21; // System.String System.Resources.ResourceManager::ResSetTypeName String_t* ___ResSetTypeName_22; // System.String System.Resources.ResourceManager::MscorlibName String_t* ___MscorlibName_23; // System.Int32 System.Resources.ResourceManager::DEBUG int32_t ___DEBUG_24; public: inline static int32_t get_offset_of_MagicNumber_18() { return static_cast<int32_t>(offsetof(ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF_StaticFields, ___MagicNumber_18)); } inline int32_t get_MagicNumber_18() const { return ___MagicNumber_18; } inline int32_t* get_address_of_MagicNumber_18() { return &___MagicNumber_18; } inline void set_MagicNumber_18(int32_t value) { ___MagicNumber_18 = value; } inline static int32_t get_offset_of_HeaderVersionNumber_19() { return static_cast<int32_t>(offsetof(ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF_StaticFields, ___HeaderVersionNumber_19)); } inline int32_t get_HeaderVersionNumber_19() const { return ___HeaderVersionNumber_19; } inline int32_t* get_address_of_HeaderVersionNumber_19() { return &___HeaderVersionNumber_19; } inline void set_HeaderVersionNumber_19(int32_t value) { ___HeaderVersionNumber_19 = value; } inline static int32_t get_offset_of__minResourceSet_20() { return static_cast<int32_t>(offsetof(ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF_StaticFields, ____minResourceSet_20)); } inline Type_t * get__minResourceSet_20() const { return ____minResourceSet_20; } inline Type_t ** get_address_of__minResourceSet_20() { return &____minResourceSet_20; } inline void set__minResourceSet_20(Type_t * value) { ____minResourceSet_20 = value; Il2CppCodeGenWriteBarrier((void**)(&____minResourceSet_20), (void*)value); } inline static int32_t get_offset_of_ResReaderTypeName_21() { return static_cast<int32_t>(offsetof(ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF_StaticFields, ___ResReaderTypeName_21)); } inline String_t* get_ResReaderTypeName_21() const { return ___ResReaderTypeName_21; } inline String_t** get_address_of_ResReaderTypeName_21() { return &___ResReaderTypeName_21; } inline void set_ResReaderTypeName_21(String_t* value) { ___ResReaderTypeName_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___ResReaderTypeName_21), (void*)value); } inline static int32_t get_offset_of_ResSetTypeName_22() { return static_cast<int32_t>(offsetof(ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF_StaticFields, ___ResSetTypeName_22)); } inline String_t* get_ResSetTypeName_22() const { return ___ResSetTypeName_22; } inline String_t** get_address_of_ResSetTypeName_22() { return &___ResSetTypeName_22; } inline void set_ResSetTypeName_22(String_t* value) { ___ResSetTypeName_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___ResSetTypeName_22), (void*)value); } inline static int32_t get_offset_of_MscorlibName_23() { return static_cast<int32_t>(offsetof(ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF_StaticFields, ___MscorlibName_23)); } inline String_t* get_MscorlibName_23() const { return ___MscorlibName_23; } inline String_t** get_address_of_MscorlibName_23() { return &___MscorlibName_23; } inline void set_MscorlibName_23(String_t* value) { ___MscorlibName_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___MscorlibName_23), (void*)value); } inline static int32_t get_offset_of_DEBUG_24() { return static_cast<int32_t>(offsetof(ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF_StaticFields, ___DEBUG_24)); } inline int32_t get_DEBUG_24() const { return ___DEBUG_24; } inline int32_t* get_address_of_DEBUG_24() { return &___DEBUG_24; } inline void set_DEBUG_24(int32_t value) { ___DEBUG_24 = 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.Action`2<System.Char,System.String> struct Action_2_tF9B5B4903EBDF1C9EC5FD39E96DE7A6A35B21C81 : public MulticastDelegate_t { public: public: }; // System.ArgumentException struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: // System.String System.ArgumentException::m_paramName String_t* ___m_paramName_17; public: inline static int32_t get_offset_of_m_paramName_17() { return static_cast<int32_t>(offsetof(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1, ___m_paramName_17)); } inline String_t* get_m_paramName_17() const { return ___m_paramName_17; } inline String_t** get_address_of_m_paramName_17() { return &___m_paramName_17; } inline void set_m_paramName_17(String_t* value) { ___m_paramName_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_paramName_17), (void*)value); } }; // System.ArithmeticException struct ArithmeticException_tF9EF5FE94597830EF315C5934258F994B8648269 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; // System.AsyncCallback struct AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 : public MulticastDelegate_t { public: public: }; // System.Comparison`1<System.String> struct Comparison_1_tB59BE4B966B2646664AB777129F0D33B1AAA0E71 : public MulticastDelegate_t { public: public: }; // System.Diagnostics.Tracing.EventSource_OverideEventProvider struct OverideEventProvider_t354C68E8EFB53023A6C94D61F8F44358225D7C2B : public EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483 { public: // System.Diagnostics.Tracing.EventSource System.Diagnostics.Tracing.EventSource_OverideEventProvider::m_eventSource EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB * ___m_eventSource_13; public: inline static int32_t get_offset_of_m_eventSource_13() { return static_cast<int32_t>(offsetof(OverideEventProvider_t354C68E8EFB53023A6C94D61F8F44358225D7C2B, ___m_eventSource_13)); } inline EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB * get_m_eventSource_13() const { return ___m_eventSource_13; } inline EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB ** get_address_of_m_eventSource_13() { return &___m_eventSource_13; } inline void set_m_eventSource_13(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB * value) { ___m_eventSource_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_eventSource_13), (void*)value); } }; // System.Diagnostics.Tracing.TplEtwProvider struct TplEtwProvider_tE8D95D638ADE31D5FCEF08E88222D518C2FACC9E : public EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB { public: public: }; struct TplEtwProvider_tE8D95D638ADE31D5FCEF08E88222D518C2FACC9E_StaticFields { public: // System.Diagnostics.Tracing.TplEtwProvider System.Diagnostics.Tracing.TplEtwProvider::Log TplEtwProvider_tE8D95D638ADE31D5FCEF08E88222D518C2FACC9E * ___Log_29; public: inline static int32_t get_offset_of_Log_29() { return static_cast<int32_t>(offsetof(TplEtwProvider_tE8D95D638ADE31D5FCEF08E88222D518C2FACC9E_StaticFields, ___Log_29)); } inline TplEtwProvider_tE8D95D638ADE31D5FCEF08E88222D518C2FACC9E * get_Log_29() const { return ___Log_29; } inline TplEtwProvider_tE8D95D638ADE31D5FCEF08E88222D518C2FACC9E ** get_address_of_Log_29() { return &___Log_29; } inline void set_Log_29(TplEtwProvider_tE8D95D638ADE31D5FCEF08E88222D518C2FACC9E * value) { ___Log_29 = value; Il2CppCodeGenWriteBarrier((void**)(&___Log_29), (void*)value); } }; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Guid> struct TraceLoggingTypeInfo_1_t2B55C9286BB1419C38C60FD4458507F64BDC8CE4 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F { public: public: }; struct TraceLoggingTypeInfo_1_t2B55C9286BB1419C38C60FD4458507F64BDC8CE4_StaticFields { public: // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance TraceLoggingTypeInfo_1_t2B55C9286BB1419C38C60FD4458507F64BDC8CE4 * ___instance_6; public: inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t2B55C9286BB1419C38C60FD4458507F64BDC8CE4_StaticFields, ___instance_6)); } inline TraceLoggingTypeInfo_1_t2B55C9286BB1419C38C60FD4458507F64BDC8CE4 * get_instance_6() const { return ___instance_6; } inline TraceLoggingTypeInfo_1_t2B55C9286BB1419C38C60FD4458507F64BDC8CE4 ** get_address_of_instance_6() { return &___instance_6; } inline void set_instance_6(TraceLoggingTypeInfo_1_t2B55C9286BB1419C38C60FD4458507F64BDC8CE4 * value) { ___instance_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value); } }; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Guid[]> struct TraceLoggingTypeInfo_1_t5CD19345E04791061E49735C40A06560D1015A81 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F { public: public: }; struct TraceLoggingTypeInfo_1_t5CD19345E04791061E49735C40A06560D1015A81_StaticFields { public: // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance TraceLoggingTypeInfo_1_t5CD19345E04791061E49735C40A06560D1015A81 * ___instance_6; public: inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t5CD19345E04791061E49735C40A06560D1015A81_StaticFields, ___instance_6)); } inline TraceLoggingTypeInfo_1_t5CD19345E04791061E49735C40A06560D1015A81 * get_instance_6() const { return ___instance_6; } inline TraceLoggingTypeInfo_1_t5CD19345E04791061E49735C40A06560D1015A81 ** get_address_of_instance_6() { return &___instance_6; } inline void set_instance_6(TraceLoggingTypeInfo_1_t5CD19345E04791061E49735C40A06560D1015A81 * value) { ___instance_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value); } }; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int16> struct TraceLoggingTypeInfo_1_t506240682C732B33C0D659D6DC744D966C2FE363 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F { public: public: }; struct TraceLoggingTypeInfo_1_t506240682C732B33C0D659D6DC744D966C2FE363_StaticFields { public: // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance TraceLoggingTypeInfo_1_t506240682C732B33C0D659D6DC744D966C2FE363 * ___instance_6; public: inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t506240682C732B33C0D659D6DC744D966C2FE363_StaticFields, ___instance_6)); } inline TraceLoggingTypeInfo_1_t506240682C732B33C0D659D6DC744D966C2FE363 * get_instance_6() const { return ___instance_6; } inline TraceLoggingTypeInfo_1_t506240682C732B33C0D659D6DC744D966C2FE363 ** get_address_of_instance_6() { return &___instance_6; } inline void set_instance_6(TraceLoggingTypeInfo_1_t506240682C732B33C0D659D6DC744D966C2FE363 * value) { ___instance_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value); } }; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int16[]> struct TraceLoggingTypeInfo_1_t48333D5529FE3B84602B0DC3CD4AE0F4B0D4BAE0 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F { public: public: }; struct TraceLoggingTypeInfo_1_t48333D5529FE3B84602B0DC3CD4AE0F4B0D4BAE0_StaticFields { public: // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance TraceLoggingTypeInfo_1_t48333D5529FE3B84602B0DC3CD4AE0F4B0D4BAE0 * ___instance_6; public: inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t48333D5529FE3B84602B0DC3CD4AE0F4B0D4BAE0_StaticFields, ___instance_6)); } inline TraceLoggingTypeInfo_1_t48333D5529FE3B84602B0DC3CD4AE0F4B0D4BAE0 * get_instance_6() const { return ___instance_6; } inline TraceLoggingTypeInfo_1_t48333D5529FE3B84602B0DC3CD4AE0F4B0D4BAE0 ** get_address_of_instance_6() { return &___instance_6; } inline void set_instance_6(TraceLoggingTypeInfo_1_t48333D5529FE3B84602B0DC3CD4AE0F4B0D4BAE0 * value) { ___instance_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value); } }; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int32> struct TraceLoggingTypeInfo_1_tDD2B74A36968F646CCDFEB9CE4074A216009252C : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F { public: public: }; struct TraceLoggingTypeInfo_1_tDD2B74A36968F646CCDFEB9CE4074A216009252C_StaticFields { public: // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance TraceLoggingTypeInfo_1_tDD2B74A36968F646CCDFEB9CE4074A216009252C * ___instance_6; public: inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_tDD2B74A36968F646CCDFEB9CE4074A216009252C_StaticFields, ___instance_6)); } inline TraceLoggingTypeInfo_1_tDD2B74A36968F646CCDFEB9CE4074A216009252C * get_instance_6() const { return ___instance_6; } inline TraceLoggingTypeInfo_1_tDD2B74A36968F646CCDFEB9CE4074A216009252C ** get_address_of_instance_6() { return &___instance_6; } inline void set_instance_6(TraceLoggingTypeInfo_1_tDD2B74A36968F646CCDFEB9CE4074A216009252C * value) { ___instance_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value); } }; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int32[]> struct TraceLoggingTypeInfo_1_t9B7E3D9AB547CAF187A5C9E97F07E2B5A58E2589 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F { public: public: }; struct TraceLoggingTypeInfo_1_t9B7E3D9AB547CAF187A5C9E97F07E2B5A58E2589_StaticFields { public: // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance TraceLoggingTypeInfo_1_t9B7E3D9AB547CAF187A5C9E97F07E2B5A58E2589 * ___instance_6; public: inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t9B7E3D9AB547CAF187A5C9E97F07E2B5A58E2589_StaticFields, ___instance_6)); } inline TraceLoggingTypeInfo_1_t9B7E3D9AB547CAF187A5C9E97F07E2B5A58E2589 * get_instance_6() const { return ___instance_6; } inline TraceLoggingTypeInfo_1_t9B7E3D9AB547CAF187A5C9E97F07E2B5A58E2589 ** get_address_of_instance_6() { return &___instance_6; } inline void set_instance_6(TraceLoggingTypeInfo_1_t9B7E3D9AB547CAF187A5C9E97F07E2B5A58E2589 * value) { ___instance_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value); } }; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int64> struct TraceLoggingTypeInfo_1_t443169292A139EC54B708D4B6023EA2449412265 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F { public: public: }; struct TraceLoggingTypeInfo_1_t443169292A139EC54B708D4B6023EA2449412265_StaticFields { public: // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance TraceLoggingTypeInfo_1_t443169292A139EC54B708D4B6023EA2449412265 * ___instance_6; public: inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t443169292A139EC54B708D4B6023EA2449412265_StaticFields, ___instance_6)); } inline TraceLoggingTypeInfo_1_t443169292A139EC54B708D4B6023EA2449412265 * get_instance_6() const { return ___instance_6; } inline TraceLoggingTypeInfo_1_t443169292A139EC54B708D4B6023EA2449412265 ** get_address_of_instance_6() { return &___instance_6; } inline void set_instance_6(TraceLoggingTypeInfo_1_t443169292A139EC54B708D4B6023EA2449412265 * value) { ___instance_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value); } }; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int64[]> struct TraceLoggingTypeInfo_1_tA67F5E5AEDAD34F7E25836F622BB7510867903BD : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F { public: public: }; struct TraceLoggingTypeInfo_1_tA67F5E5AEDAD34F7E25836F622BB7510867903BD_StaticFields { public: // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance TraceLoggingTypeInfo_1_tA67F5E5AEDAD34F7E25836F622BB7510867903BD * ___instance_6; public: inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_tA67F5E5AEDAD34F7E25836F622BB7510867903BD_StaticFields, ___instance_6)); } inline TraceLoggingTypeInfo_1_tA67F5E5AEDAD34F7E25836F622BB7510867903BD * get_instance_6() const { return ___instance_6; } inline TraceLoggingTypeInfo_1_tA67F5E5AEDAD34F7E25836F622BB7510867903BD ** get_address_of_instance_6() { return &___instance_6; } inline void set_instance_6(TraceLoggingTypeInfo_1_tA67F5E5AEDAD34F7E25836F622BB7510867903BD * value) { ___instance_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value); } }; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.IntPtr> struct TraceLoggingTypeInfo_1_t49721B614FCA52E6F380ACEE1AE32F5BA19815F1 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F { public: public: }; struct TraceLoggingTypeInfo_1_t49721B614FCA52E6F380ACEE1AE32F5BA19815F1_StaticFields { public: // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance TraceLoggingTypeInfo_1_t49721B614FCA52E6F380ACEE1AE32F5BA19815F1 * ___instance_6; public: inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t49721B614FCA52E6F380ACEE1AE32F5BA19815F1_StaticFields, ___instance_6)); } inline TraceLoggingTypeInfo_1_t49721B614FCA52E6F380ACEE1AE32F5BA19815F1 * get_instance_6() const { return ___instance_6; } inline TraceLoggingTypeInfo_1_t49721B614FCA52E6F380ACEE1AE32F5BA19815F1 ** get_address_of_instance_6() { return &___instance_6; } inline void set_instance_6(TraceLoggingTypeInfo_1_t49721B614FCA52E6F380ACEE1AE32F5BA19815F1 * value) { ___instance_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value); } }; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.IntPtr[]> struct TraceLoggingTypeInfo_1_t7DDB9F3AED3B154D72AB8AE300434F50B56870C6 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F { public: public: }; struct TraceLoggingTypeInfo_1_t7DDB9F3AED3B154D72AB8AE300434F50B56870C6_StaticFields { public: // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance TraceLoggingTypeInfo_1_t7DDB9F3AED3B154D72AB8AE300434F50B56870C6 * ___instance_6; public: inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t7DDB9F3AED3B154D72AB8AE300434F50B56870C6_StaticFields, ___instance_6)); } inline TraceLoggingTypeInfo_1_t7DDB9F3AED3B154D72AB8AE300434F50B56870C6 * get_instance_6() const { return ___instance_6; } inline TraceLoggingTypeInfo_1_t7DDB9F3AED3B154D72AB8AE300434F50B56870C6 ** get_address_of_instance_6() { return &___instance_6; } inline void set_instance_6(TraceLoggingTypeInfo_1_t7DDB9F3AED3B154D72AB8AE300434F50B56870C6 * value) { ___instance_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value); } }; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.SByte> struct TraceLoggingTypeInfo_1_tBCFB1C63D7D7837A0D7EAC07CF250A313B982794 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F { public: public: }; struct TraceLoggingTypeInfo_1_tBCFB1C63D7D7837A0D7EAC07CF250A313B982794_StaticFields { public: // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance TraceLoggingTypeInfo_1_tBCFB1C63D7D7837A0D7EAC07CF250A313B982794 * ___instance_6; public: inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_tBCFB1C63D7D7837A0D7EAC07CF250A313B982794_StaticFields, ___instance_6)); } inline TraceLoggingTypeInfo_1_tBCFB1C63D7D7837A0D7EAC07CF250A313B982794 * get_instance_6() const { return ___instance_6; } inline TraceLoggingTypeInfo_1_tBCFB1C63D7D7837A0D7EAC07CF250A313B982794 ** get_address_of_instance_6() { return &___instance_6; } inline void set_instance_6(TraceLoggingTypeInfo_1_tBCFB1C63D7D7837A0D7EAC07CF250A313B982794 * value) { ___instance_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value); } }; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.SByte[]> struct TraceLoggingTypeInfo_1_t55CF8C945F32D794C974BA4DAE2EE7F2647C4C5E : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F { public: public: }; struct TraceLoggingTypeInfo_1_t55CF8C945F32D794C974BA4DAE2EE7F2647C4C5E_StaticFields { public: // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance TraceLoggingTypeInfo_1_t55CF8C945F32D794C974BA4DAE2EE7F2647C4C5E * ___instance_6; public: inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t55CF8C945F32D794C974BA4DAE2EE7F2647C4C5E_StaticFields, ___instance_6)); } inline TraceLoggingTypeInfo_1_t55CF8C945F32D794C974BA4DAE2EE7F2647C4C5E * get_instance_6() const { return ___instance_6; } inline TraceLoggingTypeInfo_1_t55CF8C945F32D794C974BA4DAE2EE7F2647C4C5E ** get_address_of_instance_6() { return &___instance_6; } inline void set_instance_6(TraceLoggingTypeInfo_1_t55CF8C945F32D794C974BA4DAE2EE7F2647C4C5E * value) { ___instance_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value); } }; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Single> struct TraceLoggingTypeInfo_1_t80BF4A689F205E66ABE5177817C623F9DF91E6CD : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F { public: public: }; struct TraceLoggingTypeInfo_1_t80BF4A689F205E66ABE5177817C623F9DF91E6CD_StaticFields { public: // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance TraceLoggingTypeInfo_1_t80BF4A689F205E66ABE5177817C623F9DF91E6CD * ___instance_6; public: inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t80BF4A689F205E66ABE5177817C623F9DF91E6CD_StaticFields, ___instance_6)); } inline TraceLoggingTypeInfo_1_t80BF4A689F205E66ABE5177817C623F9DF91E6CD * get_instance_6() const { return ___instance_6; } inline TraceLoggingTypeInfo_1_t80BF4A689F205E66ABE5177817C623F9DF91E6CD ** get_address_of_instance_6() { return &___instance_6; } inline void set_instance_6(TraceLoggingTypeInfo_1_t80BF4A689F205E66ABE5177817C623F9DF91E6CD * value) { ___instance_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value); } }; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Single[]> struct TraceLoggingTypeInfo_1_t1EC2C7D1B7604F9A26B9CBC247D3927A18E9633E : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F { public: public: }; struct TraceLoggingTypeInfo_1_t1EC2C7D1B7604F9A26B9CBC247D3927A18E9633E_StaticFields { public: // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance TraceLoggingTypeInfo_1_t1EC2C7D1B7604F9A26B9CBC247D3927A18E9633E * ___instance_6; public: inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t1EC2C7D1B7604F9A26B9CBC247D3927A18E9633E_StaticFields, ___instance_6)); } inline TraceLoggingTypeInfo_1_t1EC2C7D1B7604F9A26B9CBC247D3927A18E9633E * get_instance_6() const { return ___instance_6; } inline TraceLoggingTypeInfo_1_t1EC2C7D1B7604F9A26B9CBC247D3927A18E9633E ** get_address_of_instance_6() { return &___instance_6; } inline void set_instance_6(TraceLoggingTypeInfo_1_t1EC2C7D1B7604F9A26B9CBC247D3927A18E9633E * value) { ___instance_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value); } }; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.String> struct TraceLoggingTypeInfo_1_t34C750FAAA441003C34ECA6894E5D8640C78041D : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F { public: public: }; struct TraceLoggingTypeInfo_1_t34C750FAAA441003C34ECA6894E5D8640C78041D_StaticFields { public: // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance TraceLoggingTypeInfo_1_t34C750FAAA441003C34ECA6894E5D8640C78041D * ___instance_6; public: inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t34C750FAAA441003C34ECA6894E5D8640C78041D_StaticFields, ___instance_6)); } inline TraceLoggingTypeInfo_1_t34C750FAAA441003C34ECA6894E5D8640C78041D * get_instance_6() const { return ___instance_6; } inline TraceLoggingTypeInfo_1_t34C750FAAA441003C34ECA6894E5D8640C78041D ** get_address_of_instance_6() { return &___instance_6; } inline void set_instance_6(TraceLoggingTypeInfo_1_t34C750FAAA441003C34ECA6894E5D8640C78041D * value) { ___instance_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value); } }; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.TimeSpan> struct TraceLoggingTypeInfo_1_t8DC6FE358F90681BDCCD5350065A9767D2AC90DD : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F { public: public: }; struct TraceLoggingTypeInfo_1_t8DC6FE358F90681BDCCD5350065A9767D2AC90DD_StaticFields { public: // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance TraceLoggingTypeInfo_1_t8DC6FE358F90681BDCCD5350065A9767D2AC90DD * ___instance_6; public: inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t8DC6FE358F90681BDCCD5350065A9767D2AC90DD_StaticFields, ___instance_6)); } inline TraceLoggingTypeInfo_1_t8DC6FE358F90681BDCCD5350065A9767D2AC90DD * get_instance_6() const { return ___instance_6; } inline TraceLoggingTypeInfo_1_t8DC6FE358F90681BDCCD5350065A9767D2AC90DD ** get_address_of_instance_6() { return &___instance_6; } inline void set_instance_6(TraceLoggingTypeInfo_1_t8DC6FE358F90681BDCCD5350065A9767D2AC90DD * value) { ___instance_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value); } }; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UInt16> struct TraceLoggingTypeInfo_1_tCBF51B2E677BE976178EC8AC986798F9B65E2EC6 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F { public: public: }; struct TraceLoggingTypeInfo_1_tCBF51B2E677BE976178EC8AC986798F9B65E2EC6_StaticFields { public: // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance TraceLoggingTypeInfo_1_tCBF51B2E677BE976178EC8AC986798F9B65E2EC6 * ___instance_6; public: inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_tCBF51B2E677BE976178EC8AC986798F9B65E2EC6_StaticFields, ___instance_6)); } inline TraceLoggingTypeInfo_1_tCBF51B2E677BE976178EC8AC986798F9B65E2EC6 * get_instance_6() const { return ___instance_6; } inline TraceLoggingTypeInfo_1_tCBF51B2E677BE976178EC8AC986798F9B65E2EC6 ** get_address_of_instance_6() { return &___instance_6; } inline void set_instance_6(TraceLoggingTypeInfo_1_tCBF51B2E677BE976178EC8AC986798F9B65E2EC6 * value) { ___instance_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value); } }; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UInt16[]> struct TraceLoggingTypeInfo_1_t97FDBDA4CF3677121784926A6B75A517CB7A0354 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F { public: public: }; struct TraceLoggingTypeInfo_1_t97FDBDA4CF3677121784926A6B75A517CB7A0354_StaticFields { public: // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance TraceLoggingTypeInfo_1_t97FDBDA4CF3677121784926A6B75A517CB7A0354 * ___instance_6; public: inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t97FDBDA4CF3677121784926A6B75A517CB7A0354_StaticFields, ___instance_6)); } inline TraceLoggingTypeInfo_1_t97FDBDA4CF3677121784926A6B75A517CB7A0354 * get_instance_6() const { return ___instance_6; } inline TraceLoggingTypeInfo_1_t97FDBDA4CF3677121784926A6B75A517CB7A0354 ** get_address_of_instance_6() { return &___instance_6; } inline void set_instance_6(TraceLoggingTypeInfo_1_t97FDBDA4CF3677121784926A6B75A517CB7A0354 * value) { ___instance_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value); } }; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UInt32> struct TraceLoggingTypeInfo_1_tC4AD26ADEB2206747827432E8A7EDA1A37681F10 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F { public: public: }; struct TraceLoggingTypeInfo_1_tC4AD26ADEB2206747827432E8A7EDA1A37681F10_StaticFields { public: // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance TraceLoggingTypeInfo_1_tC4AD26ADEB2206747827432E8A7EDA1A37681F10 * ___instance_6; public: inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_tC4AD26ADEB2206747827432E8A7EDA1A37681F10_StaticFields, ___instance_6)); } inline TraceLoggingTypeInfo_1_tC4AD26ADEB2206747827432E8A7EDA1A37681F10 * get_instance_6() const { return ___instance_6; } inline TraceLoggingTypeInfo_1_tC4AD26ADEB2206747827432E8A7EDA1A37681F10 ** get_address_of_instance_6() { return &___instance_6; } inline void set_instance_6(TraceLoggingTypeInfo_1_tC4AD26ADEB2206747827432E8A7EDA1A37681F10 * value) { ___instance_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value); } }; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UInt32[]> struct TraceLoggingTypeInfo_1_t8AE0E093509BB6D0AF1B5A1D5F17DAD0FC17FBAB : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F { public: public: }; struct TraceLoggingTypeInfo_1_t8AE0E093509BB6D0AF1B5A1D5F17DAD0FC17FBAB_StaticFields { public: // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance TraceLoggingTypeInfo_1_t8AE0E093509BB6D0AF1B5A1D5F17DAD0FC17FBAB * ___instance_6; public: inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t8AE0E093509BB6D0AF1B5A1D5F17DAD0FC17FBAB_StaticFields, ___instance_6)); } inline TraceLoggingTypeInfo_1_t8AE0E093509BB6D0AF1B5A1D5F17DAD0FC17FBAB * get_instance_6() const { return ___instance_6; } inline TraceLoggingTypeInfo_1_t8AE0E093509BB6D0AF1B5A1D5F17DAD0FC17FBAB ** get_address_of_instance_6() { return &___instance_6; } inline void set_instance_6(TraceLoggingTypeInfo_1_t8AE0E093509BB6D0AF1B5A1D5F17DAD0FC17FBAB * value) { ___instance_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value); } }; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UInt64> struct TraceLoggingTypeInfo_1_t2BDE5AE3D48BE884906B4ABADD9FA7EB16AD333C : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F { public: public: }; struct TraceLoggingTypeInfo_1_t2BDE5AE3D48BE884906B4ABADD9FA7EB16AD333C_StaticFields { public: // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance TraceLoggingTypeInfo_1_t2BDE5AE3D48BE884906B4ABADD9FA7EB16AD333C * ___instance_6; public: inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t2BDE5AE3D48BE884906B4ABADD9FA7EB16AD333C_StaticFields, ___instance_6)); } inline TraceLoggingTypeInfo_1_t2BDE5AE3D48BE884906B4ABADD9FA7EB16AD333C * get_instance_6() const { return ___instance_6; } inline TraceLoggingTypeInfo_1_t2BDE5AE3D48BE884906B4ABADD9FA7EB16AD333C ** get_address_of_instance_6() { return &___instance_6; } inline void set_instance_6(TraceLoggingTypeInfo_1_t2BDE5AE3D48BE884906B4ABADD9FA7EB16AD333C * value) { ___instance_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value); } }; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UInt64[]> struct TraceLoggingTypeInfo_1_t6EE8951B7314721A44CBD852551DAAF5CB72F606 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F { public: public: }; struct TraceLoggingTypeInfo_1_t6EE8951B7314721A44CBD852551DAAF5CB72F606_StaticFields { public: // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance TraceLoggingTypeInfo_1_t6EE8951B7314721A44CBD852551DAAF5CB72F606 * ___instance_6; public: inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_t6EE8951B7314721A44CBD852551DAAF5CB72F606_StaticFields, ___instance_6)); } inline TraceLoggingTypeInfo_1_t6EE8951B7314721A44CBD852551DAAF5CB72F606 * get_instance_6() const { return ___instance_6; } inline TraceLoggingTypeInfo_1_t6EE8951B7314721A44CBD852551DAAF5CB72F606 ** get_address_of_instance_6() { return &___instance_6; } inline void set_instance_6(TraceLoggingTypeInfo_1_t6EE8951B7314721A44CBD852551DAAF5CB72F606 * value) { ___instance_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value); } }; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UIntPtr> struct TraceLoggingTypeInfo_1_tB931FCDE5F91B9AE5C5515AA58B5518C97F86330 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F { public: public: }; struct TraceLoggingTypeInfo_1_tB931FCDE5F91B9AE5C5515AA58B5518C97F86330_StaticFields { public: // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance TraceLoggingTypeInfo_1_tB931FCDE5F91B9AE5C5515AA58B5518C97F86330 * ___instance_6; public: inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_tB931FCDE5F91B9AE5C5515AA58B5518C97F86330_StaticFields, ___instance_6)); } inline TraceLoggingTypeInfo_1_tB931FCDE5F91B9AE5C5515AA58B5518C97F86330 * get_instance_6() const { return ___instance_6; } inline TraceLoggingTypeInfo_1_tB931FCDE5F91B9AE5C5515AA58B5518C97F86330 ** get_address_of_instance_6() { return &___instance_6; } inline void set_instance_6(TraceLoggingTypeInfo_1_tB931FCDE5F91B9AE5C5515AA58B5518C97F86330 * value) { ___instance_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value); } }; // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UIntPtr[]> struct TraceLoggingTypeInfo_1_tD16C7A6EA0D37CFA5AC0AED1A07D919210983479 : public TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F { public: public: }; struct TraceLoggingTypeInfo_1_tD16C7A6EA0D37CFA5AC0AED1A07D919210983479_StaticFields { public: // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1::instance TraceLoggingTypeInfo_1_tD16C7A6EA0D37CFA5AC0AED1A07D919210983479 * ___instance_6; public: inline static int32_t get_offset_of_instance_6() { return static_cast<int32_t>(offsetof(TraceLoggingTypeInfo_1_tD16C7A6EA0D37CFA5AC0AED1A07D919210983479_StaticFields, ___instance_6)); } inline TraceLoggingTypeInfo_1_tD16C7A6EA0D37CFA5AC0AED1A07D919210983479 * get_instance_6() const { return ___instance_6; } inline TraceLoggingTypeInfo_1_tD16C7A6EA0D37CFA5AC0AED1A07D919210983479 ** get_address_of_instance_6() { return &___instance_6; } inline void set_instance_6(TraceLoggingTypeInfo_1_tD16C7A6EA0D37CFA5AC0AED1A07D919210983479 * value) { ___instance_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___instance_6), (void*)value); } }; // System.EventHandler struct EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C : public MulticastDelegate_t { public: public: }; // System.ExecutionEngineException struct ExecutionEngineException_t9D6DDEC5449D08251371AB57FE61558C2A2B1F21 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; // System.FormatException struct FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; // System.IO.IOException struct IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: // System.String System.IO.IOException::_maybeFullPath String_t* ____maybeFullPath_17; public: inline static int32_t get_offset_of__maybeFullPath_17() { return static_cast<int32_t>(offsetof(IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA, ____maybeFullPath_17)); } inline String_t* get__maybeFullPath_17() const { return ____maybeFullPath_17; } inline String_t** get_address_of__maybeFullPath_17() { return &____maybeFullPath_17; } inline void set__maybeFullPath_17(String_t* value) { ____maybeFullPath_17 = value; Il2CppCodeGenWriteBarrier((void**)(&____maybeFullPath_17), (void*)value); } }; // System.InvalidCastException struct InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; // System.InvalidOperationException struct InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; // System.MemberAccessException struct MemberAccessException_tDA869AFFB4FC1EA0EEF3143D85999710AC4774F0 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; // System.NotImplementedException struct NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; // System.NotSupportedException struct NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; // System.NullReferenceException struct NullReferenceException_t204B194BC4DDA3259AF5A8633EA248AE5977ABDC : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; // System.Reflection.TypeFilter struct TypeFilter_t30BB04A68BC9FB949345457F71A9648BDB67FF18 : public MulticastDelegate_t { public: public: }; // System.Reflection.TypeInfo struct TypeInfo_t9D6F65801A41B97F36138B15FD270A1550DBB3FC : public Type_t { 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.TypeLoadException struct TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: // System.String System.TypeLoadException::ClassName String_t* ___ClassName_17; // System.String System.TypeLoadException::AssemblyName String_t* ___AssemblyName_18; // System.String System.TypeLoadException::MessageArg String_t* ___MessageArg_19; // System.Int32 System.TypeLoadException::ResourceId int32_t ___ResourceId_20; public: inline static int32_t get_offset_of_ClassName_17() { return static_cast<int32_t>(offsetof(TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1, ___ClassName_17)); } inline String_t* get_ClassName_17() const { return ___ClassName_17; } inline String_t** get_address_of_ClassName_17() { return &___ClassName_17; } inline void set_ClassName_17(String_t* value) { ___ClassName_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___ClassName_17), (void*)value); } inline static int32_t get_offset_of_AssemblyName_18() { return static_cast<int32_t>(offsetof(TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1, ___AssemblyName_18)); } inline String_t* get_AssemblyName_18() const { return ___AssemblyName_18; } inline String_t** get_address_of_AssemblyName_18() { return &___AssemblyName_18; } inline void set_AssemblyName_18(String_t* value) { ___AssemblyName_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___AssemblyName_18), (void*)value); } inline static int32_t get_offset_of_MessageArg_19() { return static_cast<int32_t>(offsetof(TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1, ___MessageArg_19)); } inline String_t* get_MessageArg_19() const { return ___MessageArg_19; } inline String_t** get_address_of_MessageArg_19() { return &___MessageArg_19; } inline void set_MessageArg_19(String_t* value) { ___MessageArg_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___MessageArg_19), (void*)value); } inline static int32_t get_offset_of_ResourceId_20() { return static_cast<int32_t>(offsetof(TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1, ___ResourceId_20)); } inline int32_t get_ResourceId_20() const { return ___ResourceId_20; } inline int32_t* get_address_of_ResourceId_20() { return &___ResourceId_20; } inline void set_ResourceId_20(int32_t value) { ___ResourceId_20 = value; } }; // System.ArgumentNullException struct ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD : public ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 { public: public: }; // System.ArgumentOutOfRangeException struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA : public ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 { public: // System.Object System.ArgumentOutOfRangeException::m_actualValue RuntimeObject * ___m_actualValue_19; public: inline static int32_t get_offset_of_m_actualValue_19() { return static_cast<int32_t>(offsetof(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA, ___m_actualValue_19)); } inline RuntimeObject * get_m_actualValue_19() const { return ___m_actualValue_19; } inline RuntimeObject ** get_address_of_m_actualValue_19() { return &___m_actualValue_19; } inline void set_m_actualValue_19(RuntimeObject * value) { ___m_actualValue_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_actualValue_19), (void*)value); } }; struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_StaticFields { public: // System.String modreq(System.Runtime.CompilerServices.IsVolatile) System.ArgumentOutOfRangeException::_rangeMessage String_t* ____rangeMessage_18; public: inline static int32_t get_offset_of__rangeMessage_18() { return static_cast<int32_t>(offsetof(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_StaticFields, ____rangeMessage_18)); } inline String_t* get__rangeMessage_18() const { return ____rangeMessage_18; } inline String_t** get_address_of__rangeMessage_18() { return &____rangeMessage_18; } inline void set__rangeMessage_18(String_t* value) { ____rangeMessage_18 = value; Il2CppCodeGenWriteBarrier((void**)(&____rangeMessage_18), (void*)value); } }; // System.Diagnostics.Tracing.GuidArrayTypeInfo struct GuidArrayTypeInfo_tCBD4D79DCC29FDFCFA6B5B733A7CB76E1A4BB068 : public TraceLoggingTypeInfo_1_t5CD19345E04791061E49735C40A06560D1015A81 { public: public: }; // System.Diagnostics.Tracing.GuidTypeInfo struct GuidTypeInfo_tADCD4F34D348774C3AE9A0714A071BF1EC7699ED : public TraceLoggingTypeInfo_1_t2B55C9286BB1419C38C60FD4458507F64BDC8CE4 { public: public: }; // System.Diagnostics.Tracing.Int16ArrayTypeInfo struct Int16ArrayTypeInfo_tAD49D189964C4528B1A70B5BF923016DF12A1CA3 : public TraceLoggingTypeInfo_1_t48333D5529FE3B84602B0DC3CD4AE0F4B0D4BAE0 { public: public: }; // System.Diagnostics.Tracing.Int16TypeInfo struct Int16TypeInfo_t5D76EA51B81898B9E5D73E48513749E2F1E9E48B : public TraceLoggingTypeInfo_1_t506240682C732B33C0D659D6DC744D966C2FE363 { public: public: }; // System.Diagnostics.Tracing.Int32ArrayTypeInfo struct Int32ArrayTypeInfo_t081A0C4015757B88F1735B49551791902EB2456C : public TraceLoggingTypeInfo_1_t9B7E3D9AB547CAF187A5C9E97F07E2B5A58E2589 { public: public: }; // System.Diagnostics.Tracing.Int32TypeInfo struct Int32TypeInfo_t0B1921CD9614D1EB1B183ED8A686AA372750252C : public TraceLoggingTypeInfo_1_tDD2B74A36968F646CCDFEB9CE4074A216009252C { public: public: }; // System.Diagnostics.Tracing.Int64ArrayTypeInfo struct Int64ArrayTypeInfo_tA11180F9988B3F2768E2936B0EC740F4CA4098FC : public TraceLoggingTypeInfo_1_tA67F5E5AEDAD34F7E25836F622BB7510867903BD { public: public: }; // System.Diagnostics.Tracing.Int64TypeInfo struct Int64TypeInfo_t96DC7ABE2B905BED6B2BE60AB3BC0CC3AB5149E5 : public TraceLoggingTypeInfo_1_t443169292A139EC54B708D4B6023EA2449412265 { public: public: }; // System.Diagnostics.Tracing.IntPtrArrayTypeInfo struct IntPtrArrayTypeInfo_t8E5F0E3EA1E88E19EF71CB6549DD46FFB78B5702 : public TraceLoggingTypeInfo_1_t7DDB9F3AED3B154D72AB8AE300434F50B56870C6 { public: public: }; // System.Diagnostics.Tracing.IntPtrTypeInfo struct IntPtrTypeInfo_tBAA196C9AFC0FF57DB01E76B903964521E29FF55 : public TraceLoggingTypeInfo_1_t49721B614FCA52E6F380ACEE1AE32F5BA19815F1 { public: public: }; // System.Diagnostics.Tracing.SByteArrayTypeInfo struct SByteArrayTypeInfo_t4885ED20686CCAD72DF0C2423CAF5CDA3F5591C6 : public TraceLoggingTypeInfo_1_t55CF8C945F32D794C974BA4DAE2EE7F2647C4C5E { public: public: }; // System.Diagnostics.Tracing.SByteTypeInfo struct SByteTypeInfo_tA76D79A20B5AA0947AC807DEEADDB557BFB14A4C : public TraceLoggingTypeInfo_1_tBCFB1C63D7D7837A0D7EAC07CF250A313B982794 { public: public: }; // System.Diagnostics.Tracing.SingleArrayTypeInfo struct SingleArrayTypeInfo_t7D009CA00E2BC30821D9DADDDAD26C88484BD239 : public TraceLoggingTypeInfo_1_t1EC2C7D1B7604F9A26B9CBC247D3927A18E9633E { public: public: }; // System.Diagnostics.Tracing.SingleTypeInfo struct SingleTypeInfo_tE256251DAD6B7FADC6378A7963F2C480467C31E8 : public TraceLoggingTypeInfo_1_t80BF4A689F205E66ABE5177817C623F9DF91E6CD { public: public: }; // System.Diagnostics.Tracing.StringTypeInfo struct StringTypeInfo_tBDB74156A62E8057C5232323FF288C600F49BE26 : public TraceLoggingTypeInfo_1_t34C750FAAA441003C34ECA6894E5D8640C78041D { public: public: }; // System.Diagnostics.Tracing.TimeSpanTypeInfo struct TimeSpanTypeInfo_t81B67AE1FF6747F715CCBD69C3F45800A8D6BDFA : public TraceLoggingTypeInfo_1_t8DC6FE358F90681BDCCD5350065A9767D2AC90DD { public: public: }; // System.Diagnostics.Tracing.UInt16ArrayTypeInfo struct UInt16ArrayTypeInfo_tA6991CB11EA32DC5B9D742927714EB9C7484D7DE : public TraceLoggingTypeInfo_1_t97FDBDA4CF3677121784926A6B75A517CB7A0354 { public: public: }; // System.Diagnostics.Tracing.UInt16TypeInfo struct UInt16TypeInfo_t468F411BD1B3584AF68A41C85B381CFA03832D7E : public TraceLoggingTypeInfo_1_tCBF51B2E677BE976178EC8AC986798F9B65E2EC6 { public: public: }; // System.Diagnostics.Tracing.UInt32ArrayTypeInfo struct UInt32ArrayTypeInfo_tBBD9B05BCF6D59A1A1D755DB774FAE24B2489EBC : public TraceLoggingTypeInfo_1_t8AE0E093509BB6D0AF1B5A1D5F17DAD0FC17FBAB { public: public: }; // System.Diagnostics.Tracing.UInt32TypeInfo struct UInt32TypeInfo_tB421E50E75E7CF429F488D89989FEC4791D1AE59 : public TraceLoggingTypeInfo_1_tC4AD26ADEB2206747827432E8A7EDA1A37681F10 { public: public: }; // System.Diagnostics.Tracing.UInt64ArrayTypeInfo struct UInt64ArrayTypeInfo_t7A203D5FBE0E98A82FF152A9AA52DA65846276D5 : public TraceLoggingTypeInfo_1_t6EE8951B7314721A44CBD852551DAAF5CB72F606 { public: public: }; // System.Diagnostics.Tracing.UInt64TypeInfo struct UInt64TypeInfo_t36BF0D3F2BEF8E853D4640EB2E25D193F3F4438E : public TraceLoggingTypeInfo_1_t2BDE5AE3D48BE884906B4ABADD9FA7EB16AD333C { public: public: }; // System.Diagnostics.Tracing.UIntPtrArrayTypeInfo struct UIntPtrArrayTypeInfo_tAEBBC02218BE858DCF8856D19C991781A165251C : public TraceLoggingTypeInfo_1_tD16C7A6EA0D37CFA5AC0AED1A07D919210983479 { public: public: }; // System.Diagnostics.Tracing.UIntPtrTypeInfo struct UIntPtrTypeInfo_t0B3F2074A32C0E180DC21FA16B46DCEC3E3E001D : public TraceLoggingTypeInfo_1_tB931FCDE5F91B9AE5C5515AA58B5518C97F86330 { public: public: }; // System.DivideByZeroException struct DivideByZeroException_tD233835DD9A31EE4E64DD93F2D6143646CFD3FBC : public ArithmeticException_tF9EF5FE94597830EF315C5934258F994B8648269 { public: public: }; // System.DllNotFoundException struct DllNotFoundException_tED90B6A78D4CF5AA565288E0BA88A990062A7F76 : public TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1 { public: public: }; // System.EntryPointNotFoundException struct EntryPointNotFoundException_tCF689617164B79AD85A41DADB38D27BD1E10B279 : public TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1 { public: public: }; // System.FieldAccessException struct FieldAccessException_tBFF096C9CF3CA2BF95A3D596D7E50EF32B178BDF : public MemberAccessException_tDA869AFFB4FC1EA0EEF3143D85999710AC4774F0 { public: public: }; // System.IO.FileNotFoundException struct FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431 : public IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA { public: // System.String System.IO.FileNotFoundException::_fileName String_t* ____fileName_18; // System.String System.IO.FileNotFoundException::_fusionLog String_t* ____fusionLog_19; public: inline static int32_t get_offset_of__fileName_18() { return static_cast<int32_t>(offsetof(FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431, ____fileName_18)); } inline String_t* get__fileName_18() const { return ____fileName_18; } inline String_t** get_address_of__fileName_18() { return &____fileName_18; } inline void set__fileName_18(String_t* value) { ____fileName_18 = value; Il2CppCodeGenWriteBarrier((void**)(&____fileName_18), (void*)value); } inline static int32_t get_offset_of__fusionLog_19() { return static_cast<int32_t>(offsetof(FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431, ____fusionLog_19)); } inline String_t* get__fusionLog_19() const { return ____fusionLog_19; } inline String_t** get_address_of__fusionLog_19() { return &____fusionLog_19; } inline void set__fusionLog_19(String_t* value) { ____fusionLog_19 = value; Il2CppCodeGenWriteBarrier((void**)(&____fusionLog_19), (void*)value); } }; // System.RuntimeType struct RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F : public TypeInfo_t9D6F65801A41B97F36138B15FD270A1550DBB3FC { public: // System.MonoTypeInfo System.RuntimeType::type_info MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D * ___type_info_26; // System.Object System.RuntimeType::GenericCache RuntimeObject * ___GenericCache_27; // System.Reflection.RuntimeConstructorInfo System.RuntimeType::m_serializationCtor RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D * ___m_serializationCtor_28; public: inline static int32_t get_offset_of_type_info_26() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F, ___type_info_26)); } inline MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D * get_type_info_26() const { return ___type_info_26; } inline MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D ** get_address_of_type_info_26() { return &___type_info_26; } inline void set_type_info_26(MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D * value) { ___type_info_26 = value; Il2CppCodeGenWriteBarrier((void**)(&___type_info_26), (void*)value); } inline static int32_t get_offset_of_GenericCache_27() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F, ___GenericCache_27)); } inline RuntimeObject * get_GenericCache_27() const { return ___GenericCache_27; } inline RuntimeObject ** get_address_of_GenericCache_27() { return &___GenericCache_27; } inline void set_GenericCache_27(RuntimeObject * value) { ___GenericCache_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___GenericCache_27), (void*)value); } inline static int32_t get_offset_of_m_serializationCtor_28() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F, ___m_serializationCtor_28)); } inline RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D * get_m_serializationCtor_28() const { return ___m_serializationCtor_28; } inline RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D ** get_address_of_m_serializationCtor_28() { return &___m_serializationCtor_28; } inline void set_m_serializationCtor_28(RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D * value) { ___m_serializationCtor_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_serializationCtor_28), (void*)value); } }; struct RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields { public: // System.RuntimeType System.RuntimeType::ValueType RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___ValueType_10; // System.RuntimeType System.RuntimeType::EnumType RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___EnumType_11; // System.RuntimeType System.RuntimeType::ObjectType RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___ObjectType_12; // System.RuntimeType System.RuntimeType::StringType RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___StringType_13; // System.RuntimeType System.RuntimeType::DelegateType RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___DelegateType_14; // System.Type[] System.RuntimeType::s_SICtorParamTypes TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___s_SICtorParamTypes_15; // System.RuntimeType System.RuntimeType::s_typedRef RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___s_typedRef_25; public: inline static int32_t get_offset_of_ValueType_10() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___ValueType_10)); } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_ValueType_10() const { return ___ValueType_10; } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_ValueType_10() { return &___ValueType_10; } inline void set_ValueType_10(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value) { ___ValueType_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___ValueType_10), (void*)value); } inline static int32_t get_offset_of_EnumType_11() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___EnumType_11)); } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_EnumType_11() const { return ___EnumType_11; } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_EnumType_11() { return &___EnumType_11; } inline void set_EnumType_11(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value) { ___EnumType_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___EnumType_11), (void*)value); } inline static int32_t get_offset_of_ObjectType_12() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___ObjectType_12)); } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_ObjectType_12() const { return ___ObjectType_12; } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_ObjectType_12() { return &___ObjectType_12; } inline void set_ObjectType_12(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value) { ___ObjectType_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___ObjectType_12), (void*)value); } inline static int32_t get_offset_of_StringType_13() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___StringType_13)); } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_StringType_13() const { return ___StringType_13; } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_StringType_13() { return &___StringType_13; } inline void set_StringType_13(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value) { ___StringType_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___StringType_13), (void*)value); } inline static int32_t get_offset_of_DelegateType_14() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___DelegateType_14)); } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_DelegateType_14() const { return ___DelegateType_14; } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_DelegateType_14() { return &___DelegateType_14; } inline void set_DelegateType_14(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value) { ___DelegateType_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___DelegateType_14), (void*)value); } inline static int32_t get_offset_of_s_SICtorParamTypes_15() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___s_SICtorParamTypes_15)); } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_s_SICtorParamTypes_15() const { return ___s_SICtorParamTypes_15; } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_s_SICtorParamTypes_15() { return &___s_SICtorParamTypes_15; } inline void set_s_SICtorParamTypes_15(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value) { ___s_SICtorParamTypes_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_SICtorParamTypes_15), (void*)value); } inline static int32_t get_offset_of_s_typedRef_25() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___s_typedRef_25)); } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_s_typedRef_25() const { return ___s_typedRef_25; } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_s_typedRef_25() { return &___s_typedRef_25; } inline void set_s_typedRef_25(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value) { ___s_typedRef_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_typedRef_25), (void*)value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // System.Reflection.ParameterInfo[] struct ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694 : public RuntimeArray { public: ALIGN_FIELD (8) ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * m_Items[1]; public: inline ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.UInt32[] struct UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB : public RuntimeArray { public: ALIGN_FIELD (8) uint32_t m_Items[1]; public: inline uint32_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline uint32_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, uint32_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline uint32_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline uint32_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, uint32_t value) { m_Items[index] = value; } }; // System.Byte[] struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821 : public RuntimeArray { public: ALIGN_FIELD (8) uint8_t m_Items[1]; public: inline uint8_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline uint8_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, uint8_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value) { m_Items[index] = value; } }; // System.Guid[] struct GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF : public RuntimeArray { public: ALIGN_FIELD (8) Guid_t m_Items[1]; public: inline Guid_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Guid_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, Guid_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Guid_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Guid_t * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Guid_t value) { m_Items[index] = value; } }; // System.Int16[] struct Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28 : public RuntimeArray { public: ALIGN_FIELD (8) int16_t m_Items[1]; public: inline int16_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline int16_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, int16_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline int16_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline int16_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, int16_t value) { m_Items[index] = value; } }; // System.Int32[] struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83 : public RuntimeArray { public: ALIGN_FIELD (8) int32_t m_Items[1]; public: inline int32_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline int32_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, int32_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value) { m_Items[index] = value; } }; // System.Int64[] struct Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F : public RuntimeArray { public: ALIGN_FIELD (8) int64_t m_Items[1]; public: inline int64_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline int64_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, int64_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline int64_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline int64_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, int64_t value) { m_Items[index] = value; } }; // System.IntPtr[] struct IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD : public RuntimeArray { public: ALIGN_FIELD (8) intptr_t m_Items[1]; public: inline intptr_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline intptr_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, intptr_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline intptr_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline intptr_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, intptr_t value) { m_Items[index] = value; } }; // System.Object[] struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A : public RuntimeArray { public: ALIGN_FIELD (8) RuntimeObject * m_Items[1]; public: inline RuntimeObject * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline RuntimeObject ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, RuntimeObject * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline RuntimeObject * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline RuntimeObject ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.String[] struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E : public RuntimeArray { public: ALIGN_FIELD (8) String_t* m_Items[1]; public: inline String_t* GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline String_t** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, String_t* value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline String_t* GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline String_t** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, String_t* value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Reflection.FieldInfo[] struct FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE : public RuntimeArray { public: ALIGN_FIELD (8) FieldInfo_t * m_Items[1]; public: inline FieldInfo_t * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline FieldInfo_t ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, FieldInfo_t * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline FieldInfo_t * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline FieldInfo_t ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, FieldInfo_t * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Globalization.CultureInfo[] struct CultureInfoU5BU5D_t5ABD12F26C65E5F6F3E7916401EAA322BA2BDF31 : public RuntimeArray { public: ALIGN_FIELD (8) CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * m_Items[1]; public: inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** 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, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.SByte[] struct SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889 : public RuntimeArray { public: ALIGN_FIELD (8) int8_t m_Items[1]; public: inline int8_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline int8_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, int8_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline int8_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline int8_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, int8_t value) { m_Items[index] = value; } }; // System.Single[] struct SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5 : public RuntimeArray { public: ALIGN_FIELD (8) float m_Items[1]; public: inline float GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline float* 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, float value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline float GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline float* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, float value) { m_Items[index] = value; } }; // System.Reflection.PropertyInfo[] struct PropertyInfoU5BU5D_tAD8E99B12FF99CA4F2EA37B612DE68E112B4CF7E : public RuntimeArray { public: ALIGN_FIELD (8) PropertyInfo_t * m_Items[1]; public: inline PropertyInfo_t * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline PropertyInfo_t ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, PropertyInfo_t * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline PropertyInfo_t * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline PropertyInfo_t ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, PropertyInfo_t * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Type[] struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F : public RuntimeArray { public: ALIGN_FIELD (8) Type_t * m_Items[1]; public: inline Type_t * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Type_t ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Type_t * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline Type_t * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Type_t ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Type_t * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Boolean[] struct BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040 : public RuntimeArray { public: ALIGN_FIELD (8) bool m_Items[1]; public: inline bool GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline bool* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, bool value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline bool GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline bool* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, bool value) { m_Items[index] = value; } }; // System.UInt16[] struct UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E : public RuntimeArray { public: ALIGN_FIELD (8) uint16_t m_Items[1]; public: inline uint16_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline uint16_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, uint16_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline uint16_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline uint16_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, uint16_t value) { m_Items[index] = value; } }; // System.UInt64[] struct UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4 : public RuntimeArray { public: ALIGN_FIELD (8) uint64_t m_Items[1]; public: inline uint64_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline uint64_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, uint64_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline uint64_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline uint64_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, uint64_t value) { m_Items[index] = value; } }; // System.UIntPtr[] struct UIntPtrU5BU5D_tD5404ABA0AA72923421D3F931F031EEEC654429E : public RuntimeArray { public: ALIGN_FIELD (8) uintptr_t m_Items[1]; public: inline uintptr_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline uintptr_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, uintptr_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline uintptr_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline uintptr_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, uintptr_t value) { m_Items[index] = value; } }; // System.Double[] struct DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D : public RuntimeArray { public: ALIGN_FIELD (8) double m_Items[1]; public: inline double GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline double* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, double value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline double GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline double* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, double value) { m_Items[index] = value; } }; // System.Char[] struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2 : public RuntimeArray { public: ALIGN_FIELD (8) Il2CppChar m_Items[1]; public: inline Il2CppChar GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Il2CppChar* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Il2CppChar value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Il2CppChar GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Il2CppChar* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Il2CppChar value) { m_Items[index] = value; } }; // System.Diagnostics.Tracing.TraceLoggingTypeInfo[] struct TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC : public RuntimeArray { public: ALIGN_FIELD (8) TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * m_Items[1]; public: inline TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F ** 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, TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Diagnostics.Tracing.PropertyAnalysis[] struct PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB : public RuntimeArray { public: ALIGN_FIELD (8) PropertyAnalysis_t3DC0F773245CD968BED647345E53535D422CF46A * m_Items[1]; public: inline PropertyAnalysis_t3DC0F773245CD968BED647345E53535D422CF46A * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline PropertyAnalysis_t3DC0F773245CD968BED647345E53535D422CF46A ** 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, PropertyAnalysis_t3DC0F773245CD968BED647345E53535D422CF46A * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline PropertyAnalysis_t3DC0F773245CD968BED647345E53535D422CF46A * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline PropertyAnalysis_t3DC0F773245CD968BED647345E53535D422CF46A ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, PropertyAnalysis_t3DC0F773245CD968BED647345E53535D422CF46A * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Delegate[] struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86 : public RuntimeArray { public: ALIGN_FIELD (8) Delegate_t * m_Items[1]; public: inline Delegate_t * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Delegate_t ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Delegate_t * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline Delegate_t * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Delegate_t ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Delegate_t * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Diagnostics.StackTrace[] struct StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196 : public RuntimeArray { public: ALIGN_FIELD (8) StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99 * m_Items[1]; public: inline StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99 * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99 ** 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, StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99 * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99 * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99 ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99 * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Runtime.CompilerServices.Ephemeron[] struct EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10 : public RuntimeArray { public: ALIGN_FIELD (8) Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA m_Items[1]; public: inline Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA * 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, Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA 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 Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA 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.Globalization.InternalCodePageDataItem[] struct InternalCodePageDataItemU5BU5D_t94CE8C20C6D99D9F2F13E2E7FA2C44007AE27834 : public RuntimeArray { public: ALIGN_FIELD (8) InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 m_Items[1]; public: inline InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 * 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, InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Names_3), (void*)NULL); } inline InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Names_3), (void*)NULL); } }; IL2CPP_EXTERN_C void ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshal_pinvoke(const ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB& unmarshaled, ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_pinvoke& marshaled); IL2CPP_EXTERN_C void ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshal_pinvoke_back(const ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_pinvoke& marshaled, ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB& unmarshaled); IL2CPP_EXTERN_C void ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshal_pinvoke_cleanup(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_pinvoke& marshaled); IL2CPP_EXTERN_C void ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshal_com(const ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB& unmarshaled, ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_com& marshaled); IL2CPP_EXTERN_C void ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshal_com_back(const ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_com& marshaled, ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB& unmarshaled); IL2CPP_EXTERN_C void ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshal_com_cleanup(ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_com& marshaled); IL2CPP_EXTERN_C void Exception_t_marshal_pinvoke(const Exception_t& unmarshaled, Exception_t_marshaled_pinvoke& marshaled); IL2CPP_EXTERN_C void Exception_t_marshal_pinvoke_back(const Exception_t_marshaled_pinvoke& marshaled, Exception_t& unmarshaled); IL2CPP_EXTERN_C void Exception_t_marshal_pinvoke_cleanup(Exception_t_marshaled_pinvoke& marshaled); IL2CPP_EXTERN_C void Exception_t_marshal_com(const Exception_t& unmarshaled, Exception_t_marshaled_com& marshaled); IL2CPP_EXTERN_C void Exception_t_marshal_com_back(const Exception_t_marshaled_com& marshaled, Exception_t& unmarshaled); IL2CPP_EXTERN_C void Exception_t_marshal_com_cleanup(Exception_t_marshaled_com& marshaled); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingTypeInfo_1__ctor_mE281DCCAC7AAA87CD49E26B9172B4A8BA78F5098_gshared (TraceLoggingTypeInfo_1_t30CA664F8DBC78F9161D725EAC6B8DB1F89C4C81 * __this, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Guid>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingTypeInfo_1__ctor_mF85058C60947C19E1EAEE1B9E63ED99C95BA5500_gshared (TraceLoggingTypeInfo_1_t2B55C9286BB1419C38C60FD4458507F64BDC8CE4 * __this, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int16>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingTypeInfo_1__ctor_mEAB8B1F0747CEA73920E36D26D76B9272356D3C5_gshared (TraceLoggingTypeInfo_1_t506240682C732B33C0D659D6DC744D966C2FE363 * __this, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int32>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingTypeInfo_1__ctor_m82F6AD14E6BE97115DADDEC3DA3FDC4F584915C2_gshared (TraceLoggingTypeInfo_1_tDD2B74A36968F646CCDFEB9CE4074A216009252C * __this, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int64>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingTypeInfo_1__ctor_m97EEF71CA5F9665188EDC573938751D81FF33EA3_gshared (TraceLoggingTypeInfo_1_t443169292A139EC54B708D4B6023EA2449412265 * __this, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.IntPtr>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingTypeInfo_1__ctor_mDCC9C954279A37C7FA0567804538C029E35D1AC8_gshared (TraceLoggingTypeInfo_1_t49721B614FCA52E6F380ACEE1AE32F5BA19815F1 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m7D745ADE56151C2895459668F4A4242985E526D8_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, const RuntimeMethod* method); // 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); // System.Void System.Collections.Generic.List`1<System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mC832F1AC0F814BAEB19175F5D7972A7507508BC3_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::TryGetValue(TKey,TValue&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_m867F6DA953678D0333A55270B7C6EF38EFC293FF_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, int32_t ___key0, RuntimeObject ** ___value1, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::set_Item(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_mF9A6FBE4006C89D15B8C88B2CB46E9B24D18B7FC_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, int32_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2<System.UInt64,System.Object>::TryGetValue(TKey,TValue&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_mF4D1D25DD6BDCD54B3E2E2C8819FB1D5D9132E8C_gshared (Dictionary_2_tEBCB8780311423F45937F4694A2C7B3F4894B54A * __this, uint64_t ___key0, RuntimeObject ** ___value1, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.UInt64,System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m906EEFA223D0EB7D68ABB5EE33EC593CC7A5BA78_gshared (Dictionary_2_tEBCB8780311423F45937F4694A2C7B3F4894B54A * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.UInt64,System.Object>::set_Item(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_mE3655B2903F36D670326D6C26C0A4E3C5A5869E9_gshared (Dictionary_2_tEBCB8780311423F45937F4694A2C7B3F4894B54A * __this, uint64_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Int32>::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m020F9255F34CF1C83F40396FACCAB453009967BC_gshared (List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * __this, int32_t ___capacity0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Int32>::Add(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Add_m50C0D1F69B2EF31137658E2F052EBBAC7BF82771_gshared (List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * __this, int32_t ___item0, const RuntimeMethod* method); // 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); // 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); // 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); // 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); // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::get_Keys() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyCollection_t959836ABE6844545BF46886E66ADE46030115A4A * Dictionary_2_get_Keys_mA4A8C65DA5C29DC0C967EDF49569871850032ABE_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Int32>::.ctor(System.Collections.Generic.IEnumerable`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m262B3A833A8A33F720DDF70DABD4C455423A6797_gshared (List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * __this, RuntimeObject* ___collection0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Int32>::Sort() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_m723A6BEBAB430277CD79C8BD7D63DEF94E0BBB0A_gshared (List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * __this, const RuntimeMethod* method); // System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<System.Int32>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 List_1_GetEnumerator_mE721B3C5E137DCDB408BE05CA472EECBAAAA418A_gshared (List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<System.Int32>::get_Current() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m219EC3BCCD8CF3A474AD0C4DBA55EB9B74C9F89C_gshared_inline (Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::get_Item(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Dictionary_2_get_Item_mEFECE2769017AB70A9B1E7F5F8BBA59375620B54_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, int32_t ___key0, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int32>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m42C746E84C832B62E93536A47B4086F3A3AC6609_gshared (Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Int32>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m902D0B2B4B4B589E6F3653D9CDB38E0AA97EBCF9_gshared (Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 * __this, const RuntimeMethod* method); // 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); // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Object>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tB5076FB1730C18188DBB208FD1B6870FC5A660E6 ValueCollection_GetEnumerator_m7A12639A28DE8959DC682764BF2582EA59CDAFE0_gshared (ValueCollection_t0816666499CBD11E58E1E7C79A4EFC2AA47E08A2 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::get_Current() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m29EC6C6EB1047528546CB514A575C8C4EFA48E1C_gshared_inline (Enumerator_tB5076FB1730C18188DBB208FD1B6870FC5A660E6 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m350743CACD3C814992ECBC0A503B3275F6429F93_gshared (Enumerator_tB5076FB1730C18188DBB208FD1B6870FC5A660E6 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m12F4E079ED28B6FD3BC6A1B509EB6EA604F9CFA0_gshared (Enumerator_tB5076FB1730C18188DBB208FD1B6870FC5A660E6 * __this, const RuntimeMethod* method); // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.UInt64,System.Object>::get_Keys() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyCollection_tE4E0223181A9DB1608389430F309FD4679105FED * Dictionary_2_get_Keys_m9DB49BB9ED30ED6936F96A94C8B327F8B2F46514_gshared (Dictionary_2_tEBCB8780311423F45937F4694A2C7B3F4894B54A * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.UInt64>::.ctor(System.Collections.Generic.IEnumerable`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m70ED87E74F77E9BA83922D9D503C21E2F1F3B20F_gshared (List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8 * __this, RuntimeObject* ___collection0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.UInt64>::Sort() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_m9EC38ED6BC1D49988744517F589D90B3106537B8_gshared (List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8 * __this, const RuntimeMethod* method); // System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<System.UInt64>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t46B8FA0EA6058B0B5871CE816B84FA8AAF77208B List_1_GetEnumerator_m648284040ECC710040C8DE7B08CC0795512F92F7_gshared (List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8 * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<System.UInt64>::get_Current() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR uint64_t Enumerator_get_Current_m7E3BB9CBEBA4C07616DE07B4857E30FD01D97267_gshared_inline (Enumerator_t46B8FA0EA6058B0B5871CE816B84FA8AAF77208B * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2<System.UInt64,System.Object>::get_Item(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Dictionary_2_get_Item_mE690999065C48F6233FAD2AD14A1ECDB5CE79FAE_gshared (Dictionary_2_tEBCB8780311423F45937F4694A2C7B3F4894B54A * __this, uint64_t ___key0, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.UInt64>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m99D84216FD83EC374968B5CAEE8F276D2CDFBB34_gshared (Enumerator_t46B8FA0EA6058B0B5871CE816B84FA8AAF77208B * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.UInt64>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m97BA3C80D3997BCF6307DC3D96E2EBC4BEAA1FCE_gshared (Enumerator_t46B8FA0EA6058B0B5871CE816B84FA8AAF77208B * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Object>::Add(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, RuntimeObject * ___item0, const RuntimeMethod* method); // 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); // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Object>::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t KeyCollection_get_Count_mCE7D1150E953251EDA2A70DEF592547DE1BF1C51_gshared (KeyCollection_t0394DE2BA7C2C82605C6E9DEBB21A8C5C792E97C * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.Object,System.Object>::CopyTo(TKey[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyCollection_CopyTo_mBD233D9F57FDF9A975ECD4B4984CD183B8D7CBB9_gshared (KeyCollection_t0394DE2BA7C2C82605C6E9DEBB21A8C5C792E97C * __this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, int32_t ___index1, const RuntimeMethod* method); // System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<System.Object>::get_Default() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7 * Comparer_1_get_Default_m84DEFB8B389618F98B055848A21DEAB2782581A3_gshared (const RuntimeMethod* method); // System.Void System.Comparison`1<System.Object>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Comparison_1__ctor_m3445CDEBFFF4A3A9EAED69CBCC2D247630CA5BD4_gshared (Comparison_1_tD9DBDF7B2E4774B4D35E113A76D75828A24641F4 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Collections.Generic.ArraySortHelper`1<System.Object>::IntrospectiveSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySortHelper_1_IntrospectiveSort_m6FD136CFAE06EB8ADA3FE57C7921E8323F756D81_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___keys0, int32_t ___left1, int32_t ___length2, Comparison_1_tD9DBDF7B2E4774B4D35E113A76D75828A24641F4 * ___comparer3, const RuntimeMethod* method); // System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<System.Object>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD List_1_GetEnumerator_m52CC760E475D226A2B75048D70C4E22692F9F68D_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<System.Object>::get_Current() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_mD7829C7E8CFBEDD463B15A951CDE9B90A12CC55C_gshared_inline (Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m38B1099DDAD7EEDE2F4CDAB11C095AC784AC2E34_gshared (Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m94D0DAE031619503CDA6E53C5C3CC78AF3139472_gshared (Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1<System.Object>::Contains(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Contains_mE08D561E86879A26245096C572A8593279383FDB_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, RuntimeObject * ___item0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Object>::Insert(System.Int32,T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Insert_m327E513FB78F72441BBF2756AFCC788F89A4FA52_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, int32_t ___index0, RuntimeObject * ___item1, const RuntimeMethod* method); // System.Void System.Action`2<System.Char,System.Object>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2__ctor_mA2639DB159E3B05930C6A2D4ADA031412CCFB1A0_gshared (Action_2_t2F784F6A8F0E6D7B6C7C73DCA17B1CCA8D724E48 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Action`2<System.Char,System.Object>::Invoke(T1,T2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2_Invoke_mB35D966442076362FBEEAD952988680900A4B476_gshared (Action_2_t2F784F6A8F0E6D7B6C7C73DCA17B1CCA8D724E48 * __this, Il2CppChar ___arg10, RuntimeObject * ___arg21, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.ConcurrentSetItem`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>,System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentSetItem_2__ctor_m75D499F3307E096304E97A6D4B538505B34887BA_gshared (ConcurrentSetItem_2_t270F9459B47B76BFB74FE28134B90289F5DA3E57 * __this, const RuntimeMethod* method); // 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.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.SByte>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingTypeInfo_1__ctor_mB444AA3C7505EF658C4A9D495C286724373DC704_gshared (TraceLoggingTypeInfo_1_tBCFB1C63D7D7837A0D7EAC07CF250A313B982794 * __this, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Single>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingTypeInfo_1__ctor_mE657899584504CCB3DEE1E1E6B1B6BE1D4F9A182_gshared (TraceLoggingTypeInfo_1_t80BF4A689F205E66ABE5177817C623F9DF91E6CD * __this, const RuntimeMethod* method); // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int32>::get_Instance() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TraceLoggingTypeInfo_1_tDD2B74A36968F646CCDFEB9CE4074A216009252C * TraceLoggingTypeInfo_1_get_Instance_m8E59BB0AA299E5B826302E9355FD9A9D0E97B2CE_gshared (const RuntimeMethod* method); // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int64>::get_Instance() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TraceLoggingTypeInfo_1_t443169292A139EC54B708D4B6023EA2449412265 * TraceLoggingTypeInfo_1_get_Instance_m2C1BF8D240A8DEA3E364B6D04AE9994EBDBF915B_gshared (const RuntimeMethod* method); // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Object>::get_Instance() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TraceLoggingTypeInfo_1_t30CA664F8DBC78F9161D725EAC6B8DB1F89C4C81 * TraceLoggingTypeInfo_1_get_Instance_mD764A11872BA740CAF856826BC8F3D92BD7E993D_gshared (const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.TimeSpan>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingTypeInfo_1__ctor_m004FC4E35CAD0B857DC5BE29F01043DB25191055_gshared (TraceLoggingTypeInfo_1_t8DC6FE358F90681BDCCD5350065A9767D2AC90DD * __this, 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); // ItemType System.Diagnostics.Tracing.ConcurrentSet`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>,System.Object>::TryGet(KeyType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ConcurrentSet_2_TryGet_m85702C3EAF2460866D4BCD060A99A96439048163_gshared (ConcurrentSet_2_t9516DF2A374BF5F2AFB74F8D934FD6A442A8AACA * __this, KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 ___key0, const RuntimeMethod* method); // ItemType System.Diagnostics.Tracing.ConcurrentSet`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>,System.Object>::GetOrAdd(ItemType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ConcurrentSet_2_GetOrAdd_m3E6C5927019CAD8F66DDC2094DBCEF1E18BCC778_gshared (ConcurrentSet_2_t9516DF2A374BF5F2AFB74F8D934FD6A442A8AACA * __this, RuntimeObject * ___newItem0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Object>::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mEE468B81D8E7C140F567D10FF7F5894A50EEEA57_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, int32_t ___capacity0, const RuntimeMethod* method); // AttributeType System.Diagnostics.Tracing.Statics::GetCustomAttribute<System.Object>(System.Reflection.PropertyInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Statics_GetCustomAttribute_TisRuntimeObject_mA9698B61A4CDAC84F1A0602F4268A8F124A3CAA4_gshared (PropertyInfo_t * ___propInfo0, const RuntimeMethod* method); // T[] System.Collections.Generic.List`1<System.Object>::ToArray() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* List_1_ToArray_m801D4DEF3587F60F463F04EEABE5CBE711FE5612_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UInt16>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingTypeInfo_1__ctor_mFFED700B80F94A8188F571B29E46272FFE165F68_gshared (TraceLoggingTypeInfo_1_tCBF51B2E677BE976178EC8AC986798F9B65E2EC6 * __this, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UInt32>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingTypeInfo_1__ctor_m9EF45CC40F98B8EEFE771610BD4833DB80064A48_gshared (TraceLoggingTypeInfo_1_tC4AD26ADEB2206747827432E8A7EDA1A37681F10 * __this, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UInt64>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingTypeInfo_1__ctor_m090791EDB460E88AD83B65DB619AD6940D7A21A5_gshared (TraceLoggingTypeInfo_1_t2BDE5AE3D48BE884906B4ABADD9FA7EB16AD333C * __this, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UIntPtr>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingTypeInfo_1__ctor_m01A1D2608814C21461FAC61AB3206112FFB03471_gshared (TraceLoggingTypeInfo_1_tB931FCDE5F91B9AE5C5515AA58B5518C97F86330 * __this, const RuntimeMethod* method); // System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<System.UInt64>::get_Default() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC * Comparer_1_get_Default_mDDE26044E0F352546BE2390402A0236FE376FB3C_gshared (const RuntimeMethod* method); // System.Void System.Array::Sort<System.UInt64,System.Object>(TKey[],TValue[],System.Collections.Generic.IComparer`1<TKey>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Sort_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_TisRuntimeObject_m576D13AEC7245A3AD8E7A5BF192F68C522E5CB85_gshared (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* ___keys0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___items1, RuntimeObject* ___comparer2, const RuntimeMethod* method); // 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); // System.IntPtr System.IntPtr::op_Explicit(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t IntPtr_op_Explicit_m534152049CE3084CEFA1CD8B1BA74F3C085A2ABF (int64_t ___value0, const RuntimeMethod* method); // System.IntPtr System.Diagnostics.Tracing.EventSource/EventData::get_DataPointer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t EventData_get_DataPointer_mBC2F8ECE956F3A8B3D24BCC48512C6C153C978DA (EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * __this, const RuntimeMethod* method); // System.Int64 System.IntPtr::op_Explicit(System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t IntPtr_op_Explicit_m254924E8680FCCF870F18064DC0B114445B09172 (intptr_t ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.EventSource/EventData::set_DataPointer(System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventData_set_DataPointer_mCBFBFF7CED553A233032A89F0F0EC16FDFCD62B4 (EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * __this, intptr_t ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.EventSource/EventData::set_Size(System.Int32) IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void EventData_set_Size_m43C4529AD157BEC415C9338748703B06D1B63579_inline (EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * __this, int32_t ___value0, const RuntimeMethod* method); // System.UIntPtr System.UIntPtr::op_Explicit(System.Void*) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uintptr_t UIntPtr_op_Explicit_m484C2BD47D35FBD254A95FD56CCABD27CC79C95F (void* ___value0, const RuntimeMethod* method); // System.UInt64 System.UIntPtr::op_Explicit(System.UIntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t UIntPtr_op_Explicit_m0F6E9EC046D4A796A257B9C2192A21051DC90075 (uintptr_t ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.EventSource/EventData::SetMetadata(System.Byte*,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventData_SetMetadata_m2638D08FE5AD0F8A4B207B83E014385991E7CF88 (EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * __this, uint8_t* ___pointer0, int32_t ___size1, int32_t ___reserved2, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.EventProvider::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventProvider__ctor_m3B50CC1BF097459B596C77B56561A089D9397AD9 (EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483 * __this, const RuntimeMethod* method); // System.Boolean System.Diagnostics.Tracing.EventProvider::IsEnabled() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool EventProvider_IsEnabled_m3C139A2AA66437973E6E41421D09300222F2CC4B_inline (EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483 * __this, const RuntimeMethod* method); // System.Diagnostics.Tracing.EventLevel System.Diagnostics.Tracing.EventProvider::get_Level() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t EventProvider_get_Level_m68A0811632D34B78A4C86E545AE957EAE1819B51_inline (EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483 * __this, const RuntimeMethod* method); // System.Diagnostics.Tracing.EventKeywords System.Diagnostics.Tracing.EventProvider::get_MatchAnyKeyword() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int64_t EventProvider_get_MatchAnyKeyword_mAB5C8F8500A479EA5294786DA79D8147A6681D2D_inline (EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483 * __this, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.EventSource::SendCommand(System.Diagnostics.Tracing.EventListener,System.Int32,System.Int32,System.Diagnostics.Tracing.EventCommand,System.Boolean,System.Diagnostics.Tracing.EventLevel,System.Diagnostics.Tracing.EventKeywords,System.Collections.Generic.IDictionary`2<System.String,System.String>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSource_SendCommand_mC04C4889CCB21B58C052A48E030C4655B5CA74DE (EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB * __this, EventListener_t9B86F76EF72340DCFA9AD7715776E2C3988144A6 * ___listener0, int32_t ___perEventSourceSessionId1, int32_t ___etwSessionId2, int32_t ___command3, bool ___enable4, int32_t ___level5, int64_t ___matchAnyKeyword6, RuntimeObject* ___commandArguments7, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.EventSource/Sha1ForNonSecretPurposes::Start() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Sha1ForNonSecretPurposes_Start_mA97AC00189A011EF6E62617B21C6E2CEEE480941 (Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 * __this, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.EventSource/Sha1ForNonSecretPurposes::Drain() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Sha1ForNonSecretPurposes_Drain_m506D32DBB98E741CDF8674DDCB6808B35A8C48A8 (Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 * __this, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.EventSource/Sha1ForNonSecretPurposes::Append(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Sha1ForNonSecretPurposes_Append_m6B1A3F8758C2E73925709AC34E208A4E6051E1B1 (Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 * __this, uint8_t ___input0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.EventSource/Sha1ForNonSecretPurposes::Append(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Sha1ForNonSecretPurposes_Append_mE38C1265578CD69E60160CBC417DC10FB05D367C (Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___input0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.EventSource/Sha1ForNonSecretPurposes::Finish(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Sha1ForNonSecretPurposes_Finish_mE22BAFF41954BF42E561E6ECB08E549FC867D927 (Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___output0, const RuntimeMethod* method); // System.UInt32 System.Diagnostics.Tracing.EventSource/Sha1ForNonSecretPurposes::Rol1(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Sha1ForNonSecretPurposes_Rol1_m77257ADE4C12D9216F61D909B7C217647BE37BED (uint32_t ___input0, const RuntimeMethod* method); // System.UInt32 System.Diagnostics.Tracing.EventSource/Sha1ForNonSecretPurposes::Rol5(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Sha1ForNonSecretPurposes_Rol5_m059118E8DFAC985AC4A28DA77D57CA02EE854EFD (uint32_t ___input0, const RuntimeMethod* method); // System.UInt32 System.Diagnostics.Tracing.EventSource/Sha1ForNonSecretPurposes::Rol30(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Sha1ForNonSecretPurposes_Rol30_m866BB946519D295C48B706551F4C9048B337B52F (uint32_t ___input0, const RuntimeMethod* method); // System.Void System.Attribute::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0 (Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * __this, const RuntimeMethod* method); // System.Void System.EventArgs::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventArgs__ctor_m3551293259861C5A78CD47689D559F828ED29DF7 (EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * __this, const RuntimeMethod* method); // System.String System.Environment::GetResourceString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9 (String_t* ___key0, const RuntimeMethod* method); // System.Void System.Exception::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_m89BADFF36C3B170013878726E07729D51AA9FBE0 (Exception_t * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void System.Exception::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_m62590BC1925B7B354EBFD852E162CD170FEB861D (Exception_t * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method); // System.Void System.Exception::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_mBFF5996A1B65FCEEE0054A95A652BA3DD6366618 (Exception_t * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.EventSourceOptions::set_Level(System.Diagnostics.Tracing.EventLevel) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSourceOptions_set_Level_m340628B5F059DE8CD72F0094BBB29D6EADFD39D4 (EventSourceOptions_tB3B2EDA0BF087FEB0198CF64451FAAF4C1B3002C * __this, int32_t ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.EventSourceOptions::set_Opcode(System.Diagnostics.Tracing.EventOpcode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSourceOptions_set_Opcode_m4763851B2C99E961E725331B973501E21F17B854 (EventSourceOptions_tB3B2EDA0BF087FEB0198CF64451FAAF4C1B3002C * __this, int32_t ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.EventSourceOptions::set_Keywords(System.Diagnostics.Tracing.EventKeywords) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSourceOptions_set_Keywords_m1D14E58898680877AB26459A21B160F955A34187 (EventSourceOptions_tB3B2EDA0BF087FEB0198CF64451FAAF4C1B3002C * __this, int64_t ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.FieldMetadata::.ctor(System.String,System.Diagnostics.Tracing.TraceLoggingDataType,System.Diagnostics.Tracing.EventFieldTags,System.Byte,System.UInt16,System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FieldMetadata__ctor_m51883151B3EB815CC989B0B05F401145A0172363 (FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * __this, String_t* ___name0, int32_t ___dataType1, int32_t ___tags2, uint8_t ___countFlags3, uint16_t ___fixedCount4, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___custom5, 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.ArgumentNullException::.ctor(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * __this, String_t* ___paramName0, String_t* ___message1, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.Statics::CheckName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Statics_CheckName_m001904DCAB16ACBA3DB970F2497D6032BBE26EDE (String_t* ___name0, const RuntimeMethod* method); // System.Text.Encoding System.Text.Encoding::get_UTF8() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9 (const RuntimeMethod* method); // System.Void System.NotSupportedException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Int32 System.String::get_Length() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline (String_t* __this, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.Statics::EncodeTags(System.Int32,System.Int32&,System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Statics_EncodeTags_m23393859C6E4565A03D11540CE8A133DBCC5A453 (int32_t ___tags0, int32_t* ___pos1, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___metadata2, const RuntimeMethod* method); // System.Void System.Buffer::BlockCopy(System.Array,System.Int32,System.Array,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353 (RuntimeArray * ___src0, int32_t ___srcOffset1, RuntimeArray * ___dst2, int32_t ___dstOffset3, int32_t ___count4, const RuntimeMethod* method); // System.Diagnostics.Tracing.TraceLoggingDataType System.Diagnostics.Tracing.Statics::MakeDataType(System.Diagnostics.Tracing.TraceLoggingDataType,System.Diagnostics.Tracing.EventFieldFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Statics_MakeDataType_m9C2ED4465BB2F30FED6D80D9A5237168265DF644 (int32_t ___baseType0, int32_t ___format1, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingMetadataCollector::AddArray(System.String,System.Diagnostics.Tracing.TraceLoggingDataType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingMetadataCollector_AddArray_m9074593EAE95D13523B4F7CF7FB94019CF49F406 (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, String_t* ___name0, int32_t ___type1, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddArray(System.Guid[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddArray_m817113A967AFB39C7DA9417AB3B90D48CAF2381A (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Guid[]>::.ctor() inline void TraceLoggingTypeInfo_1__ctor_m1498500B66412E0A994E03FB84653C2DA750738F (TraceLoggingTypeInfo_1_t5CD19345E04791061E49735C40A06560D1015A81 * __this, const RuntimeMethod* method) { (( void (*) (TraceLoggingTypeInfo_1_t5CD19345E04791061E49735C40A06560D1015A81 *, const RuntimeMethod*))TraceLoggingTypeInfo_1__ctor_mE281DCCAC7AAA87CD49E26B9172B4A8BA78F5098_gshared)(__this, method); } // System.Void System.Diagnostics.Tracing.TraceLoggingMetadataCollector::AddScalar(System.String,System.Diagnostics.Tracing.TraceLoggingDataType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingMetadataCollector_AddScalar_m136E01C1CEEFA221D5F78507069DFE8590CC15FB (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, String_t* ___name0, int32_t ___type1, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddScalar(System.Guid) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddScalar_m7CCD2526F15B901CC200BA8767D1293C8A50FF2D (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, Guid_t ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Guid>::.ctor() inline void TraceLoggingTypeInfo_1__ctor_mF85058C60947C19E1EAEE1B9E63ED99C95BA5500 (TraceLoggingTypeInfo_1_t2B55C9286BB1419C38C60FD4458507F64BDC8CE4 * __this, const RuntimeMethod* method) { (( void (*) (TraceLoggingTypeInfo_1_t2B55C9286BB1419C38C60FD4458507F64BDC8CE4 *, const RuntimeMethod*))TraceLoggingTypeInfo_1__ctor_mF85058C60947C19E1EAEE1B9E63ED99C95BA5500_gshared)(__this, method); } // System.Diagnostics.Tracing.TraceLoggingDataType System.Diagnostics.Tracing.Statics::Format16(System.Diagnostics.Tracing.EventFieldFormat,System.Diagnostics.Tracing.TraceLoggingDataType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Statics_Format16_m307BF384650F500E54F521F17E146DBBB98F4D08 (int32_t ___format0, int32_t ___native1, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddArray(System.Int16[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddArray_m1BC48EAF4F2E9DA95AE76D9EA98B44C20E79F01D (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28* ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int16[]>::.ctor() inline void TraceLoggingTypeInfo_1__ctor_m86992A2F1FF2D81BA2B30133266B2D666748C447 (TraceLoggingTypeInfo_1_t48333D5529FE3B84602B0DC3CD4AE0F4B0D4BAE0 * __this, const RuntimeMethod* method) { (( void (*) (TraceLoggingTypeInfo_1_t48333D5529FE3B84602B0DC3CD4AE0F4B0D4BAE0 *, const RuntimeMethod*))TraceLoggingTypeInfo_1__ctor_mE281DCCAC7AAA87CD49E26B9172B4A8BA78F5098_gshared)(__this, method); } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddScalar(System.Int16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddScalar_mC374FF8A83BCBF186C122FBF7BE527B31E8519AD (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, int16_t ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int16>::.ctor() inline void TraceLoggingTypeInfo_1__ctor_mEAB8B1F0747CEA73920E36D26D76B9272356D3C5 (TraceLoggingTypeInfo_1_t506240682C732B33C0D659D6DC744D966C2FE363 * __this, const RuntimeMethod* method) { (( void (*) (TraceLoggingTypeInfo_1_t506240682C732B33C0D659D6DC744D966C2FE363 *, const RuntimeMethod*))TraceLoggingTypeInfo_1__ctor_mEAB8B1F0747CEA73920E36D26D76B9272356D3C5_gshared)(__this, method); } // System.Diagnostics.Tracing.TraceLoggingDataType System.Diagnostics.Tracing.Statics::Format32(System.Diagnostics.Tracing.EventFieldFormat,System.Diagnostics.Tracing.TraceLoggingDataType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Statics_Format32_mA958A8DDBBC7C05DD61B456C4835D04C34B508A4 (int32_t ___format0, int32_t ___native1, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddArray(System.Int32[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddArray_mA5562435B07941B497C390BADA90476D3AEE0545 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int32[]>::.ctor() inline void TraceLoggingTypeInfo_1__ctor_mC3DE0F2064400F830BCA0011DA3E156E880E0BB8 (TraceLoggingTypeInfo_1_t9B7E3D9AB547CAF187A5C9E97F07E2B5A58E2589 * __this, const RuntimeMethod* method) { (( void (*) (TraceLoggingTypeInfo_1_t9B7E3D9AB547CAF187A5C9E97F07E2B5A58E2589 *, const RuntimeMethod*))TraceLoggingTypeInfo_1__ctor_mE281DCCAC7AAA87CD49E26B9172B4A8BA78F5098_gshared)(__this, method); } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddScalar(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddScalar_mF71D9A7523C70D7771FE22212CB301288C22980A (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, int32_t ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int32>::.ctor() inline void TraceLoggingTypeInfo_1__ctor_m82F6AD14E6BE97115DADDEC3DA3FDC4F584915C2 (TraceLoggingTypeInfo_1_tDD2B74A36968F646CCDFEB9CE4074A216009252C * __this, const RuntimeMethod* method) { (( void (*) (TraceLoggingTypeInfo_1_tDD2B74A36968F646CCDFEB9CE4074A216009252C *, const RuntimeMethod*))TraceLoggingTypeInfo_1__ctor_m82F6AD14E6BE97115DADDEC3DA3FDC4F584915C2_gshared)(__this, method); } // System.Diagnostics.Tracing.TraceLoggingDataType System.Diagnostics.Tracing.Statics::Format64(System.Diagnostics.Tracing.EventFieldFormat,System.Diagnostics.Tracing.TraceLoggingDataType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Statics_Format64_m9EA165BBDCDC6E40774219DC6EB0214564FC5184 (int32_t ___format0, int32_t ___native1, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddArray(System.Int64[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddArray_m1AA74DD4E25E34905CD48CFCFBEBF4ABA32274D6 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int64[]>::.ctor() inline void TraceLoggingTypeInfo_1__ctor_m3BB638566503694A439D54D29DB751B923434141 (TraceLoggingTypeInfo_1_tA67F5E5AEDAD34F7E25836F622BB7510867903BD * __this, const RuntimeMethod* method) { (( void (*) (TraceLoggingTypeInfo_1_tA67F5E5AEDAD34F7E25836F622BB7510867903BD *, const RuntimeMethod*))TraceLoggingTypeInfo_1__ctor_mE281DCCAC7AAA87CD49E26B9172B4A8BA78F5098_gshared)(__this, method); } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddScalar(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddScalar_mE84AEED03D7F7EDD965444C4A8A575FF99B78E1A (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, int64_t ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int64>::.ctor() inline void TraceLoggingTypeInfo_1__ctor_m97EEF71CA5F9665188EDC573938751D81FF33EA3 (TraceLoggingTypeInfo_1_t443169292A139EC54B708D4B6023EA2449412265 * __this, const RuntimeMethod* method) { (( void (*) (TraceLoggingTypeInfo_1_t443169292A139EC54B708D4B6023EA2449412265 *, const RuntimeMethod*))TraceLoggingTypeInfo_1__ctor_m97EEF71CA5F9665188EDC573938751D81FF33EA3_gshared)(__this, method); } // System.Diagnostics.Tracing.TraceLoggingDataType System.Diagnostics.Tracing.Statics::FormatPtr(System.Diagnostics.Tracing.EventFieldFormat,System.Diagnostics.Tracing.TraceLoggingDataType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Statics_FormatPtr_m00FD8183206A97949E3FD18EF644E9E1F8B1A5D5 (int32_t ___format0, int32_t ___native1, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddArray(System.IntPtr[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddArray_mA0C2DF68F4375AA0226E8E489974B7348EFAA6A1 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.IntPtr[]>::.ctor() inline void TraceLoggingTypeInfo_1__ctor_m614D762DF15273729D702EB31D33C18EAC01009A (TraceLoggingTypeInfo_1_t7DDB9F3AED3B154D72AB8AE300434F50B56870C6 * __this, const RuntimeMethod* method) { (( void (*) (TraceLoggingTypeInfo_1_t7DDB9F3AED3B154D72AB8AE300434F50B56870C6 *, const RuntimeMethod*))TraceLoggingTypeInfo_1__ctor_mE281DCCAC7AAA87CD49E26B9172B4A8BA78F5098_gshared)(__this, method); } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddScalar(System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddScalar_m71E11032CE1F1164095A4E11CDC2660F0457B62B (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, intptr_t ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.IntPtr>::.ctor() inline void TraceLoggingTypeInfo_1__ctor_mDCC9C954279A37C7FA0567804538C029E35D1AC8 (TraceLoggingTypeInfo_1_t49721B614FCA52E6F380ACEE1AE32F5BA19815F1 * __this, const RuntimeMethod* method) { (( void (*) (TraceLoggingTypeInfo_1_t49721B614FCA52E6F380ACEE1AE32F5BA19815F1 *, const RuntimeMethod*))TraceLoggingTypeInfo_1__ctor_mDCC9C954279A37C7FA0567804538C029E35D1AC8_gshared)(__this, method); } // System.Void System.Text.StringBuilder::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E (StringBuilder_t * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.String>::.ctor() inline void Dictionary_2__ctor_m6C6B59C12BD62E890CCF5AF0366E3DA0F29ADE6C (Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C *, const RuntimeMethod*))Dictionary_2__ctor_m7D745ADE56151C2895459668F4A4242985E526D8_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2<System.String,System.String>::.ctor() inline void Dictionary_2__ctor_m5B1C279E77422BB0B2C7B0374ECF89E3224AF62B (Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC *, const RuntimeMethod*))Dictionary_2__ctor_m2C7E51568033239B506E15E7804A0B8658246498_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1<System.String>::.ctor() inline void List_1__ctor_mDA22758D73530683C950C5CCF39BDB4E7E1F3F06 (List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * __this, const RuntimeMethod* method) { (( void (*) (List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 *, const RuntimeMethod*))List_1__ctor_mC832F1AC0F814BAEB19175F5D7972A7507508BC3_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2<System.String,System.Collections.Generic.List`1<System.Int32>>::.ctor() inline void Dictionary_2__ctor_m7067EEB3CF8A52DE17DCCA02E2ABF40CC224BF28 (Dictionary_2_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28 * __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28 *, const RuntimeMethod*))Dictionary_2__ctor_m2C7E51568033239B506E15E7804A0B8658246498_gshared)(__this, method); } // System.Text.StringBuilder System.Text.StringBuilder::AppendLine(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_AppendLine_mA2F79A5F2CAA91B9F7917C0EB2B381357A395609 (StringBuilder_t * __this, String_t* ___value0, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::Append(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260 (StringBuilder_t * __this, String_t* ___value0, const RuntimeMethod* method); // System.String System.Guid::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Guid_ToString_m3024AB4FA6189BC28BE77BBD6A9F55841FE190A5 (Guid_t * __this, const RuntimeMethod* method); // System.String System.String::Replace(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Replace_m970DFB0A280952FA7D3BA20AB7A8FB9F80CF6470 (String_t* __this, String_t* ___oldValue0, String_t* ___newValue1, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::AppendLine() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9 (StringBuilder_t * __this, const RuntimeMethod* method); // System.String System.Environment::GetResourceString(System.String,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB (String_t* ___key0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___values1, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.ManifestBuilder::ManifestError(System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ManifestBuilder_ManifestError_mA178FBE087E34A3CC07873D32896191BF7C74A20 (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, String_t* ___msg0, bool ___runtimeCritical1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.String>::TryGetValue(TKey,TValue&) inline bool Dictionary_2_TryGetValue_m581BE284F430A27B34743D8438ADB091C70000FD (Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * __this, int32_t ___key0, String_t** ___value1, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C *, int32_t, String_t**, const RuntimeMethod*))Dictionary_2_TryGetValue_m867F6DA953678D0333A55270B7C6EF38EFC293FF_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.String::Equals(System.String,System.StringComparison) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Equals_mB42D01789A129C548840C18E9065ACF9412F1F84 (String_t* __this, String_t* ___value0, int32_t ___comparisonType1, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.String>::set_Item(TKey,TValue) inline void Dictionary_2_set_Item_m031E42C2E9C7C3EA36FF7FD2E6155B07C5BD268C (Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * __this, int32_t ___key0, String_t* ___value1, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C *, int32_t, String_t*, const RuntimeMethod*))Dictionary_2_set_Item_mF9A6FBE4006C89D15B8C88B2CB46E9B24D18B7FC_gshared)(__this, ___key0, ___value1, method); } // System.Globalization.CultureInfo System.Globalization.CultureInfo::get_CurrentCulture() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831 (const RuntimeMethod* method); // System.String System.UInt64::ToString(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UInt64_ToString_mF6F94603E535C161BBD87AC747A1F403C274E8CD (uint64_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.String System.String::Concat(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE (String_t* ___str00, String_t* ___str11, const RuntimeMethod* method); // System.Boolean System.String::StartsWith(System.String,System.StringComparison) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_StartsWith_m844A95C9A205A0F951B0C45634E0C222E73D0B49 (String_t* __this, String_t* ___value0, int32_t ___comparisonType1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2<System.UInt64,System.String>::TryGetValue(TKey,TValue&) inline bool Dictionary_2_TryGetValue_m77A3B26E0EDFCCEDB1FCBB4ABEF7C47F146296A8 (Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 * __this, uint64_t ___key0, String_t** ___value1, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 *, uint64_t, String_t**, const RuntimeMethod*))Dictionary_2_TryGetValue_mF4D1D25DD6BDCD54B3E2E2C8819FB1D5D9132E8C_gshared)(__this, ___key0, ___value1, method); } // System.Void System.Collections.Generic.Dictionary`2<System.UInt64,System.String>::.ctor() inline void Dictionary_2__ctor_m5C88DEF6F44E0685CA2079AA411B600A8734505A (Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 * __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 *, const RuntimeMethod*))Dictionary_2__ctor_m906EEFA223D0EB7D68ABB5EE33EC593CC7A5BA78_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2<System.UInt64,System.String>::set_Item(TKey,TValue) inline void Dictionary_2_set_Item_m99E7F592C4AA8A81755705784131ED187F20ECC0 (Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 * __this, uint64_t ___key0, String_t* ___value1, const RuntimeMethod* method) { (( void (*) (Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 *, uint64_t, String_t*, const RuntimeMethod*))Dictionary_2_set_Item_mE3655B2903F36D670326D6C26C0A4E3C5A5869E9_gshared)(__this, ___key0, ___value1, method); } // System.Int32 System.Diagnostics.Tracing.EventAttribute::get_EventId() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t EventAttribute_get_EventId_mECBD6F6FA850319FF22D8C98CD56AFC44A786557_inline (EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1 * __this, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::Append(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m85874CFF9E4B152DB2A91936C6F2CA3E9B1EFF84 (StringBuilder_t * __this, int32_t ___value0, const RuntimeMethod* method); // System.Byte System.Diagnostics.Tracing.EventAttribute::get_Version() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR uint8_t EventAttribute_get_Version_m3AAD912A9FC7924161D37BD19D89ECBA5BDD0CF6_inline (EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1 * __this, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::Append(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m4B3D765122247E2EBDA4E3870A86C26DCCCC8717 (StringBuilder_t * __this, uint8_t ___value0, const RuntimeMethod* method); // System.Diagnostics.Tracing.EventLevel System.Diagnostics.Tracing.EventAttribute::get_Level() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t EventAttribute_get_Level_mB5C7FA65BD79AA55FB614D04B573187E715081EA_inline (EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1 * __this, const RuntimeMethod* method); // System.String System.Diagnostics.Tracing.ManifestBuilder::GetLevelName(System.Diagnostics.Tracing.EventLevel) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ManifestBuilder_GetLevelName_mDE24AE4C28BD5EF3FE4D29D3731F19B050C6D1E2 (int32_t ___level0, const RuntimeMethod* method); // System.String System.Diagnostics.Tracing.EventAttribute::get_Message() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* EventAttribute_get_Message_m058E0091B7D3211698644AC7149075C9355DD519_inline (EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1 * __this, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.ManifestBuilder::WriteMessageAttrib(System.Text.StringBuilder,System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ManifestBuilder_WriteMessageAttrib_m41F740A687F6D00B1D52FDA78B5D22052B587027 (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, StringBuilder_t * ___stringBuilder0, String_t* ___elementName1, String_t* ___name2, String_t* ___value3, const RuntimeMethod* method); // System.Diagnostics.Tracing.EventKeywords System.Diagnostics.Tracing.EventAttribute::get_Keywords() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int64_t EventAttribute_get_Keywords_m6889779A5A55DB96A591BF26676DFCDDD0520142_inline (EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1 * __this, const RuntimeMethod* method); // System.String System.Diagnostics.Tracing.ManifestBuilder::GetKeywords(System.UInt64,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ManifestBuilder_GetKeywords_m5EA6BEBFD8B95C29E7079DF929E551442315D3B0 (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, uint64_t ___keywords0, String_t* ___eventName1, const RuntimeMethod* method); // System.Diagnostics.Tracing.EventOpcode System.Diagnostics.Tracing.EventAttribute::get_Opcode() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t EventAttribute_get_Opcode_m2D6D1FA345ABB33FEB10D4A9C0878CCB5C811712_inline (EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1 * __this, const RuntimeMethod* method); // System.String System.Diagnostics.Tracing.ManifestBuilder::GetOpcodeName(System.Diagnostics.Tracing.EventOpcode,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ManifestBuilder_GetOpcodeName_m612EBC12C1DB95126B4335BDE9AB4EF9671CDA59 (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, int32_t ___opcode0, String_t* ___eventName1, const RuntimeMethod* method); // System.Diagnostics.Tracing.EventTask System.Diagnostics.Tracing.EventAttribute::get_Task() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t EventAttribute_get_Task_m670824C9F357501D5AEB3051330FBDE3DEBFA7A3_inline (EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1 * __this, const RuntimeMethod* method); // System.String System.Diagnostics.Tracing.ManifestBuilder::GetTaskName(System.Diagnostics.Tracing.EventTask,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ManifestBuilder_GetTaskName_mA4295AA0FF9A15046B6C696F6C33265BA44CC104 (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, int32_t ___task0, String_t* ___eventName1, 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); // System.Void System.Collections.Generic.List`1<System.Int32>::.ctor(System.Int32) inline void List_1__ctor_m020F9255F34CF1C83F40396FACCAB453009967BC (List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * __this, int32_t ___capacity0, const RuntimeMethod* method) { (( void (*) (List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 *, int32_t, const RuntimeMethod*))List_1__ctor_m020F9255F34CF1C83F40396FACCAB453009967BC_gshared)(__this, ___capacity0, method); } // System.Void System.Collections.Generic.List`1<System.Int32>::Add(T) inline void List_1_Add_m50C0D1F69B2EF31137658E2F052EBBAC7BF82771 (List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * __this, int32_t ___item0, const RuntimeMethod* method) { (( void (*) (List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 *, int32_t, const RuntimeMethod*))List_1_Add_m50C0D1F69B2EF31137658E2F052EBBAC7BF82771_gshared)(__this, ___item0, method); } // System.String System.Diagnostics.Tracing.ManifestBuilder::GetTypeName(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ManifestBuilder_GetTypeName_m4148EBA98880502C3C7836AB3A99230DEC3AB71C (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, Type_t * ___type0, const RuntimeMethod* method); // System.Boolean System.Type::get_IsArray() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsArray_m0B4E20F93B1B34C0B5C4B089F543D1AA338DC9FE (Type_t * __this, const RuntimeMethod* method); // System.Boolean System.Type::get_IsPointer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsPointer_mF823CB662C6A04674589640771E6AD6B71093E57 (Type_t * __this, const RuntimeMethod* method); // System.Boolean Microsoft.Reflection.ReflectionExtensions::IsEnum(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReflectionExtensions_IsEnum_m2930BB5E455993D6A599EA4F61DFB9859099EDA6 (Type_t * ___type0, const RuntimeMethod* method); // System.Type System.Enum::GetUnderlyingType(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Enum_GetUnderlyingType_m0715B4E60E6909F03FF7302B6E20B1AB88DA84B1 (Type_t * ___enumType0, const RuntimeMethod* method); // System.Boolean System.Type::op_Inequality(System.Type,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9 (Type_t * ___left0, Type_t * ___right1, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.String,System.Type>::.ctor() inline void Dictionary_2__ctor_m028A8C29837E90F8FCF51F91433AAE6A27BB29A2 (Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A * __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A *, const RuntimeMethod*))Dictionary_2__ctor_m2C7E51568033239B506E15E7804A0B8658246498_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.Type>::ContainsKey(TKey) inline bool Dictionary_2_ContainsKey_m5F4C008599642405E5984D9D35D89E51612D9FAF (Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A * __this, String_t* ___key0, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A *, String_t*, const RuntimeMethod*))Dictionary_2_ContainsKey_m4EBC00E16E83DA33851A551757D2B7332D5756B9_gshared)(__this, ___key0, method); } // System.Void System.Collections.Generic.Dictionary`2<System.String,System.Type>::Add(TKey,TValue) inline void Dictionary_2_Add_m7ECEB69F45361CF1DD0E053D2BC7F30CCB5478CA (Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A * __this, String_t* ___key0, Type_t * ___value1, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A *, String_t*, Type_t *, const RuntimeMethod*))Dictionary_2_Add_mC741BBB0A647C814227953DB9B23CB1BDF571C5B_gshared)(__this, ___key0, ___value1, method); } // System.Void System.Collections.Generic.Dictionary`2<System.String,System.Collections.Generic.List`1<System.Int32>>::set_Item(TKey,TValue) inline void Dictionary_2_set_Item_m7948EED55902B8130637D4107ED348F2146E18B9 (Dictionary_2_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28 * __this, String_t* ___key0, List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * ___value1, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28 *, String_t*, List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 *, const RuntimeMethod*))Dictionary_2_set_Item_m466D001F105E25DEB5C9BCB17837EE92A27FDE93_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.String>::TryGetValue(TKey,TValue&) inline bool Dictionary_2_TryGetValue_mACE6F295B868D8DD552A8F7D4ABA375F843BB13B (Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * __this, String_t* ___key0, String_t** ___value1, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC *, String_t*, String_t**, const RuntimeMethod*))Dictionary_2_TryGetValue_m3455807C552312C60038DF52EF328C3687442DE3_gshared)(__this, ___key0, ___value1, method); } // System.String System.Diagnostics.Tracing.ManifestBuilder::TranslateToManifestConvention(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ManifestBuilder_TranslateToManifestConvention_m100A461415FF81C8254B2E763B5F45132A49D85C (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, String_t* ___eventMessage0, String_t* ___evtName1, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.String,System.String>::set_Item(TKey,TValue) inline void Dictionary_2_set_Item_m597918251624A4BF29104324490143CFCA659FAD (Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * __this, String_t* ___key0, String_t* ___value1, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC *, String_t*, String_t*, const RuntimeMethod*))Dictionary_2_set_Item_m466D001F105E25DEB5C9BCB17837EE92A27FDE93_gshared)(__this, ___key0, ___value1, method); } // System.String System.Diagnostics.Tracing.ManifestBuilder::CreateManifestString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ManifestBuilder_CreateManifestString_m345D8445BF70DD3AE849513454D09A710CB99D5F (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, 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.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Int32,System.String>::get_Keys() inline KeyCollection_t2F25BAF319A40DA5241F076B74BB90B72F16822F * Dictionary_2_get_Keys_m7B7C3AFFC85AC47452A738673E646AA602D63CA1 (Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * __this, const RuntimeMethod* method) { return (( KeyCollection_t2F25BAF319A40DA5241F076B74BB90B72F16822F * (*) (Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C *, const RuntimeMethod*))Dictionary_2_get_Keys_mA4A8C65DA5C29DC0C967EDF49569871850032ABE_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1<System.Int32>::.ctor(System.Collections.Generic.IEnumerable`1<T>) inline void List_1__ctor_m262B3A833A8A33F720DDF70DABD4C455423A6797 (List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * __this, RuntimeObject* ___collection0, const RuntimeMethod* method) { (( void (*) (List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 *, RuntimeObject*, const RuntimeMethod*))List_1__ctor_m262B3A833A8A33F720DDF70DABD4C455423A6797_gshared)(__this, ___collection0, method); } // System.Void System.Collections.Generic.List`1<System.Int32>::Sort() inline void List_1_Sort_m723A6BEBAB430277CD79C8BD7D63DEF94E0BBB0A (List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * __this, const RuntimeMethod* method) { (( void (*) (List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 *, const RuntimeMethod*))List_1_Sort_m723A6BEBAB430277CD79C8BD7D63DEF94E0BBB0A_gshared)(__this, method); } // System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<System.Int32>::GetEnumerator() inline Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 List_1_GetEnumerator_mE721B3C5E137DCDB408BE05CA472EECBAAAA418A (List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * __this, const RuntimeMethod* method) { return (( Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 (*) (List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 *, const RuntimeMethod*))List_1_GetEnumerator_mE721B3C5E137DCDB408BE05CA472EECBAAAA418A_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<System.Int32>::get_Current() inline int32_t Enumerator_get_Current_m219EC3BCCD8CF3A474AD0C4DBA55EB9B74C9F89C_inline (Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 * __this, const RuntimeMethod* method) { return (( int32_t (*) (Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 *, const RuntimeMethod*))Enumerator_get_Current_m219EC3BCCD8CF3A474AD0C4DBA55EB9B74C9F89C_gshared_inline)(__this, method); } // TValue System.Collections.Generic.Dictionary`2<System.Int32,System.String>::get_Item(TKey) inline String_t* Dictionary_2_get_Item_m832206501573309C2C9C1E4F96AAC39AACE24906 (Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * __this, int32_t ___key0, const RuntimeMethod* method) { return (( String_t* (*) (Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C *, int32_t, const RuntimeMethod*))Dictionary_2_get_Item_mEFECE2769017AB70A9B1E7F5F8BBA59375620B54_gshared)(__this, ___key0, method); } // System.Void System.Diagnostics.Tracing.ManifestBuilder::WriteNameAndMessageAttribs(System.Text.StringBuilder,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ManifestBuilder_WriteNameAndMessageAttribs_m444B282AD88FA3A63618C9E361B3B084642889D8 (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, StringBuilder_t * ___stringBuilder0, String_t* ___elementName1, String_t* ___name2, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int32>::MoveNext() inline bool Enumerator_MoveNext_m42C746E84C832B62E93536A47B4086F3A3AC6609 (Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 *, const RuntimeMethod*))Enumerator_MoveNext_m42C746E84C832B62E93536A47B4086F3A3AC6609_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Int32>::Dispose() inline void Enumerator_Dispose_m902D0B2B4B4B589E6F3653D9CDB38E0AA97EBCF9 (Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 *, const RuntimeMethod*))Enumerator_Dispose_m902D0B2B4B4B589E6F3653D9CDB38E0AA97EBCF9_gshared)(__this, method); } // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.String,System.Type>::get_Values() inline ValueCollection_t7916CDE541FFBF8945E39B059894001AE50AD9CC * Dictionary_2_get_Values_m4326450E83510370C04304A1B988C2C1223470D5 (Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A * __this, const RuntimeMethod* method) { return (( ValueCollection_t7916CDE541FFBF8945E39B059894001AE50AD9CC * (*) (Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A *, const RuntimeMethod*))Dictionary_2_get_Values_m58CC32586C31C6F38B730DE7CD79A1FFE9109BA4_gshared)(__this, method); } // System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection<System.String,System.Type>::GetEnumerator() inline Enumerator_tABA216358668DD188BBA6A59F0C67AE9AF312CD4 ValueCollection_GetEnumerator_m4BF64721E0542BF1C48C497E3420E59565496D51 (ValueCollection_t7916CDE541FFBF8945E39B059894001AE50AD9CC * __this, const RuntimeMethod* method) { return (( Enumerator_tABA216358668DD188BBA6A59F0C67AE9AF312CD4 (*) (ValueCollection_t7916CDE541FFBF8945E39B059894001AE50AD9CC *, const RuntimeMethod*))ValueCollection_GetEnumerator_m7A12639A28DE8959DC682764BF2582EA59CDAFE0_gshared)(__this, method); } // TValue System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.String,System.Type>::get_Current() inline Type_t * Enumerator_get_Current_m5CFE9565387CC3F8012BF6E529BF77223AEE8326_inline (Enumerator_tABA216358668DD188BBA6A59F0C67AE9AF312CD4 * __this, const RuntimeMethod* method) { return (( Type_t * (*) (Enumerator_tABA216358668DD188BBA6A59F0C67AE9AF312CD4 *, const RuntimeMethod*))Enumerator_get_Current_m29EC6C6EB1047528546CB514A575C8C4EFA48E1C_gshared_inline)(__this, method); } // System.Attribute System.Diagnostics.Tracing.EventSource::GetCustomAttributeHelper(System.Reflection.MemberInfo,System.Type,System.Diagnostics.Tracing.EventManifestOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * EventSource_GetCustomAttributeHelper_m0071006CDD204BE00B7EFEA9F5E52D087AF1F7D7 (MemberInfo_t * ___member0, Type_t * ___attributeType1, int32_t ___flags2, const RuntimeMethod* method); // System.Globalization.CultureInfo System.Globalization.CultureInfo::get_InvariantCulture() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72 (const RuntimeMethod* method); // System.String System.Int64::ToString(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int64_ToString_mB73201579D1D4BC868EC9BC901B2812AC4B90517 (int64_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.String System.String::Concat(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mF4626905368D6558695A823466A1AF65EADB9923 (String_t* ___str00, String_t* ___str11, String_t* ___str22, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.String,System.Type>::MoveNext() inline bool Enumerator_MoveNext_m80DDFE666F71F21BC6B8437E64F6D18DF9D7F695 (Enumerator_tABA216358668DD188BBA6A59F0C67AE9AF312CD4 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tABA216358668DD188BBA6A59F0C67AE9AF312CD4 *, const RuntimeMethod*))Enumerator_MoveNext_m350743CACD3C814992ECBC0A503B3275F6429F93_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.String,System.Type>::Dispose() inline void Enumerator_Dispose_mD561B0A07FD84F60ECE232D9CAF7A6101C84485B (Enumerator_tABA216358668DD188BBA6A59F0C67AE9AF312CD4 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tABA216358668DD188BBA6A59F0C67AE9AF312CD4 *, const RuntimeMethod*))Enumerator_Dispose_m12F4E079ED28B6FD3BC6A1B509EB6EA604F9CFA0_gshared)(__this, method); } // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.UInt64,System.String>::get_Keys() inline KeyCollection_t03F00DD1AC4F92F5138CAB2CC1235582FD0B8B1D * Dictionary_2_get_Keys_mC8A65C37A45462D5A68C0266A0CD49B92D4DDC41 (Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 * __this, const RuntimeMethod* method) { return (( KeyCollection_t03F00DD1AC4F92F5138CAB2CC1235582FD0B8B1D * (*) (Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 *, const RuntimeMethod*))Dictionary_2_get_Keys_m9DB49BB9ED30ED6936F96A94C8B327F8B2F46514_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1<System.UInt64>::.ctor(System.Collections.Generic.IEnumerable`1<T>) inline void List_1__ctor_m70ED87E74F77E9BA83922D9D503C21E2F1F3B20F (List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8 * __this, RuntimeObject* ___collection0, const RuntimeMethod* method) { (( void (*) (List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8 *, RuntimeObject*, const RuntimeMethod*))List_1__ctor_m70ED87E74F77E9BA83922D9D503C21E2F1F3B20F_gshared)(__this, ___collection0, method); } // System.Void System.Collections.Generic.List`1<System.UInt64>::Sort() inline void List_1_Sort_m9EC38ED6BC1D49988744517F589D90B3106537B8 (List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8 * __this, const RuntimeMethod* method) { (( void (*) (List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8 *, const RuntimeMethod*))List_1_Sort_m9EC38ED6BC1D49988744517F589D90B3106537B8_gshared)(__this, method); } // System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<System.UInt64>::GetEnumerator() inline Enumerator_t46B8FA0EA6058B0B5871CE816B84FA8AAF77208B List_1_GetEnumerator_m648284040ECC710040C8DE7B08CC0795512F92F7 (List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8 * __this, const RuntimeMethod* method) { return (( Enumerator_t46B8FA0EA6058B0B5871CE816B84FA8AAF77208B (*) (List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8 *, const RuntimeMethod*))List_1_GetEnumerator_m648284040ECC710040C8DE7B08CC0795512F92F7_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<System.UInt64>::get_Current() inline uint64_t Enumerator_get_Current_m7E3BB9CBEBA4C07616DE07B4857E30FD01D97267_inline (Enumerator_t46B8FA0EA6058B0B5871CE816B84FA8AAF77208B * __this, const RuntimeMethod* method) { return (( uint64_t (*) (Enumerator_t46B8FA0EA6058B0B5871CE816B84FA8AAF77208B *, const RuntimeMethod*))Enumerator_get_Current_m7E3BB9CBEBA4C07616DE07B4857E30FD01D97267_gshared_inline)(__this, method); } // TValue System.Collections.Generic.Dictionary`2<System.UInt64,System.String>::get_Item(TKey) inline String_t* Dictionary_2_get_Item_mD6D7D7470E8BA9FF2800804F740501BB3A0A3EB6 (Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 * __this, uint64_t ___key0, const RuntimeMethod* method) { return (( String_t* (*) (Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 *, uint64_t, const RuntimeMethod*))Dictionary_2_get_Item_mE690999065C48F6233FAD2AD14A1ECDB5CE79FAE_gshared)(__this, ___key0, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.UInt64>::MoveNext() inline bool Enumerator_MoveNext_m99D84216FD83EC374968B5CAEE8F276D2CDFBB34 (Enumerator_t46B8FA0EA6058B0B5871CE816B84FA8AAF77208B * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t46B8FA0EA6058B0B5871CE816B84FA8AAF77208B *, const RuntimeMethod*))Enumerator_MoveNext_m99D84216FD83EC374968B5CAEE8F276D2CDFBB34_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.UInt64>::Dispose() inline void Enumerator_Dispose_m97BA3C80D3997BCF6307DC3D96E2EBC4BEAA1FCE (Enumerator_t46B8FA0EA6058B0B5871CE816B84FA8AAF77208B * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t46B8FA0EA6058B0B5871CE816B84FA8AAF77208B *, const RuntimeMethod*))Enumerator_Dispose_m97BA3C80D3997BCF6307DC3D96E2EBC4BEAA1FCE_gshared)(__this, method); } // System.Text.StringBuilder System.Text.StringBuilder::Append(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_mA1A063A1388A21C8EA011DBA7FC98C24C3EE3D65 (StringBuilder_t * __this, RuntimeObject * ___value0, const RuntimeMethod* method); // System.Int32 System.Text.StringBuilder::get_Length() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07 (StringBuilder_t * __this, const RuntimeMethod* method); // System.Collections.Generic.List`1<System.Globalization.CultureInfo> System.Diagnostics.Tracing.ManifestBuilder::GetSupportedCultures(System.Resources.ResourceManager) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 * ManifestBuilder_GetSupportedCultures_mA8CBFCA3BDA40C88141E2DBC6F44186D0355BDFF (ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF * ___resources0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Globalization.CultureInfo>::.ctor() inline void List_1__ctor_m13F938AD3F5447299ACE26EDDE5881D92FD230F7 (List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 * __this, const RuntimeMethod* method) { (( void (*) (List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 *, const RuntimeMethod*))List_1__ctor_mC832F1AC0F814BAEB19175F5D7972A7507508BC3_gshared)(__this, method); } // System.Globalization.CultureInfo System.Globalization.CultureInfo::get_CurrentUICulture() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * CultureInfo_get_CurrentUICulture_mE132DCAF12CBF24E1FC0AF90BB6F33739F416487 (const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Globalization.CultureInfo>::Add(T) inline void List_1_Add_m14F9260F6416415635961F291F3DE17A7031B928 (List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 * __this, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___item0, const RuntimeMethod* method) { (( void (*) (List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 *, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F *, const RuntimeMethod*))List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_gshared)(__this, ___item0, method); } // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2<System.String,System.String>::get_Keys() inline KeyCollection_tC73654392B284B89334464107B696C9BD89776D9 * Dictionary_2_get_Keys_mD09E59E7F822DA9EF3E9C8F013A6A92FC513E2EF (Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * __this, const RuntimeMethod* method) { return (( KeyCollection_tC73654392B284B89334464107B696C9BD89776D9 * (*) (Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC *, const RuntimeMethod*))Dictionary_2_get_Keys_m079EE5437EE7D904E9E3F798041C1108B96B3AC3_gshared)(__this, method); } // System.Int32 System.Collections.Generic.Dictionary`2/KeyCollection<System.String,System.String>::get_Count() inline int32_t KeyCollection_get_Count_m9CE16805B512F963A724719B26A34799FFBA6083 (KeyCollection_tC73654392B284B89334464107B696C9BD89776D9 * __this, const RuntimeMethod* method) { return (( int32_t (*) (KeyCollection_tC73654392B284B89334464107B696C9BD89776D9 *, const RuntimeMethod*))KeyCollection_get_Count_mCE7D1150E953251EDA2A70DEF592547DE1BF1C51_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/KeyCollection<System.String,System.String>::CopyTo(TKey[],System.Int32) inline void KeyCollection_CopyTo_m26883818AD58E396524E6D7D7312AB0BCEEFE1CD (KeyCollection_tC73654392B284B89334464107B696C9BD89776D9 * __this, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___array0, int32_t ___index1, const RuntimeMethod* method) { (( void (*) (KeyCollection_tC73654392B284B89334464107B696C9BD89776D9 *, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*, int32_t, const RuntimeMethod*))KeyCollection_CopyTo_mBD233D9F57FDF9A975ECD4B4984CD183B8D7CBB9_gshared)(__this, ___array0, ___index1, method); } // System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<System.String>::get_Default() inline Comparer_1_tC8913CC0230510AB5B82485EAEF003DA0F4B9903 * Comparer_1_get_Default_m5C03A395556B2D119E9A28F161C86E4B45946CD8 (const RuntimeMethod* method) { return (( Comparer_1_tC8913CC0230510AB5B82485EAEF003DA0F4B9903 * (*) (const RuntimeMethod*))Comparer_1_get_Default_m84DEFB8B389618F98B055848A21DEAB2782581A3_gshared)(method); } // System.Void System.Comparison`1<System.String>::.ctor(System.Object,System.IntPtr) inline void Comparison_1__ctor_m5E87814961C75D756B2DD39DFD4D893FA66D0127 (Comparison_1_tB59BE4B966B2646664AB777129F0D33B1AAA0E71 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Comparison_1_tB59BE4B966B2646664AB777129F0D33B1AAA0E71 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Comparison_1__ctor_m3445CDEBFFF4A3A9EAED69CBCC2D247630CA5BD4_gshared)(__this, ___object0, ___method1, method); } // System.Void System.Collections.Generic.ArraySortHelper`1<System.String>::IntrospectiveSort(T[],System.Int32,System.Int32,System.Comparison`1<T>) inline void ArraySortHelper_1_IntrospectiveSort_m1D4EC0AAC55CE220F789DD1BA1DA53566D253562 (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___keys0, int32_t ___left1, int32_t ___length2, Comparison_1_tB59BE4B966B2646664AB777129F0D33B1AAA0E71 * ___comparer3, const RuntimeMethod* method) { (( void (*) (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*, int32_t, int32_t, Comparison_1_tB59BE4B966B2646664AB777129F0D33B1AAA0E71 *, const RuntimeMethod*))ArraySortHelper_1_IntrospectiveSort_m6FD136CFAE06EB8ADA3FE57C7921E8323F756D81_gshared)(___keys0, ___left1, ___length2, ___comparer3, method); } // System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<System.Globalization.CultureInfo>::GetEnumerator() inline Enumerator_tFAF40259E587A0C56311F14FEBDCF69C3916B5A9 List_1_GetEnumerator_m3B7E28F98490CDAA255460E968EDF0A09147CE56 (List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 * __this, const RuntimeMethod* method) { return (( Enumerator_tFAF40259E587A0C56311F14FEBDCF69C3916B5A9 (*) (List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 *, const RuntimeMethod*))List_1_GetEnumerator_m52CC760E475D226A2B75048D70C4E22692F9F68D_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<System.Globalization.CultureInfo>::get_Current() inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * Enumerator_get_Current_m21261DFF80ABB45B33C47E3DDE689068ACA20224_inline (Enumerator_tFAF40259E587A0C56311F14FEBDCF69C3916B5A9 * __this, const RuntimeMethod* method) { return (( CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * (*) (Enumerator_tFAF40259E587A0C56311F14FEBDCF69C3916B5A9 *, const RuntimeMethod*))Enumerator_get_Current_mD7829C7E8CFBEDD463B15A951CDE9B90A12CC55C_gshared_inline)(__this, method); } // System.String System.Diagnostics.Tracing.ManifestBuilder::GetLocalizedMessage(System.String,System.Globalization.CultureInfo,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ManifestBuilder_GetLocalizedMessage_mCB29634920B7747BA68803A846811B46A1538C66 (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, String_t* ___key0, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___ci1, bool ___etwFormat2, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Globalization.CultureInfo>::MoveNext() inline bool Enumerator_MoveNext_m7126593F0EC448BE693A0DB2D4ED1C94D18A65C6 (Enumerator_tFAF40259E587A0C56311F14FEBDCF69C3916B5A9 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tFAF40259E587A0C56311F14FEBDCF69C3916B5A9 *, const RuntimeMethod*))Enumerator_MoveNext_m38B1099DDAD7EEDE2F4CDAB11C095AC784AC2E34_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Globalization.CultureInfo>::Dispose() inline void Enumerator_Dispose_m4F87E65CA1AC8F4D475B132D5AE6731193513B03 (Enumerator_tFAF40259E587A0C56311F14FEBDCF69C3916B5A9 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tFAF40259E587A0C56311F14FEBDCF69C3916B5A9 *, const RuntimeMethod*))Enumerator_Dispose_m94D0DAE031619503CDA6E53C5C3CC78AF3139472_gshared)(__this, method); } // System.Boolean System.String::Equals(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1 (String_t* __this, String_t* ___value0, const RuntimeMethod* method); // System.Boolean System.String::StartsWith(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_StartsWith_m7D468FB7C801D9C2DBEEEEC86F8BA8F4EC3243C1 (String_t* __this, String_t* ___value0, const RuntimeMethod* method); // System.String System.String::Substring(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_m2C4AFF5E79DD8BADFD2DFBCF156BF728FBB8E1AE (String_t* __this, int32_t ___startIndex0, const RuntimeMethod* method); // System.Globalization.CultureInfo[] System.Globalization.CultureInfo::GetCultures(System.Globalization.CultureTypes) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfoU5BU5D_t5ABD12F26C65E5F6F3E7916401EAA322BA2BDF31* CultureInfo_GetCultures_mF06FF1D19C1F6626A89ECAEEC152194FEE7EDEC6 (int32_t ___types0, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1<System.Globalization.CultureInfo>::Contains(T) inline bool List_1_Contains_m01102404F7F955992DC1CD877656AFE304FF7DFF (List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 * __this, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___item0, const RuntimeMethod* method) { return (( bool (*) (List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 *, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F *, const RuntimeMethod*))List_1_Contains_mE08D561E86879A26245096C572A8593279383FDB_gshared)(__this, ___item0, method); } // System.Void System.Collections.Generic.List`1<System.Globalization.CultureInfo>::Insert(System.Int32,T) inline void List_1_Insert_m1E03FC53B36149C842A2684B9A3D7791714F8E11 (List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 * __this, int32_t ___index0, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___item1, const RuntimeMethod* method) { (( void (*) (List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 *, int32_t, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F *, const RuntimeMethod*))List_1_Insert_m327E513FB78F72441BBF2756AFCC788F89A4FA52_gshared)(__this, ___index0, ___item1, method); } // System.TypeCode Microsoft.Reflection.ReflectionExtensions::GetTypeCode(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ReflectionExtensions_GetTypeCode_m55D509078B5566EA871D7C211EDE34AE45661BBD (Type_t * ___type0, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::Append(System.String,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m9EB954E99DC99B8CC712ABB70EAA07616B841D46 (StringBuilder_t * __this, String_t* ___value0, int32_t ___startIndex1, int32_t ___count2, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.ManifestBuilder/<>c__DisplayClass22_0::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass22_0__ctor_mDB74AD5BD6EEBA50B284AA8D1D62BD3A586A4050 (U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * __this, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.ManifestBuilder/<>c__DisplayClass22_1::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass22_1__ctor_mFB26E5BDCE1C37A03D22EAE3CB62B76C3D1FF818 (U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * __this, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.ManifestBuilder::UpdateStringBuilder(System.Text.StringBuilder&,System.String,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ManifestBuilder_UpdateStringBuilder_m1FFC9292B0D91B441594C31E4F3373062821782E (StringBuilder_t ** ___stringBuilder0, String_t* ___eventMessage1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method); // System.Char System.String::get_Chars(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96 (String_t* __this, int32_t ___index0, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A (StringBuilder_t * __this, Il2CppChar ___value0, const RuntimeMethod* method); // System.Boolean System.Char::IsDigit(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsDigit_m29508E0B60DAE54350BDC3DED0D42895DBA4087E (Il2CppChar ___c0, const RuntimeMethod* method); // System.Int32 System.Diagnostics.Tracing.ManifestBuilder::TranslateIndexToManifestConvention(System.Int32,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ManifestBuilder_TranslateIndexToManifestConvention_m5856C01D23838CEF6101AE630F3010A7D3222049 (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, int32_t ___idx0, String_t* ___evtName1, const RuntimeMethod* method); // System.Int32 System.String::IndexOf(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_m2909B8CF585E1BD0C81E11ACA2F48012156FD5BD (String_t* __this, Il2CppChar ___value0, const RuntimeMethod* method); // System.Void System.Action`2<System.Char,System.String>::.ctor(System.Object,System.IntPtr) inline void Action_2__ctor_m92817F0253F68C636ECB18A4FE259FC9634986F2 (Action_2_tF9B5B4903EBDF1C9EC5FD39E96DE7A6A35B21C81 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Action_2_tF9B5B4903EBDF1C9EC5FD39E96DE7A6A35B21C81 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Action_2__ctor_mA2639DB159E3B05930C6A2D4ADA031412CCFB1A0_gshared)(__this, ___object0, ___method1, method); } // System.Void System.Action`2<System.Char,System.String>::Invoke(T1,T2) inline void Action_2_Invoke_m1B0DC3EC2F46E68A1692C2DB2E2EDAEB5ABC9FE0 (Action_2_tF9B5B4903EBDF1C9EC5FD39E96DE7A6A35B21C81 * __this, Il2CppChar ___arg10, String_t* ___arg21, const RuntimeMethod* method) { (( void (*) (Action_2_tF9B5B4903EBDF1C9EC5FD39E96DE7A6A35B21C81 *, Il2CppChar, String_t*, const RuntimeMethod*))Action_2_Invoke_mB35D966442076362FBEEAD952988680900A4B476_gshared)(__this, ___arg10, ___arg21, method); } // System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.Collections.Generic.List`1<System.Int32>>::TryGetValue(TKey,TValue&) inline bool Dictionary_2_TryGetValue_m29B8CACD7AEA9C8C02F46E3FFDFEA3EC78871182 (Dictionary_2_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28 * __this, String_t* ___key0, List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 ** ___value1, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28 *, String_t*, List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 **, const RuntimeMethod*))Dictionary_2_TryGetValue_m3455807C552312C60038DF52EF328C3687442DE3_gshared)(__this, ___key0, ___value1, method); } // System.Int32 System.Math::Max(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Math_Max_mA99E48BB021F2E4B62D4EA9F52EA6928EED618A2 (int32_t ___val10, int32_t ___val21, const RuntimeMethod* method); // System.Int32 System.Threading.Interlocked::CompareExchange(System.Int32&,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Interlocked_CompareExchange_mD830160E95D6C589AD31EE9DC8D19BD4A8DCDC03 (int32_t* ___location10, int32_t ___value1, int32_t ___comparand2, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.ConcurrentSetItem`2<System.Collections.Generic.KeyValuePair`2<System.String,System.Diagnostics.Tracing.EventTags>,System.Diagnostics.Tracing.NameInfo>::.ctor() inline void ConcurrentSetItem_2__ctor_mB1DADD36C8ECA3425C54CAD44C159215B831EA1F (ConcurrentSetItem_2_tF75C8666AA6AE859719571013C6765518785D0DA * __this, const RuntimeMethod* method) { (( void (*) (ConcurrentSetItem_2_tF75C8666AA6AE859719571013C6765518785D0DA *, const RuntimeMethod*))ConcurrentSetItem_2__ctor_m75D499F3307E096304E97A6D4B538505B34887BA_gshared)(__this, method); } // System.Int32 System.Threading.Interlocked::Increment(System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Interlocked_Increment_mB6D391197444B8BFD30BAE1EDCF1A255CD2F292F (int32_t* ___location0, const RuntimeMethod* method); // System.Byte[] System.Diagnostics.Tracing.Statics::MetadataForString(System.String,System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* Statics_MetadataForString_m53EAC9E9AD6BA8CB18BB3ABE008C4D5D2725C34D (String_t* ___name0, int32_t ___prefixSize1, int32_t ___suffixSize2, int32_t ___additionalSize3, const RuntimeMethod* method); // System.Int32 System.Diagnostics.Tracing.NameInfo::Compare(System.String,System.Diagnostics.Tracing.EventTags) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NameInfo_Compare_m2053E0E1B730AF1E06588A1F974A5F2798381BFE (NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C * __this, String_t* ___otherName0, int32_t ___otherTags1, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.String,System.Diagnostics.Tracing.EventTags>::get_Key() inline String_t* KeyValuePair_2_get_Key_m40CE9E116FF11AC137531058313C7D97F73A2FAB_inline (KeyValuePair_2_tC5E97F5FFE30651DD75FE9EC048400D9A5C57C74 * __this, const RuntimeMethod* method) { return (( String_t* (*) (KeyValuePair_2_tC5E97F5FFE30651DD75FE9EC048400D9A5C57C74 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m919A5B9C9E01A407D8DA9F3F08FB35620A76C296_gshared_inline)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.String,System.Diagnostics.Tracing.EventTags>::get_Value() inline int32_t KeyValuePair_2_get_Value_mD3D1B9E4CED325BD1E37559B03C8F1DBD33594C3_inline (KeyValuePair_2_tC5E97F5FFE30651DD75FE9EC048400D9A5C57C74 * __this, const RuntimeMethod* method) { return (( int32_t (*) (KeyValuePair_2_tC5E97F5FFE30651DD75FE9EC048400D9A5C57C74 *, const RuntimeMethod*))KeyValuePair_2_get_Value_mF3D2172C37CF753F9BDDAE1C214BAD43E3FB620A_gshared_inline)(__this, method); } // System.StringComparer System.StringComparer::get_Ordinal() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * StringComparer_get_Ordinal_m1F38FBAB170DF80D33FE2A849D30FF2E314D9FDB_inline (const RuntimeMethod* method); // System.Diagnostics.Tracing.TraceLoggingDataType System.Diagnostics.Tracing.Statics::Format8(System.Diagnostics.Tracing.EventFieldFormat,System.Diagnostics.Tracing.TraceLoggingDataType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Statics_Format8_m1C71026EA0BAB2008E3F0DC1889869CEE6D3822D (int32_t ___format0, int32_t ___native1, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddArray(System.SByte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddArray_m08BD4382BDFEBD4587DB60C10562B8F2E537D989 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889* ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.SByte[]>::.ctor() inline void TraceLoggingTypeInfo_1__ctor_mE1849D434DA715B1474C48419E3B750A0400F7EE (TraceLoggingTypeInfo_1_t55CF8C945F32D794C974BA4DAE2EE7F2647C4C5E * __this, const RuntimeMethod* method) { (( void (*) (TraceLoggingTypeInfo_1_t55CF8C945F32D794C974BA4DAE2EE7F2647C4C5E *, const RuntimeMethod*))TraceLoggingTypeInfo_1__ctor_mE281DCCAC7AAA87CD49E26B9172B4A8BA78F5098_gshared)(__this, method); } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddScalar(System.SByte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddScalar_m19856EAB8A7B3627A41A2D0BC36E9561E3B8361D (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, int8_t ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.SByte>::.ctor() inline void TraceLoggingTypeInfo_1__ctor_mB444AA3C7505EF658C4A9D495C286724373DC704 (TraceLoggingTypeInfo_1_tBCFB1C63D7D7837A0D7EAC07CF250A313B982794 * __this, const RuntimeMethod* method) { (( void (*) (TraceLoggingTypeInfo_1_tBCFB1C63D7D7837A0D7EAC07CF250A313B982794 *, const RuntimeMethod*))TraceLoggingTypeInfo_1__ctor_mB444AA3C7505EF658C4A9D495C286724373DC704_gshared)(__this, method); } // System.Void System.Diagnostics.Tracing.SessionMask::.ctor(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SessionMask__ctor_mF0381B32D172407AD80049857433DAA4206268EB (SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE * __this, uint32_t ___mask0, const RuntimeMethod* method); // System.Boolean System.Diagnostics.Tracing.SessionMask::IsEqualOrSupersetOf(System.Diagnostics.Tracing.SessionMask) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SessionMask_IsEqualOrSupersetOf_m59465BC65F95147CEC04D7C88FE57B2A8328BCAD (SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE * __this, SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE ___m0, const RuntimeMethod* method); // System.UInt64 System.Diagnostics.Tracing.SessionMask::ToEventKeywords() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t SessionMask_ToEventKeywords_m0A85046D77F1C6AA244EB74A812E52C8059B77B8 (SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE * __this, const RuntimeMethod* method); // System.Boolean System.Diagnostics.Tracing.SessionMask::get_Item(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SessionMask_get_Item_mB7D297B67C35C99EB2FCBA1CC0EECC6BFB8D2E3A (SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE * __this, int32_t ___perEventSourceSessionId0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.SessionMask::set_Item(System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SessionMask_set_Item_m0C2E974F91F0702A8D534619C30AEA4195D7D628 (SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE * __this, int32_t ___perEventSourceSessionId0, bool ___value1, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddArray(System.Single[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddArray_m76E2D1994E47488488F231C51F7133FD0E76C143 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Single[]>::.ctor() inline void TraceLoggingTypeInfo_1__ctor_mEFF9B2B6B6635C693E8C279AE02E8953ECB7EDDA (TraceLoggingTypeInfo_1_t1EC2C7D1B7604F9A26B9CBC247D3927A18E9633E * __this, const RuntimeMethod* method) { (( void (*) (TraceLoggingTypeInfo_1_t1EC2C7D1B7604F9A26B9CBC247D3927A18E9633E *, const RuntimeMethod*))TraceLoggingTypeInfo_1__ctor_mE281DCCAC7AAA87CD49E26B9172B4A8BA78F5098_gshared)(__this, method); } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddScalar(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddScalar_m3277CF920B647C5CCC7B425A9743D1D9E766FC31 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, float ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Single>::.ctor() inline void TraceLoggingTypeInfo_1__ctor_mE657899584504CCB3DEE1E1E6B1B6BE1D4F9A182 (TraceLoggingTypeInfo_1_t80BF4A689F205E66ABE5177817C623F9DF91E6CD * __this, const RuntimeMethod* method) { (( void (*) (TraceLoggingTypeInfo_1_t80BF4A689F205E66ABE5177817C623F9DF91E6CD *, const RuntimeMethod*))TraceLoggingTypeInfo_1__ctor_mE657899584504CCB3DEE1E1E6B1B6BE1D4F9A182_gshared)(__this, method); } // System.Void System.ArgumentOutOfRangeException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6 (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * __this, String_t* ___paramName0, const RuntimeMethod* method); // System.Object System.Activator::CreateInstance(System.Type,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Activator_CreateInstance_mEE50708E1E8AAD4E5021A2FFDB992DDF65727E17 (Type_t * ___type0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args1, const RuntimeMethod* method); // System.Boolean System.Type::get_IsValueType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsValueType_mDDCCBAE9B59A483CBC3E5C02E3D68CEBEB2E41A8 (Type_t * __this, const RuntimeMethod* method); // System.Reflection.PropertyInfo[] System.Type::GetProperties() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyInfoU5BU5D_tAD8E99B12FF99CA4F2EA37B612DE68E112B4CF7E* Type_GetProperties_mEAE2A4049447E8BD9D18989A80E4C8BC742AE97D (Type_t * __this, const RuntimeMethod* method); // System.Reflection.MethodInfo System.Reflection.PropertyInfo::GetGetMethod() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * PropertyInfo_GetGetMethod_m90BA90BA1CAFEE1CC273BB8B3BD289890373CB8A (PropertyInfo_t * __this, const RuntimeMethod* method); // System.Reflection.MethodInfo System.Type::GetMethod(System.String,System.Reflection.BindingFlags) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * Type_GetMethod_m9EC42D4B1F765B882F516EE6D7970D51CF5D80DD (Type_t * __this, String_t* ___name0, int32_t ___bindingAttr1, const RuntimeMethod* method); // System.Boolean System.Diagnostics.Tracing.Statics::IsGenericMatch(System.Type,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Statics_IsGenericMatch_mB50849B2448DCAA07CD8C30B0EF05613CA6C4699 (Type_t * ___type0, RuntimeObject * ___openType1, const RuntimeMethod* method); // System.Type[] System.Diagnostics.Tracing.Statics::GetGenericArguments(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* Statics_GetGenericArguments_m31D1FF50706DDF53DA40BACF27E0942F3A4E85A9 (Type_t * ___type0, const RuntimeMethod* method); // System.Void System.Reflection.TypeFilter::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeFilter__ctor_m5F16D7D0AB325EAF8F3DF7D8EFEABD6DC79A5D7F (TypeFilter_t30BB04A68BC9FB949345457F71A9648BDB67FF18 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Delegate System.Delegate::CreateDelegate(System.Type,System.Reflection.MethodInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Delegate_t * Delegate_CreateDelegate_mD7C5EDDB32C63A9BD9DE43AC879AFF4EBC6641D1 (Type_t * ___type0, MethodInfo_t * ___method1, const RuntimeMethod* method); // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int32>::get_Instance() inline TraceLoggingTypeInfo_1_tDD2B74A36968F646CCDFEB9CE4074A216009252C * TraceLoggingTypeInfo_1_get_Instance_m8E59BB0AA299E5B826302E9355FD9A9D0E97B2CE (const RuntimeMethod* method) { return (( TraceLoggingTypeInfo_1_tDD2B74A36968F646CCDFEB9CE4074A216009252C * (*) (const RuntimeMethod*))TraceLoggingTypeInfo_1_get_Instance_m8E59BB0AA299E5B826302E9355FD9A9D0E97B2CE_gshared)(method); } // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.Int64>::get_Instance() inline TraceLoggingTypeInfo_1_t443169292A139EC54B708D4B6023EA2449412265 * TraceLoggingTypeInfo_1_get_Instance_m2C1BF8D240A8DEA3E364B6D04AE9994EBDBF915B (const RuntimeMethod* method) { return (( TraceLoggingTypeInfo_1_t443169292A139EC54B708D4B6023EA2449412265 * (*) (const RuntimeMethod*))TraceLoggingTypeInfo_1_get_Instance_m2C1BF8D240A8DEA3E364B6D04AE9994EBDBF915B_gshared)(method); } // System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<DataType> System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.String>::get_Instance() inline TraceLoggingTypeInfo_1_t34C750FAAA441003C34ECA6894E5D8640C78041D * TraceLoggingTypeInfo_1_get_Instance_m018D99F4DF835BDA0D63795B9391EA91BCBB435F (const RuntimeMethod* method) { return (( TraceLoggingTypeInfo_1_t34C750FAAA441003C34ECA6894E5D8640C78041D * (*) (const RuntimeMethod*))TraceLoggingTypeInfo_1_get_Instance_mD764A11872BA740CAF856826BC8F3D92BD7E993D_gshared)(method); } // System.Reflection.MethodInfo System.Diagnostics.Tracing.Statics::GetDeclaredStaticMethod(System.Type,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * Statics_GetDeclaredStaticMethod_mEE3CD2B73C69050E9AF25D41A3D30F1E9EF4ACD4 (Type_t * ___declaringType0, String_t* ___name1, const RuntimeMethod* method); // System.Object System.Reflection.MethodBase::Invoke(System.Object,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * MethodBase_Invoke_m471794D56262D9DB5B5A324883030AB16BD39674 (MethodBase_t * __this, RuntimeObject * ___obj0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___parameters1, const RuntimeMethod* method); // System.Int32 System.IntPtr::get_Size() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t IntPtr_get_Size_m1342A61F11766A494F2F90D9B68CADAD62261929 (const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingMetadataCollector::AddBinary(System.String,System.Diagnostics.Tracing.TraceLoggingDataType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingMetadataCollector_AddBinary_mA1EC53EFE1C72570ABAF8FB53F773D52033FD257 (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, String_t* ___name0, int32_t ___type1, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddBinary(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddBinary_m816F3D72D6356A9016DCFC873BB18F31D3D00F08 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, String_t* ___value0, const RuntimeMethod* method); // System.Object System.Diagnostics.Tracing.TraceLoggingTypeInfo::GetData(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TraceLoggingTypeInfo_GetData_mD03CF4EF23DB30D47C43B2444B1FF4AFC6D76A13 (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * __this, RuntimeObject * ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.String>::.ctor() inline void TraceLoggingTypeInfo_1__ctor_m2A7493F8B3D498E6F09A28DCF8EE57C970C27469 (TraceLoggingTypeInfo_1_t34C750FAAA441003C34ECA6894E5D8640C78041D * __this, const RuntimeMethod* method) { (( void (*) (TraceLoggingTypeInfo_1_t34C750FAAA441003C34ECA6894E5D8640C78041D *, const RuntimeMethod*))TraceLoggingTypeInfo_1__ctor_mE281DCCAC7AAA87CD49E26B9172B4A8BA78F5098_gshared)(__this, method); } // System.Int64 System.TimeSpan::get_Ticks() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int64_t TimeSpan_get_Ticks_m829C28C42028CDBFC9E338962DC7B6B10C8FFBE7_inline (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.TimeSpan>::.ctor() inline void TraceLoggingTypeInfo_1__ctor_m004FC4E35CAD0B857DC5BE29F01043DB25191055 (TraceLoggingTypeInfo_1_t8DC6FE358F90681BDCCD5350065A9767D2AC90DD * __this, const RuntimeMethod* method) { (( void (*) (TraceLoggingTypeInfo_1_t8DC6FE358F90681BDCCD5350065A9767D2AC90DD *, const RuntimeMethod*))TraceLoggingTypeInfo_1__ctor_m004FC4E35CAD0B857DC5BE29F01043DB25191055_gshared)(__this, method); } // System.Boolean System.Diagnostics.Tracing.EventSource::IsEnabled(System.Diagnostics.Tracing.EventLevel,System.Diagnostics.Tracing.EventKeywords) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventSource_IsEnabled_mD4697D2FE23E685D66BBC81F3BB5AF7668167DDC (EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB * __this, int32_t ___level0, int64_t ___keywords1, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.EventSource::WriteEvent(System.Int32,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSource_WriteEvent_mE27A6FC640BF894A83640A57FD16C9C26AB9FDF9 (EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB * __this, int32_t ___eventId0, String_t* ___arg11, String_t* ___arg22, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.EventSource::WriteEvent(System.Int32,System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSource_WriteEvent_m09CF0FC5F066EF4464A34539CE25033532AB6EC4 (EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB * __this, int32_t ___eventId0, String_t* ___arg11, String_t* ___arg22, String_t* ___arg33, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.EventSource::WriteEvent(System.Int32,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSource_WriteEvent_m07CFBC104154E61897EFBA392944181E34C0200F (EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB * __this, int32_t ___eventId0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args1, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.EventSource::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSource__ctor_m609A5F8A53C64F1F7E5CEEE5427E77F4D3F4B52A (EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB * __this, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TplEtwProvider::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TplEtwProvider__ctor_m49B82F71C1ADEDD9119398BF23696EB0B824153B (TplEtwProvider_tE8D95D638ADE31D5FCEF08E88222D518C2FACC9E * __this, const RuntimeMethod* method); // System.Int32 System.Diagnostics.Tracing.DataCollector::BeginBufferedArray() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DataCollector_BeginBufferedArray_m807DC271CDB214E02B63EA8790080AB3C45779B5 (DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * __this, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.DataCollector::EndBufferedArray(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataCollector_EndBufferedArray_m5EB7D38BB8818E569778C5C57DAEE5128AA4634F (DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * __this, int32_t ___bookmark0, int32_t ___count1, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.DataCollector::AddScalar(System.Void*,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataCollector_AddScalar_m08825D15318C9D82B2DFB7785373CA14387F4D02 (DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * __this, void* ___value0, int32_t ___size1, const RuntimeMethod* method); // System.Int32 System.UIntPtr::get_Size() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UIntPtr_get_Size_m063860D6F716C79EE77F379C6B20436413389E0B (const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.DataCollector::AddBinary(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataCollector_AddBinary_mAE50602915B73FC52AAAD2A3691AA7392AD7FFAC (DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * __this, String_t* ___value0, int32_t ___size1, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.DataCollector::AddBinary(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataCollector_AddBinary_mF9695153355117D745C9BAEAD8EA656AA26CCE9C (DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * __this, RuntimeArray * ___value0, int32_t ___size1, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.DataCollector::AddArray(System.Array,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataCollector_AddArray_m2936C91CE082A3131D866834C93721BB6CB68678 (DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * __this, RuntimeArray * ___value0, int32_t ___length1, int32_t ___itemSize2, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector__ctor_m4CB8F762D485A018F9200649D56FCCA04BF7053C (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, const RuntimeMethod* method); // System.Diagnostics.Tracing.TraceLoggingTypeInfo[] System.Diagnostics.Tracing.TraceLoggingEventTypes::MakeArray(System.Type[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC* TraceLoggingEventTypes_MakeArray_mFED40E1D79EAF166AC6ED6E0E83312D6791A7AF9 (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___types0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingEventTypes::.ctor(System.Diagnostics.Tracing.EventTags,System.String,System.Diagnostics.Tracing.TraceLoggingTypeInfo[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingEventTypes__ctor_m01AA9D32D50DA43E399D2E4F6C6CE2686C860F0F (TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * __this, int32_t ___tags0, String_t* ___defaultName1, TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC* ___typeInfos2, 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.Diagnostics.Tracing.TraceLoggingTypeInfo[] System.Diagnostics.Tracing.TraceLoggingEventTypes::MakeArray(System.Reflection.ParameterInfo[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC* TraceLoggingEventTypes_MakeArray_mFEB619E641B7C378811F11F7AEAC6B780B7FD27D (TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * __this, ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* ___paramInfos0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingMetadataCollector::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingMetadataCollector__ctor_mDD4E4C38DCE260B896FC5E8CFAF2699EFC4F98DC (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, const RuntimeMethod* method); // System.Diagnostics.Tracing.EventLevel System.Diagnostics.Tracing.TraceLoggingTypeInfo::get_Level() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t TraceLoggingTypeInfo_get_Level_mD8605194C1D768CFA1DE8E64ADF5CF89CC082CBF_inline (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * __this, const RuntimeMethod* method); // System.Byte System.Diagnostics.Tracing.Statics::Combine(System.Int32,System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Statics_Combine_m8FC035624CCB68893AEC92F51283B310EA34A1FE (int32_t ___settingValue0, uint8_t ___defaultValue1, const RuntimeMethod* method); // System.Diagnostics.Tracing.EventOpcode System.Diagnostics.Tracing.TraceLoggingTypeInfo::get_Opcode() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t TraceLoggingTypeInfo_get_Opcode_mC5C1A9BD89FA8C785228FF61A25787BBC10544C1_inline (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * __this, const RuntimeMethod* method); // System.Diagnostics.Tracing.EventKeywords System.Diagnostics.Tracing.TraceLoggingTypeInfo::get_Keywords() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int64_t TraceLoggingTypeInfo_get_Keywords_mDD63841C50042CE015E3E37C872F083190147C06_inline (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * __this, const RuntimeMethod* method); // System.Boolean System.Diagnostics.Tracing.Statics::ShouldOverrideFieldName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Statics_ShouldOverrideFieldName_mDAF0438FDC16831195015D2F1C7563CFDAB740C5 (String_t* ___fieldName0, const RuntimeMethod* method); // System.String System.Diagnostics.Tracing.TraceLoggingTypeInfo::get_Name() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* TraceLoggingTypeInfo_get_Name_m71FC96A7FD12F7BBF6B28451E05B549EC9C29995_inline (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * __this, const RuntimeMethod* method); // System.Byte[] System.Diagnostics.Tracing.TraceLoggingMetadataCollector::GetMetadata() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* TraceLoggingMetadataCollector_GetMetadata_mE576A1EF4772025B805D74483A1E1EB4763DA25D (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, const RuntimeMethod* method); // System.Int32 System.Diagnostics.Tracing.TraceLoggingMetadataCollector::get_ScratchSize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TraceLoggingMetadataCollector_get_ScratchSize_m60DBA65A18F39A132ACCCFAC00E282AD8CF78CE3 (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, const RuntimeMethod* method); // System.Int32 System.Diagnostics.Tracing.TraceLoggingMetadataCollector::get_DataCount() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TraceLoggingMetadataCollector_get_DataCount_m19A06BB75F607CBA8FE706B1374071D5C1A38526 (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, const RuntimeMethod* method); // System.Int32 System.Diagnostics.Tracing.TraceLoggingMetadataCollector::get_PinCount() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TraceLoggingMetadataCollector_get_PinCount_m8784D51D54A3896114C22FE8DF1DDCC1CEF64C5A (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.String,System.Diagnostics.Tracing.EventTags>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m8805E837B83D4F3E220B204070CC4EE0EC74A0EA (KeyValuePair_2_tC5E97F5FFE30651DD75FE9EC048400D9A5C57C74 * __this, String_t* ___key0, int32_t ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_tC5E97F5FFE30651DD75FE9EC048400D9A5C57C74 *, String_t*, int32_t, const RuntimeMethod*))KeyValuePair_2__ctor_m5001221DAEAF189D4103F58AB40101F089635425_gshared)(__this, ___key0, ___value1, method); } // ItemType System.Diagnostics.Tracing.ConcurrentSet`2<System.Collections.Generic.KeyValuePair`2<System.String,System.Diagnostics.Tracing.EventTags>,System.Diagnostics.Tracing.NameInfo>::TryGet(KeyType) inline NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C * ConcurrentSet_2_TryGet_m5DC99116E6C7CEB7071738E390C028F16500D0F2 (ConcurrentSet_2_t9B37AE19508B10669906106353C62B3C877BFA95 * __this, KeyValuePair_2_tC5E97F5FFE30651DD75FE9EC048400D9A5C57C74 ___key0, const RuntimeMethod* method) { return (( NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C * (*) (ConcurrentSet_2_t9B37AE19508B10669906106353C62B3C877BFA95 *, KeyValuePair_2_tC5E97F5FFE30651DD75FE9EC048400D9A5C57C74 , const RuntimeMethod*))ConcurrentSet_2_TryGet_m85702C3EAF2460866D4BCD060A99A96439048163_gshared)(__this, ___key0, method); } // System.Void System.Diagnostics.Tracing.NameInfo::.ctor(System.String,System.Diagnostics.Tracing.EventTags,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NameInfo__ctor_m697D2AEA8E68842A940310E3B874709CAA86F4DE (NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C * __this, String_t* ___name0, int32_t ___tags1, int32_t ___typeMetadataSize2, const RuntimeMethod* method); // ItemType System.Diagnostics.Tracing.ConcurrentSet`2<System.Collections.Generic.KeyValuePair`2<System.String,System.Diagnostics.Tracing.EventTags>,System.Diagnostics.Tracing.NameInfo>::GetOrAdd(ItemType) inline NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C * ConcurrentSet_2_GetOrAdd_m83EA02BE3061676F31A9D4A460D6C55CB5E0F1D3 (ConcurrentSet_2_t9B37AE19508B10669906106353C62B3C877BFA95 * __this, NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C * ___newItem0, const RuntimeMethod* method) { return (( NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C * (*) (ConcurrentSet_2_t9B37AE19508B10669906106353C62B3C877BFA95 *, NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C *, const RuntimeMethod*))ConcurrentSet_2_GetOrAdd_m3E6C5927019CAD8F66DDC2094DBCEF1E18BCC778_gshared)(__this, ___newItem0, method); } // System.Void System.Collections.Generic.List`1<System.Type>::.ctor(System.Int32) inline void List_1__ctor_m3CD6B39CDE0FB0C6C1119BD8A03FB3EB9D46A740 (List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * __this, int32_t ___capacity0, const RuntimeMethod* method) { (( void (*) (List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 *, int32_t, const RuntimeMethod*))List_1__ctor_mEE468B81D8E7C140F567D10FF7F5894A50EEEA57_gshared)(__this, ___capacity0, method); } // System.Diagnostics.Tracing.TraceLoggingTypeInfo System.Diagnostics.Tracing.Statics::GetTypeInfoInstance(System.Type,System.Collections.Generic.List`1<System.Type>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * Statics_GetTypeInfoInstance_mA015F72885AA57E7724BE14A8BE2AA83D93BC4A6 (Type_t * ___dataType0, List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * ___recursionCheck1, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingMetadataCollector/Impl::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Impl__ctor_mEC3CC0DB840B066AF1C49C78EEF19669A6DD7CB6 (Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * __this, const RuntimeMethod* method); // System.Boolean System.Diagnostics.Tracing.TraceLoggingMetadataCollector::get_BeginningBufferedArray() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TraceLoggingMetadataCollector_get_BeginningBufferedArray_m875CC5C471F8E4C33CF2698B593570BE5984E0E6 (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, const RuntimeMethod* method); // System.Diagnostics.Tracing.EventFieldTags System.Diagnostics.Tracing.TraceLoggingMetadataCollector::get_Tags() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t TraceLoggingMetadataCollector_get_Tags_m0F851297CC3BBE6DEA97B0DDA27EBC4462FCDA4A_inline (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.FieldMetadata::.ctor(System.String,System.Diagnostics.Tracing.TraceLoggingDataType,System.Diagnostics.Tracing.EventFieldTags,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FieldMetadata__ctor_mE3EBA94F5DE1B2637E0A0515BEB5D866779D86D2 (FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * __this, String_t* ___name0, int32_t ___type1, int32_t ___tags2, bool ___variableCount3, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingMetadataCollector::AddField(System.Diagnostics.Tracing.FieldMetadata) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingMetadataCollector_AddField_m9B34D7AB37CD85825092EC20DF72AC7254DA282F (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * ___fieldMetadata0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingMetadataCollector::.ctor(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.Diagnostics.Tracing.FieldMetadata) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingMetadataCollector__ctor_mE342313AC4310277DB5AF429C77F61B12B67389D (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * ___other0, FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * ___group1, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingMetadataCollector/Impl::AddScalar(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Impl_AddScalar_mF4D0F93A5611A1A6C3DD3429D980B80B4470E611 (Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * __this, int32_t ___size0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingMetadataCollector/Impl::AddNonscalar() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Impl_AddNonscalar_m75063AAB17BB5BF47DA14FFEB1166095E6EABD63 (Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * __this, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingMetadataCollector/Impl::BeginBuffered() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Impl_BeginBuffered_m9503BE745DB36F52B94DE0EFE4FF4AA25DD28AAE (Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * __this, const RuntimeMethod* method); // System.Void System.InvalidOperationException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706 (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingMetadataCollector/Impl::EndBuffered() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Impl_EndBuffered_m4F0A7B23766A9959B15EE20D8F7DB0B80B6BF0F3 (Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * __this, const RuntimeMethod* method); // System.Int32 System.Diagnostics.Tracing.TraceLoggingMetadataCollector/Impl::Encode(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Impl_Encode_m447740B08170A4E421F5E7143EF3232A77AB36CD (Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___metadata0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingMetadataCollector::set_Tags(System.Diagnostics.Tracing.EventFieldTags) IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void TraceLoggingMetadataCollector_set_Tags_mF42A2BC303AB0CE39F1CD993178A05E17D306B44_inline (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, int32_t ___value0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Diagnostics.Tracing.FieldMetadata>::Add(T) inline void List_1_Add_m006566681F0BEFBCF7978CE2B3FA4CA1074A4B81 (List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A * __this, FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * ___item0, const RuntimeMethod* method) { (( void (*) (List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A *, FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC *, const RuntimeMethod*))List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_gshared)(__this, ___item0, method); } // System.Void System.Diagnostics.Tracing.FieldMetadata::IncrementStructFieldCount() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FieldMetadata_IncrementStructFieldCount_m874313B0277DFA9F7B0309099139D9347E52F8AF (FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * __this, const RuntimeMethod* method); // System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<System.Diagnostics.Tracing.FieldMetadata>::GetEnumerator() inline Enumerator_t1702FC15AAB92C75120937BC12A636955F7ED3BE List_1_GetEnumerator_m0115521342BC440B70CEEF37B78F635C14534498 (List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A * __this, const RuntimeMethod* method) { return (( Enumerator_t1702FC15AAB92C75120937BC12A636955F7ED3BE (*) (List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A *, const RuntimeMethod*))List_1_GetEnumerator_m52CC760E475D226A2B75048D70C4E22692F9F68D_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<System.Diagnostics.Tracing.FieldMetadata>::get_Current() inline FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * Enumerator_get_Current_m262C34F27FC20407B5225412B2C323C654BE9E88_inline (Enumerator_t1702FC15AAB92C75120937BC12A636955F7ED3BE * __this, const RuntimeMethod* method) { return (( FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * (*) (Enumerator_t1702FC15AAB92C75120937BC12A636955F7ED3BE *, const RuntimeMethod*))Enumerator_get_Current_mD7829C7E8CFBEDD463B15A951CDE9B90A12CC55C_gshared_inline)(__this, method); } // System.Void System.Diagnostics.Tracing.FieldMetadata::Encode(System.Int32&,System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FieldMetadata_Encode_mF59FC93BED0895548D79501F4EE2CF0FEAE1B39A (FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * __this, int32_t* ___pos0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___metadata1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Diagnostics.Tracing.FieldMetadata>::MoveNext() inline bool Enumerator_MoveNext_m37F2C5471BB72DC494FC4C00D65102FEC56861F0 (Enumerator_t1702FC15AAB92C75120937BC12A636955F7ED3BE * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t1702FC15AAB92C75120937BC12A636955F7ED3BE *, const RuntimeMethod*))Enumerator_MoveNext_m38B1099DDAD7EEDE2F4CDAB11C095AC784AC2E34_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Diagnostics.Tracing.FieldMetadata>::Dispose() inline void Enumerator_Dispose_m59B527F033176221C360655866D8623C286F8AAC (Enumerator_t1702FC15AAB92C75120937BC12A636955F7ED3BE * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t1702FC15AAB92C75120937BC12A636955F7ED3BE *, const RuntimeMethod*))Enumerator_Dispose_m94D0DAE031619503CDA6E53C5C3CC78AF3139472_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1<System.Diagnostics.Tracing.FieldMetadata>::.ctor() inline void List_1__ctor_m5B92462E5F48CF2C1E83EFDE82BBFAB0429DC1B1 (List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A * __this, const RuntimeMethod* method) { (( void (*) (List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A *, const RuntimeMethod*))List_1__ctor_mC832F1AC0F814BAEB19175F5D7972A7507508BC3_gshared)(__this, method); } // System.Collections.Generic.IEnumerable`1<System.Reflection.PropertyInfo> System.Diagnostics.Tracing.Statics::GetProperties(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Statics_GetProperties_m5DFC41E95E0807B7F0EE158533B1B386AC80FAD1 (Type_t * ___type0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Diagnostics.Tracing.PropertyAnalysis>::.ctor() inline void List_1__ctor_m517BD02F3D70BFB00581673F29184CD223F4585B (List_1_t759B86C3AE2A2F5A5B70559ABC92F3CDAEB4DBEC * __this, const RuntimeMethod* method) { (( void (*) (List_1_t759B86C3AE2A2F5A5B70559ABC92F3CDAEB4DBEC *, const RuntimeMethod*))List_1__ctor_mC832F1AC0F814BAEB19175F5D7972A7507508BC3_gshared)(__this, method); } // System.Boolean System.Diagnostics.Tracing.Statics::HasCustomAttribute(System.Reflection.PropertyInfo,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Statics_HasCustomAttribute_m4CBBA23FEE129EEFE8E35786BAE38CD6CB619F55 (PropertyInfo_t * ___propInfo0, Type_t * ___attributeType1, const RuntimeMethod* method); // System.Reflection.MethodInfo System.Diagnostics.Tracing.Statics::GetGetMethod(System.Reflection.PropertyInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * Statics_GetGetMethod_mE98B4885D792A561AD1E0D5F019D080D45C193C4 (PropertyInfo_t * ___propInfo0, const RuntimeMethod* method); // System.Boolean System.Reflection.MethodInfo::op_Equality(System.Reflection.MethodInfo,System.Reflection.MethodInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodInfo_op_Equality_m1E51FB51169B9B8FB3120ED5F9B454785932C5D0 (MethodInfo_t * ___left0, MethodInfo_t * ___right1, const RuntimeMethod* method); // System.Boolean System.Reflection.MethodBase::get_IsStatic() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodBase_get_IsStatic_m745A9BDA4869DB7CC4886436C52D34855C1270A5 (MethodBase_t * __this, const RuntimeMethod* method); // System.Boolean System.Reflection.MethodBase::get_IsPublic() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodBase_get_IsPublic_m9DCA641DBE6F06D0DC4A4B2828641A6DEA97F88B (MethodBase_t * __this, const RuntimeMethod* method); // AttributeType System.Diagnostics.Tracing.Statics::GetCustomAttribute<System.Diagnostics.Tracing.EventFieldAttribute>(System.Reflection.PropertyInfo) inline EventFieldAttribute_tCD8E252D7D673724F2980B794282B715E16A675C * Statics_GetCustomAttribute_TisEventFieldAttribute_tCD8E252D7D673724F2980B794282B715E16A675C_m2EAB404362EDA0B68DE042BCE4A19835DA033E17 (PropertyInfo_t * ___propInfo0, const RuntimeMethod* method) { return (( EventFieldAttribute_tCD8E252D7D673724F2980B794282B715E16A675C * (*) (PropertyInfo_t *, const RuntimeMethod*))Statics_GetCustomAttribute_TisRuntimeObject_mA9698B61A4CDAC84F1A0602F4268A8F124A3CAA4_gshared)(___propInfo0, method); } // System.String System.Diagnostics.Tracing.EventFieldAttribute::get_Name() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* EventFieldAttribute_get_Name_m49EA259EE61C829EA9F76EE79E0C1BC610235467_inline (EventFieldAttribute_tCD8E252D7D673724F2980B794282B715E16A675C * __this, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.PropertyAnalysis::.ctor(System.String,System.Reflection.MethodInfo,System.Diagnostics.Tracing.TraceLoggingTypeInfo,System.Diagnostics.Tracing.EventFieldAttribute) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyAnalysis__ctor_m29B134F54408C609851A5B14D437079EE8F999BC (PropertyAnalysis_t3DC0F773245CD968BED647345E53535D422CF46A * __this, String_t* ___name0, MethodInfo_t * ___getterInfo1, TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * ___typeInfo2, EventFieldAttribute_tCD8E252D7D673724F2980B794282B715E16A675C * ___fieldAttribute3, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Diagnostics.Tracing.PropertyAnalysis>::Add(T) inline void List_1_Add_mAE60E38A3C5EB568E2FA5D503CBC7E188B2BC286 (List_1_t759B86C3AE2A2F5A5B70559ABC92F3CDAEB4DBEC * __this, PropertyAnalysis_t3DC0F773245CD968BED647345E53535D422CF46A * ___item0, const RuntimeMethod* method) { (( void (*) (List_1_t759B86C3AE2A2F5A5B70559ABC92F3CDAEB4DBEC *, PropertyAnalysis_t3DC0F773245CD968BED647345E53535D422CF46A *, const RuntimeMethod*))List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_gshared)(__this, ___item0, method); } // T[] System.Collections.Generic.List`1<System.Diagnostics.Tracing.PropertyAnalysis>::ToArray() inline PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB* List_1_ToArray_m25E26D7DD5298F9FCE28B119AA6856B693E5FB8C (List_1_t759B86C3AE2A2F5A5B70559ABC92F3CDAEB4DBEC * __this, const RuntimeMethod* method) { return (( PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB* (*) (List_1_t759B86C3AE2A2F5A5B70559ABC92F3CDAEB4DBEC *, const RuntimeMethod*))List_1_ToArray_m801D4DEF3587F60F463F04EEABE5CBE711FE5612_gshared)(__this, method); } // System.Int32 System.Diagnostics.Tracing.Statics::Combine(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Statics_Combine_m0AEA4E5998C70D965FB75058CC425FEE60BE1AB7 (int32_t ___settingValue10, int32_t ___settingValue21, const RuntimeMethod* method); // System.Diagnostics.Tracing.EventTags System.Diagnostics.Tracing.TraceLoggingTypeInfo::get_Tags() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t TraceLoggingTypeInfo_get_Tags_mDBDBBB08C1EC06514A4F899DA788100F1C36AF77_inline (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * __this, const RuntimeMethod* method); // System.Diagnostics.Tracing.EventLevel System.Diagnostics.Tracing.EventDataAttribute::get_Level() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t EventDataAttribute_get_Level_m2645CBBEA5EF6157B33D20DFFD92881FA5CB0D8B_inline (EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * __this, const RuntimeMethod* method); // System.Diagnostics.Tracing.EventOpcode System.Diagnostics.Tracing.EventDataAttribute::get_Opcode() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t EventDataAttribute_get_Opcode_mA9A0A7D84CD44B13F027B45AF1D8B5F0B435D79D_inline (EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * __this, const RuntimeMethod* method); // System.Diagnostics.Tracing.EventKeywords System.Diagnostics.Tracing.EventDataAttribute::get_Keywords() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int64_t EventDataAttribute_get_Keywords_m8D6FDC6B0786770D3C977A2440F9812F21B200E1_inline (EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * __this, const RuntimeMethod* method); // System.Diagnostics.Tracing.EventTags System.Diagnostics.Tracing.EventDataAttribute::get_Tags() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t EventDataAttribute_get_Tags_m412BCFA2B5FA99B82732C89EBC378E3A10AECB62_inline (EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * __this, const RuntimeMethod* method); // System.String System.Diagnostics.Tracing.EventDataAttribute::get_Name() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* EventDataAttribute_get_Name_m9AA2FCA324D80D38117FA506A81F54EAD3262D0F_inline (EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * __this, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddArray(System.UInt16[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddArray_m7FC7AC33CB29E1631DA57F8A5655C2BCA4B156B8 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UInt16[]>::.ctor() inline void TraceLoggingTypeInfo_1__ctor_m4CA2DF6A9F78819B7064FB9DEE26DAEAF206FC41 (TraceLoggingTypeInfo_1_t97FDBDA4CF3677121784926A6B75A517CB7A0354 * __this, const RuntimeMethod* method) { (( void (*) (TraceLoggingTypeInfo_1_t97FDBDA4CF3677121784926A6B75A517CB7A0354 *, const RuntimeMethod*))TraceLoggingTypeInfo_1__ctor_mE281DCCAC7AAA87CD49E26B9172B4A8BA78F5098_gshared)(__this, method); } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddScalar(System.UInt16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddScalar_mC4001DABF0B0A58EBB93275501D999A00D7F61C6 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, uint16_t ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UInt16>::.ctor() inline void TraceLoggingTypeInfo_1__ctor_mFFED700B80F94A8188F571B29E46272FFE165F68 (TraceLoggingTypeInfo_1_tCBF51B2E677BE976178EC8AC986798F9B65E2EC6 * __this, const RuntimeMethod* method) { (( void (*) (TraceLoggingTypeInfo_1_tCBF51B2E677BE976178EC8AC986798F9B65E2EC6 *, const RuntimeMethod*))TraceLoggingTypeInfo_1__ctor_mFFED700B80F94A8188F571B29E46272FFE165F68_gshared)(__this, method); } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddArray(System.UInt32[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddArray_mD71A1CEEC1FD6E51D5E74065306089DE07418995 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UInt32[]>::.ctor() inline void TraceLoggingTypeInfo_1__ctor_m6691C3567EF02E89787BEBC7485CCC68DD7E0170 (TraceLoggingTypeInfo_1_t8AE0E093509BB6D0AF1B5A1D5F17DAD0FC17FBAB * __this, const RuntimeMethod* method) { (( void (*) (TraceLoggingTypeInfo_1_t8AE0E093509BB6D0AF1B5A1D5F17DAD0FC17FBAB *, const RuntimeMethod*))TraceLoggingTypeInfo_1__ctor_mE281DCCAC7AAA87CD49E26B9172B4A8BA78F5098_gshared)(__this, method); } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddScalar(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddScalar_m3A8375255FAD53CE4EF938960ABCD165FC6727FF (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, uint32_t ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UInt32>::.ctor() inline void TraceLoggingTypeInfo_1__ctor_m9EF45CC40F98B8EEFE771610BD4833DB80064A48 (TraceLoggingTypeInfo_1_tC4AD26ADEB2206747827432E8A7EDA1A37681F10 * __this, const RuntimeMethod* method) { (( void (*) (TraceLoggingTypeInfo_1_tC4AD26ADEB2206747827432E8A7EDA1A37681F10 *, const RuntimeMethod*))TraceLoggingTypeInfo_1__ctor_m9EF45CC40F98B8EEFE771610BD4833DB80064A48_gshared)(__this, method); } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddArray(System.UInt64[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddArray_m9441D79F32E8FA07EF0814D951CADD8C5530CD82 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UInt64[]>::.ctor() inline void TraceLoggingTypeInfo_1__ctor_m3E75DAA4CCA56FCABC93D363960339207CFA0557 (TraceLoggingTypeInfo_1_t6EE8951B7314721A44CBD852551DAAF5CB72F606 * __this, const RuntimeMethod* method) { (( void (*) (TraceLoggingTypeInfo_1_t6EE8951B7314721A44CBD852551DAAF5CB72F606 *, const RuntimeMethod*))TraceLoggingTypeInfo_1__ctor_mE281DCCAC7AAA87CD49E26B9172B4A8BA78F5098_gshared)(__this, method); } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddScalar(System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddScalar_mA03D31A793FC01F72566FEB94EEE344ABBA25840 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, uint64_t ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UInt64>::.ctor() inline void TraceLoggingTypeInfo_1__ctor_m090791EDB460E88AD83B65DB619AD6940D7A21A5 (TraceLoggingTypeInfo_1_t2BDE5AE3D48BE884906B4ABADD9FA7EB16AD333C * __this, const RuntimeMethod* method) { (( void (*) (TraceLoggingTypeInfo_1_t2BDE5AE3D48BE884906B4ABADD9FA7EB16AD333C *, const RuntimeMethod*))TraceLoggingTypeInfo_1__ctor_m090791EDB460E88AD83B65DB619AD6940D7A21A5_gshared)(__this, method); } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddArray(System.UIntPtr[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddArray_mF562DD1AE2222F9B6D47DD20DC59F084D5E78452 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, UIntPtrU5BU5D_tD5404ABA0AA72923421D3F931F031EEEC654429E* ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UIntPtr[]>::.ctor() inline void TraceLoggingTypeInfo_1__ctor_m4AD1D20B36A5E6D3F95F5606065B95AB934C74B1 (TraceLoggingTypeInfo_1_tD16C7A6EA0D37CFA5AC0AED1A07D919210983479 * __this, const RuntimeMethod* method) { (( void (*) (TraceLoggingTypeInfo_1_tD16C7A6EA0D37CFA5AC0AED1A07D919210983479 *, const RuntimeMethod*))TraceLoggingTypeInfo_1__ctor_mE281DCCAC7AAA87CD49E26B9172B4A8BA78F5098_gshared)(__this, method); } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddScalar(System.UIntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddScalar_m5ED233D2CA9BA4750539B94FBBE49110025A5086 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, uintptr_t ___value0, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo`1<System.UIntPtr>::.ctor() inline void TraceLoggingTypeInfo_1__ctor_m01A1D2608814C21461FAC61AB3206112FFB03471 (TraceLoggingTypeInfo_1_tB931FCDE5F91B9AE5C5515AA58B5518C97F86330 * __this, const RuntimeMethod* method) { (( void (*) (TraceLoggingTypeInfo_1_tB931FCDE5F91B9AE5C5515AA58B5518C97F86330 *, const RuntimeMethod*))TraceLoggingTypeInfo_1__ctor_m01A1D2608814C21461FAC61AB3206112FFB03471_gshared)(__this, method); } // System.Void System.ArithmeticException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArithmeticException__ctor_mAE18F94959F9827DEA553C7C2F3C5568BEC81CCF (ArithmeticException_tF9EF5FE94597830EF315C5934258F994B8648269 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void System.Exception::SetErrorCode(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7 (Exception_t * __this, int32_t ___hr0, const RuntimeMethod* method); // System.Void System.ArithmeticException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArithmeticException__ctor_mE39E53B845DB39374DFC9B613B87342A4D05C672 (ArithmeticException_tF9EF5FE94597830EF315C5934258F994B8648269 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method); // System.Void System.TypeLoadException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeLoadException__ctor_m80951BFF6EB67A1ED3052D05569EF70D038B1581 (TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void System.TypeLoadException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeLoadException__ctor_m7D81F0BF798D436FF6ECF3F4B48F206DB8AB1293 (TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method); // System.Boolean System.Double::IsNaN(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Double_IsNaN_m5DFBBD58036879B687FEC248C50EACBABE205AB3 (double ___d0, const RuntimeMethod* method); // System.Int32 System.Double::CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Double_CompareTo_mB0A2B8C7C5FAC5BE56944B11D254507588407EB5 (double* __this, RuntimeObject * ___value0, const RuntimeMethod* method); // System.Int32 System.Double::CompareTo(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Double_CompareTo_m569906D5264ACFD3D0D5A1BAD116DC2CBCA0F4B1 (double* __this, double ___value0, const RuntimeMethod* method); // System.Boolean System.Double::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Double_Equals_m25A10C1D70E2906C2DAA5F3863B6AB76AFB13F33 (double* __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.Double::Equals(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Double_Equals_m07123CFF3B06183E095BF281110526F9B8953472 (double* __this, double ___obj0, const RuntimeMethod* method); // System.Int32 System.Int64::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int64_GetHashCode_mB5F9D4E16AFBD7C3932709B38AD8C8BF920CC0A4 (int64_t* __this, const RuntimeMethod* method); // System.Int32 System.Double::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Double_GetHashCode_m583A40025EE6D79EA606D34C38ACFEE231003292 (double* __this, const RuntimeMethod* method); // System.Globalization.NumberFormatInfo System.Globalization.NumberFormatInfo::get_CurrentInfo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * NumberFormatInfo_get_CurrentInfo_m595DF03E32E0C5B01F1EC45F7264B2BD09BA61C9 (const RuntimeMethod* method); // System.String System.Number::FormatDouble(System.Double,System.String,System.Globalization.NumberFormatInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Number_FormatDouble_m75CA311327BBDA4F918A84B0C0B689B5C4F84EC2 (double ___value0, String_t* ___format1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info2, const RuntimeMethod* method); // System.String System.Double::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Double_ToString_mEB58879AE04C90A89E1475909F82BF4F8540D8CF (double* __this, const RuntimeMethod* method); // System.Globalization.NumberFormatInfo System.Globalization.NumberFormatInfo::GetInstance(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * NumberFormatInfo_GetInstance_m713D298B436F3765F059FEA6C446F0A6ABF0A89A (RuntimeObject* ___formatProvider0, const RuntimeMethod* method); // System.String System.Double::ToString(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Double_ToString_mBDC030ABB6F09ED7233866009CE02784B1692BC9 (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.String System.Double::ToString(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Double_ToString_m1D341E667E85E9E18783A14CB02982643E96C616 (double* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.Double System.Double::Parse(System.String,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Double_Parse_m6CDDAF2DCACA8C26336176A005D7A2C8032210AF (String_t* ___s0, int32_t ___style1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info2, const RuntimeMethod* method); // System.Void System.Globalization.NumberFormatInfo::ValidateParseStyleFloatingPoint(System.Globalization.NumberStyles) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatInfo_ValidateParseStyleFloatingPoint_mEC705C72BC013FB4A554725339A2617D9B4ECC07 (int32_t ___style0, const RuntimeMethod* method); // System.Double System.Number::ParseDouble(System.String,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Number_ParseDouble_m1114DFDF930B69AB3222044E9818855F131B5672 (String_t* ___value0, int32_t ___options1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numfmt2, const RuntimeMethod* method); // System.TypeCode System.Double::GetTypeCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Double_GetTypeCode_mEDD856E79AFA5648A5F5ABD8B32EE88E640B8FA3 (double* __this, const RuntimeMethod* method); // System.Boolean System.Convert::ToBoolean(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_ToBoolean_m23B521E072296AA7D4F9FA80D35E27C306B5ABDF (double ___value0, const RuntimeMethod* method); // System.Boolean System.Double::System.IConvertible.ToBoolean(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Double_System_IConvertible_ToBoolean_mF2373D33947A1A2A41037A40C332F1F8B0B31399 (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Void System.InvalidCastException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812 (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * __this, String_t* ___message0, const RuntimeMethod* method); // System.Char System.Double::System.IConvertible.ToChar(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Double_System_IConvertible_ToChar_m5A3D51F95BEEFB294294FC0D2CB4D198ADEC9004 (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.SByte System.Convert::ToSByte(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_m286EC501DE7B1980DE30BBB28DDA70AE4BB696E5 (double ___value0, const RuntimeMethod* method); // System.SByte System.Double::System.IConvertible.ToSByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Double_System_IConvertible_ToSByte_m420F7D1B2F9EC1EB5727C4FC343B5D9A1F80FF9E (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Byte System.Convert::ToByte(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_m91AFBFC15EA62AF9EA9826E3F777635C1E18F32C (double ___value0, const RuntimeMethod* method); // System.Byte System.Double::System.IConvertible.ToByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Double_System_IConvertible_ToByte_mC6823B019DF9C56705E00B56F69FE337DA4FA3D2 (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Int16 System.Convert::ToInt16(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_m1F982FED72A4829E1DE1A64F162F13555FC1F7EC (double ___value0, const RuntimeMethod* method); // System.Int16 System.Double::System.IConvertible.ToInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Double_System_IConvertible_ToInt16_m1912F2BCB7CCEA69C8383DE3F23629EA72901FE8 (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.UInt16 System.Convert::ToUInt16(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_mC488D697C85EE1862D2D8FFFD30BC8E99AB73BE5 (double ___value0, const RuntimeMethod* method); // System.UInt16 System.Double::System.IConvertible.ToUInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Double_System_IConvertible_ToUInt16_m7EB78B4D0E534EA609CA0ECCB65126288A01E7BB (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Int32 System.Convert::ToInt32(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m1A048B98439E87B6AA81AEA091F8F515D3EF730C (double ___value0, const RuntimeMethod* method); // System.Int32 System.Double::System.IConvertible.ToInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Double_System_IConvertible_ToInt32_m58F8E6D8B06DD91DEFF79EFC07F1E611D62901D4 (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.UInt32 System.Convert::ToUInt32(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_mB7F4B7176295B3AA240199C4C2E7E59C3B74E6AF (double ___value0, const RuntimeMethod* method); // System.UInt32 System.Double::System.IConvertible.ToUInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Double_System_IConvertible_ToUInt32_mDFE527435A1AB18FB7B8C2B82FD957E2CBDCB85D (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Int64 System.Convert::ToInt64(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m64CA1F639893BC431286C0AE8266AA46E38FB57D (double ___value0, const RuntimeMethod* method); // System.Int64 System.Double::System.IConvertible.ToInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Double_System_IConvertible_ToInt64_mB0F1BC81467C260C314E8677DA7E7424373F4E74 (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.UInt64 System.Convert::ToUInt64(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_mA246C8DD45C3EA0EFB21E3ED8B6EE6FAAE119232 (double ___value0, const RuntimeMethod* method); // System.UInt64 System.Double::System.IConvertible.ToUInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Double_System_IConvertible_ToUInt64_m42B2609C9326264155EA6BCE68D394B003C3B8DB (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Single System.Convert::ToSingle(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_mDADB8C1C52121EE8B0040D4E5FC7CFD2CFAD8B80 (double ___value0, const RuntimeMethod* method); // System.Single System.Double::System.IConvertible.ToSingle(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Double_System_IConvertible_ToSingle_m368154C37F9126F8A86FE2885B6A01BFF514EC4F (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Double System.Double::System.IConvertible.ToDouble(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Double_System_IConvertible_ToDouble_mD5A55AC211814A338B9B78AEB30C654CD9FE9B12 (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Decimal System.Convert::ToDecimal(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Convert_ToDecimal_mF93A2E5C1006C59187BA8F1F17E66CEC2D8F7FCE (double ___value0, const RuntimeMethod* method); // System.Decimal System.Double::System.IConvertible.ToDecimal(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Double_System_IConvertible_ToDecimal_m82107C16B72FEA85A6BE269EA2C4ADCEA77BDF78 (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.DateTime System.Double::System.IConvertible.ToDateTime(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Double_System_IConvertible_ToDateTime_m3D5512DED1ECDB253130146CA1324D7F77DF8CE8 (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Object System.Convert::DefaultToType(System.IConvertible,System.Type,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Convert_DefaultToType_m899D5F6B9FE3E8B878BC56172C6BFE788B6C1BE3 (RuntimeObject* ___value0, Type_t * ___targetType1, RuntimeObject* ___provider2, const RuntimeMethod* method); // System.Object System.Double::System.IConvertible.ToType(System.Type,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Double_System_IConvertible_ToType_m8A79DB3AE4184EB16E3F7401C1AF1F5487996E17 (double* __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.Double System.BitConverter::Int64BitsToDouble(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double BitConverter_Int64BitsToDouble_m9BCBEBF8C6E35A37E6A233B11F97164D9F0BF694 (int64_t ___value0, const RuntimeMethod* method); // System.Void System.UnitySerializationHolder::GetUnitySerializationInfo(System.Runtime.Serialization.SerializationInfo,System.Int32,System.String,System.Reflection.RuntimeAssembly) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnitySerializationHolder_GetUnitySerializationInfo_m86F654140996546DB4D6D8228BF9FE45E9BAEC3E (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, int32_t ___unityType1, String_t* ___data2, RuntimeAssembly_t5EE9CD749D82345AE5635B9665665C31A3308EB1 * ___assembly3, const RuntimeMethod* method); // System.Void System.Empty::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Empty__ctor_m23D1BFDB32C4D61606BF357FD0322407A0F7B997 (Empty_t31C7ECDF7D102AFFCE029D8AB11D8595F0316ED2 * __this, const RuntimeMethod* method); // System.Boolean System.Enum::GetEnumValuesAndNames(System.RuntimeType,System.UInt64[]&,System.String[]&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enum_GetEnumValuesAndNames_m1DE3CB2A67168F041F94B867603001FA33DE19BB (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___enumType0, UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4** ___values1, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** ___names2, const RuntimeMethod* method); // System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<System.UInt64>::get_Default() inline Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC * Comparer_1_get_Default_mDDE26044E0F352546BE2390402A0236FE376FB3C (const RuntimeMethod* method) { return (( Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC * (*) (const RuntimeMethod*))Comparer_1_get_Default_mDDE26044E0F352546BE2390402A0236FE376FB3C_gshared)(method); } // System.Void System.Array::Sort<System.UInt64,System.String>(TKey[],TValue[],System.Collections.Generic.IComparer`1<TKey>) inline void Array_Sort_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_TisString_t_mD72A29E49E470E40B0AF25859927BAEE4A19004A (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* ___keys0, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___items1, RuntimeObject* ___comparer2, const RuntimeMethod* method) { (( void (*) (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*, RuntimeObject*, const RuntimeMethod*))Array_Sort_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_TisRuntimeObject_m576D13AEC7245A3AD8E7A5BF192F68C522E5CB85_gshared)(___keys0, ___items1, ___comparer2, method); } // System.Void System.Enum/ValuesAndNames::.ctor(System.UInt64[],System.String[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesAndNames__ctor_mB8D86E5162F53D54672653DDE596C5FEBD9B3D7F (ValuesAndNames_t48A099BB10887A683F62017FAD199FB2088CBDD2 * __this, UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* ___values0, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___names1, const RuntimeMethod* method); // System.TypeCode System.Convert::GetTypeCode(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_GetTypeCode_mFE36252E332A7D699C91003DF56C37380C1AD58D (RuntimeObject * ___value0, const RuntimeMethod* method); // System.String System.Byte::ToString(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Byte_ToString_m731FDB27391432D7F14B6769B5D0A3E248803D25 (uint8_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.Byte System.Convert::ToByte(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_m2F75DB84C61D7D1D64393FD5756A9C9DE04FF716 (bool ___value0, const RuntimeMethod* method); // System.String System.UInt16::ToString(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UInt16_ToString_mD0CBA1F073A0E16528C1A7EB4E8A9892D218895B (uint16_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.String System.UInt32::ToString(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UInt32_ToString_m57BE7A0F4A653986FEAC4794CD13B04CE012F4EE (uint32_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.String System.Enum::GetName(System.Type,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Enum_GetName_m9DE2256BCA030763AE066DA2B23EBBC2E4C62C5D (Type_t * ___enumType0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.String System.Enum::InternalFlagsFormat(System.RuntimeType,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Enum_InternalFlagsFormat_mD244B3277B49F145783C308015C9689FE9DF475C (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___eT0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.UInt64 System.Enum::ToUInt64(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Enum_ToUInt64_mF33D43629B55147D1AF6CC3D813F894435AA50F5 (RuntimeObject * ___value0, const RuntimeMethod* method); // System.Enum/ValuesAndNames System.Enum::GetCachedValuesAndNames(System.RuntimeType,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValuesAndNames_t48A099BB10887A683F62017FAD199FB2088CBDD2 * Enum_GetCachedValuesAndNames_m1001EB28E9797369685546F225FE322640A1F6A3 (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___enumType0, bool ___getNames1, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::Insert(System.Int32,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Insert_m38829D9C9FE52ACD6541ED735D4435FB2A831A2C (StringBuilder_t * __this, int32_t ___index0, String_t* ___value1, const RuntimeMethod* method); // System.Int64 System.Convert::ToInt64(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m8964FDE5D82FEC54106DBF35E1F67D70F6E73E29 (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.UInt64 System.Convert::ToUInt64(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_mA8C3C5498FC28CBA0EB0C37409EB9E04CCF6B8D2 (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.Object System.Enum::Parse(System.Type,System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_Parse_mC51A0BD680AC2D2152A541E2A8475DB61A83A6E7 (Type_t * ___enumType0, String_t* ___value1, bool ___ignoreCase2, const RuntimeMethod* method); // System.Void System.Enum/EnumResult::Init(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnumResult_Init_m216C0A2C400E00ECA1E85E1C6374C19862785478 (EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C * __this, bool ___canMethodThrow0, const RuntimeMethod* method); // System.Boolean System.Enum::TryParseEnum(System.Type,System.String,System.Boolean,System.Enum/EnumResult&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enum_TryParseEnum_mABDEE4971D4257A8058A3F1AC12DE081AD694D4E (Type_t * ___enumType0, String_t* ___value1, bool ___ignoreCase2, EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C * ___parseResult3, const RuntimeMethod* method); // System.Exception System.Enum/EnumResult::GetEnumParseException() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * EnumResult_GetEnumParseException_m7C06BD6056764876616D10BB96C55599D008740B (EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C * __this, const RuntimeMethod* method); // System.Boolean System.RuntimeType::op_Equality(System.RuntimeType,System.RuntimeType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4 (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___left0, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___right1, 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.Void System.Enum/EnumResult::SetFailure(System.Enum/ParseFailureKind,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnumResult_SetFailure_mE9F0F9CA050C904DA2409A923325038BEAC693BD (EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C * __this, int32_t ___failure0, String_t* ___failureParameter1, const RuntimeMethod* method); // System.String System.String::Trim() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Trim_mB52EB7876C7132358B76B7DC95DEACA20722EF4D (String_t* __this, const RuntimeMethod* method); // System.Void System.Enum/EnumResult::SetFailure(System.Enum/ParseFailureKind,System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnumResult_SetFailure_m074187A9DB5CC9B1E8AC1149BC23D612B6A63629 (EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C * __this, int32_t ___failure0, String_t* ___failureMessageID1, RuntimeObject * ___failureMessageFormatArgument2, const RuntimeMethod* method); // System.Object System.Convert::ChangeType(System.Object,System.Type,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Convert_ChangeType_m4F879F3D17C11FA0B648C99C6D3C42DD33F40926 (RuntimeObject * ___value0, Type_t * ___conversionType1, RuntimeObject* ___provider2, const RuntimeMethod* method); // System.Object System.Enum::ToObject(System.Type,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_ToObject_mED18F2B01F4BA412C1882396CE977411BB54165D (Type_t * ___enumType0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Void System.Enum/EnumResult::SetFailure(System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnumResult_SetFailure_m30134BF6A5C03CF59E21BC54AF69042D327FA125 (EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C * __this, Exception_t * ___unhandledException0, const RuntimeMethod* method); // System.String[] System.String::Split(System.Char[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* String_Split_m13262358217AD2C119FD1B9733C3C0289D608512 (String_t* __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___separator0, const RuntimeMethod* method); // System.Int32 System.String::Compare(System.String,System.String,System.StringComparison) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_Compare_m5BD1EF8904C9B13BEDB7A876B122F117B317B442 (String_t* ___strA0, String_t* ___strB1, int32_t ___comparisonType2, const RuntimeMethod* method); // System.Object System.Enum::ToObject(System.Type,System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_ToObject_m8F5068C996337F56B4000A4B255126A35951BD05 (Type_t * ___enumType0, uint64_t ___value1, const RuntimeMethod* method); // System.Object System.Enum::ToObject(System.Type,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_ToObject_mD5E11C53D7BCC62EF4260FA727E14B7B95C2191F (Type_t * ___enumType0, int32_t ___value1, const RuntimeMethod* method); // System.Object System.Enum::ToObject(System.Type,System.SByte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_ToObject_mF17916242A9F9ACD4F79E15749BEE3FBB2D7A57B (Type_t * ___enumType0, int8_t ___value1, const RuntimeMethod* method); // System.Object System.Enum::ToObject(System.Type,System.Int16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_ToObject_mC2D7A39D56EFFFE7D0B61D685C8F285356CC71BF (Type_t * ___enumType0, int16_t ___value1, const RuntimeMethod* method); // System.Object System.Enum::ToObject(System.Type,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_ToObject_mE84F27DFCF3F22A1053968A9DCE6C0D14D25B7E2 (Type_t * ___enumType0, int64_t ___value1, const RuntimeMethod* method); // System.Object System.Enum::ToObject(System.Type,System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_ToObject_m4C7675BBEBAD96C9706EAF7529E4113F7381F0C7 (Type_t * ___enumType0, uint32_t ___value1, const RuntimeMethod* method); // System.Object System.Enum::ToObject(System.Type,System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_ToObject_m8F4C7D69296541DF78E40CEB98B59C7CA67633B6 (Type_t * ___enumType0, uint8_t ___value1, const RuntimeMethod* method); // System.Object System.Enum::ToObject(System.Type,System.UInt16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_ToObject_mAF017E3EDCF2C7BA8FF7ED0DDCBCD827B51D4971 (Type_t * ___enumType0, uint16_t ___value1, const RuntimeMethod* method); // System.Object System.Enum::ToObject(System.Type,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_ToObject_mC3CE70A98934303986CC11631FC415BCA9C4000A (Type_t * ___enumType0, Il2CppChar ___value1, const RuntimeMethod* method); // System.Object System.Enum::ToObject(System.Type,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_ToObject_m22DBEC2C53D962AC357CC08D6ECEA2DE53867C15 (Type_t * ___enumType0, bool ___value1, const RuntimeMethod* method); // System.Object System.Enum::get_value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_get_value_mDC122E270C1A2937603D2A196C319A148C02A0B4 (RuntimeObject * __this, const RuntimeMethod* method); // System.Boolean System.ValueType::DefaultEquals(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueType_DefaultEquals_m139582CD1BAD7472B45D806F76E4E14E82E629DB (RuntimeObject * ___o10, RuntimeObject * ___o21, const RuntimeMethod* method); // System.Int32 System.Enum::get_hashcode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enum_get_hashcode_mA42CD9ED05E0F9B2E029B7215A4F5EF879376853 (RuntimeObject * __this, 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.Object System.Enum::GetValue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_GetValue_m1537D0F805734D5C039C47E59D0B1A53B659AC0A (RuntimeObject * __this, const RuntimeMethod* method); // System.String System.Enum::InternalFormat(System.RuntimeType,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Enum_InternalFormat_mDDEDEA76AB6EA551C386ABB43B5E789696A6E04B (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___eT0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.String System.Enum::ToString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Enum_ToString_m6BEF4567C67A1EF85E25BAEBF882C792CDC0808C (RuntimeObject * __this, String_t* ___format0, const RuntimeMethod* method); // System.Void System.NullReferenceException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NullReferenceException__ctor_m7D46E331C349DD29CBA488C9B6A950A3E7DD5CAE (NullReferenceException_t204B194BC4DDA3259AF5A8633EA248AE5977ABDC * __this, const RuntimeMethod* method); // System.Int32 System.Enum::InternalCompareTo(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enum_InternalCompareTo_m3EBB69A78DA374BF88E9393542454A8DB9FEC73A (RuntimeObject * ___o10, RuntimeObject * ___o21, const RuntimeMethod* method); // System.String System.Enum::InternalFormattedHexString(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Enum_InternalFormattedHexString_mBE7CD93BAA508C20D13D470A11B40222893508DF (RuntimeObject * ___value0, const RuntimeMethod* method); // System.Void System.FormatException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FormatException__ctor_m89167FF9884AE20232190FE9286DC50E146A4F14 (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * __this, String_t* ___message0, const RuntimeMethod* method); // System.Boolean System.Convert::ToBoolean(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_ToBoolean_m881535C7C6F8B032F5883E7F18A90C27690FB5E4 (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.Char System.Convert::ToChar(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Convert_ToChar_m94EF86BDBD5110CF4C652C48A625F546AA24CE95 (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.SByte System.Convert::ToSByte(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_m2716303126BD8C930D1D4E8590F8706A8F26AD48 (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.Byte System.Convert::ToByte(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_m71CFEFDB61F13E2AD7ECF91BA5DEE0616C1E857A (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.Int16 System.Convert::ToInt16(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_m9E4E48A97E050355468F58D2EAEB3AB3C811CE8B (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.UInt16 System.Convert::ToUInt16(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_mB7311DB5960043FD81C1305B69C5328126F43C89 (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.Int32 System.Convert::ToInt32(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m5D40340597602FB6C20BAB933E8B29617232757A (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.UInt32 System.Convert::ToUInt32(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_mB53B83E03C15DCD785806793ACC3083FCC7F4BCA (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.Single System.Convert::ToSingle(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_mDC4B8C88AF6F230E79A887EFD4D745CB08341828 (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.Double System.Convert::ToDouble(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Convert_ToDouble_m053A47D87C59CA7A87D4E67E5E06368D775D7651 (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.Decimal System.Convert::ToDecimal(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Convert_ToDecimal_mD8F65E8B251DBE61789CAD032172D089375D1E5B (RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.Object System.Enum::InternalBoxEnum(System.RuntimeType,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_InternalBoxEnum_m68B17FCE000371BEA515B898F6EC928DC8923251 (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___enumType0, int64_t ___value1, const RuntimeMethod* method); // System.Void System.ValueType::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueType__ctor_m091BDF02E011A41101A74AABB803417EE40CA5B7 (RuntimeObject * __this, const RuntimeMethod* method); // System.String System.String::Format(System.IFormatProvider,System.String,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_mF68EE0DEC1AA5ADE9DFEF9AE0508E428FBB10EFD (RuntimeObject* ___provider0, String_t* ___format1, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args2, const RuntimeMethod* method); // System.String System.Int32::ToString(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m1D0AF82BDAB5D4710527DD3FEFA6F01246D128A5 (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Threading.Thread System.Threading.Thread::get_CurrentThread() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * Thread_get_CurrentThread_mB7A83CAE2B9A74CEA053196DFD1AF1E7AB30A70E (const RuntimeMethod* method); // System.Int32 System.Threading.Thread::get_ManagedThreadId() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Thread_get_ManagedThreadId_m7FA85162CB00713B94EF5708B19120F791D3AAD1 (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, const RuntimeMethod* method); // System.String System.Environment::GetNewLine() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetNewLine_m06F2388258016A6A3E6823FFC11E249F9D628254 (const RuntimeMethod* method); // System.String System.Environment::GetOSVersionString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetOSVersionString_m8ECDAFD7F8071A970ACA14732006C7BA71E2F46C (const RuntimeMethod* method); // System.Version System.Environment::CreateVersionFromString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * Environment_CreateVersionFromString_mCDE19D44ACAB5C81224AC4F35FDA0F51140A8318 (String_t* ___info0, const RuntimeMethod* method); // System.PlatformID System.Environment::get_Platform() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Environment_get_Platform_m09BB945B43442029D4EFB0835BBD23774F248B0C (const RuntimeMethod* method); // System.Void System.OperatingSystem::.ctor(System.PlatformID,System.Version) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OperatingSystem__ctor_m17CCE490F4F87F8193C6D4AE9265AE907D8634CE (OperatingSystem_tBB05846D5AA6960FFEB42C59E5FE359255C2BE83 * __this, int32_t ___platform0, Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * ___version1, const RuntimeMethod* method); // System.Void System.Version::.ctor(System.Int32,System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Version__ctor_mFA5AABF2294D59FA7B3F32BB48CB238BCACBDF80 (Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * __this, int32_t ___major0, int32_t ___minor1, int32_t ___build2, int32_t ___revision3, const RuntimeMethod* method); // System.Void System.Diagnostics.StackTrace::.ctor(System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void StackTrace__ctor_mC06D6ED2D5E080D5B9D31E7B595D8A7F0675F504 (StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99 * __this, int32_t ___skipFrames0, bool ___fNeedFileInfo1, const RuntimeMethod* method); // System.Int32 System.String::IndexOf(System.Char,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_m66F6178DB4B2F61F4FAFD8B75787D0AB142ADD7D (String_t* __this, Il2CppChar ___value0, int32_t ___startIndex1, const RuntimeMethod* method); // System.String System.String::Substring(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB (String_t* __this, int32_t ___startIndex0, int32_t ___length1, const RuntimeMethod* method); // System.String System.Environment::GetEnvironmentVariable(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetEnvironmentVariable_mB94020EE6B0D5BADF024E4BE6FBC54A5954D2185 (String_t* ___variable0, const RuntimeMethod* method); // System.Boolean System.Environment::get_IsRunningOnWindows() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Environment_get_IsRunningOnWindows_m450E4F44CC5B040187C3E0E42B129780FABE455D (const RuntimeMethod* method); // System.Collections.Hashtable System.Environment::GetEnvironmentVariablesNoCase() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * Environment_GetEnvironmentVariablesNoCase_m96643C3EE79581997F046EE52069B19E8369D63E (const RuntimeMethod* method); // Mono.SafeStringMarshal Mono.RuntimeMarshal::MarshalString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SafeStringMarshal_tD41B530333F2C9F500BD6FEC91735D16F06C9A6F RuntimeMarshal_MarshalString_m8A782D398D13D0865FFE9B3396966ED903180A1F (String_t* ___str0, const RuntimeMethod* method); // System.IntPtr Mono.SafeStringMarshal::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t SafeStringMarshal_get_Value_m70D3D1F546F1D924BDAA1A1322FE2EB7FE18F1D5 (SafeStringMarshal_tD41B530333F2C9F500BD6FEC91735D16F06C9A6F * __this, const RuntimeMethod* method); // System.String System.Environment::internalGetEnvironmentVariable_native(System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_internalGetEnvironmentVariable_native_m7B353C5EFFF5E3740E0D343A0435E503BB694E74 (intptr_t ___variable0, const RuntimeMethod* method); // System.Void Mono.SafeStringMarshal::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SafeStringMarshal_Dispose_m031213ECC460DFEA083ECAF0AE51AA70FF548898 (SafeStringMarshal_tD41B530333F2C9F500BD6FEC91735D16F06C9A6F * __this, const RuntimeMethod* method); // System.String System.Environment::internalGetEnvironmentVariable(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_internalGetEnvironmentVariable_m49ACD082ABE4C40D49DC9CEE88AB3DCC402D6972 (String_t* ___variable0, const RuntimeMethod* method); // System.Collections.CaseInsensitiveHashCodeProvider System.Collections.CaseInsensitiveHashCodeProvider::get_Default() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CaseInsensitiveHashCodeProvider_tC6D5564219051252BBC7B49F78CC8173105F0C34 * CaseInsensitiveHashCodeProvider_get_Default_mEB75D6529BEF600AEC8A3F848B9CAB5650C588B8 (const RuntimeMethod* method); // System.Collections.CaseInsensitiveComparer System.Collections.CaseInsensitiveComparer::get_Default() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CaseInsensitiveComparer_tF9935EB25E69CEF5A3B17CE8D22E2797F23B17BE * CaseInsensitiveComparer_get_Default_m1E0D7C553D3E1A4E201C807116BDD551279306E9 (const RuntimeMethod* method); // System.Void System.Collections.Hashtable::.ctor(System.Collections.IHashCodeProvider,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_mFC259F7B115F0D1AEDE934D8CF7F1288A10A1DFB (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, RuntimeObject* ___hcp0, RuntimeObject* ___comparer1, const RuntimeMethod* method); // System.String[] System.Environment::GetEnvironmentVariableNames() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* Environment_GetEnvironmentVariableNames_mFDDA0116D39EBFC7C6985C7E09535E1B61F534FB (const RuntimeMethod* method); // System.String System.Environment::GetFolderPath(System.Environment/SpecialFolder,System.Environment/SpecialFolderOption) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetFolderPath_m6E9EC33C813EC32EF22350270BCC8D8F59D972C5 (int32_t ___folder0, int32_t ___option1, const RuntimeMethod* method); // System.Void System.Security.SecurityManager::EnsureElevatedPermissions() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SecurityManager_EnsureElevatedPermissions_m4169B183D4094E3E840DC0942FBCBDB3E0F127A6 (const RuntimeMethod* method); // System.String System.Environment::GetWindowsFolderPath(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetWindowsFolderPath_m1A2A85D251544A4A200BE075F72D45B1E2160726 (int32_t ___folder0, const RuntimeMethod* method); // System.String System.Environment::UnixGetFolderPath(System.Environment/SpecialFolder,System.Environment/SpecialFolderOption) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_UnixGetFolderPath_mD4042C67476F52494B34BEAC11D4F381DABAB59B (int32_t ___folder0, int32_t ___option1, const RuntimeMethod* method); // System.Boolean System.String::op_Inequality(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Inequality_m0BD184A74F453A72376E81CC6CAEE2556B80493E (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method); // System.String System.IO.Path::Combine(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Path_Combine_mA495A18104786EB450EC0E44EE0FB7F9040C4311 (String_t* ___path10, String_t* ___path21, const RuntimeMethod* method); // System.Boolean System.IO.File::Exists(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool File_Exists_m6B9BDD8EEB33D744EB0590DD27BC0152FAFBD1FB (String_t* ___path0, const RuntimeMethod* method); // System.Void System.IO.StreamReader::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamReader__ctor_mE646A80660B17E91CEA1048DB5B6F0616C77EECD (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, String_t* ___path0, const RuntimeMethod* method); // System.Boolean System.String::op_Equality(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method); // System.String System.String::Trim(System.Char[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Trim_m788DE5AEFDAC40E778745C4DF4AFD45A4BC1007E (String_t* __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___trimChars0, const RuntimeMethod* method); // System.Boolean System.String::StartsWithOrdinalUnchecked(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_StartsWithOrdinalUnchecked_mC028BA12B4C1D3EA141134DD13C9DB2F1350CC4B (String_t* __this, String_t* ___value0, const RuntimeMethod* method); // System.String System.Environment::internalGetHome() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_internalGetHome_m4B03F6F0B0C466284C7F02AE967B1DE8AF811E8E (const RuntimeMethod* method); // System.String System.Environment::ReadXdgUserDir(System.String,System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_ReadXdgUserDir_m2BBB7A3FB0BE8C2016FBB553C812913D15D34613 (String_t* ___config_dir0, String_t* ___home_dir1, String_t* ___key2, String_t* ___fallback3, const RuntimeMethod* method); // System.String System.IO.Path::Combine(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Path_Combine_mAB92AD33FF91D3550E1683D5E732895A08B758DA (String_t* ___path10, String_t* ___path21, String_t* ___path32, const RuntimeMethod* method); // System.Void System.NotImplementedException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotImplementedException__ctor_m8BEA657E260FC05F0C6D2C43A6E9BC08040F59C4 (NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4 * __this, const RuntimeMethod* method); // System.Void System.ExecutionEngineException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecutionEngineException__ctor_m920A0F10B7F5A314C49A9036028509ACB57C4F6D (ExecutionEngineException_t9D6DDEC5449D08251371AB57FE61558C2A2B1F21 * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method); // System.Void System.Diagnostics.StackTrace::.ctor(System.Boolean) IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void StackTrace__ctor_mCF16893B6C5EEC13841370A064CFF74E9F54E997 (StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99 * __this, bool ___fNeedFileInfo0, const RuntimeMethod* method); // System.Void System.Diagnostics.StackTrace::.ctor(System.Exception,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StackTrace__ctor_m3D57C02A24F1CCFD03425E2C4697A6347EB90408 (StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99 * __this, Exception_t * ___e0, bool ___fNeedFileInfo1, const RuntimeMethod* method); // System.String System.Diagnostics.StackTrace::ToString(System.Diagnostics.StackTrace/TraceFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StackTrace_ToString_m1C8457C5B1405CB08B90BEC24F67D636EF5026A5 (StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99 * __this, int32_t ___traceFormat0, const RuntimeMethod* method); // System.Void System.Exception::set_HResult(System.Int32) IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void Exception_set_HResult_m920DF8C728D8A0EC0759685FED890C775FA08B99_inline (Exception_t * __this, int32_t ___value0, const RuntimeMethod* method); // System.Void System.Runtime.Serialization.SafeSerializationManager::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SafeSerializationManager__ctor_mB5F471396A3FDEB14E216389830B1589AFC4857A (SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * __this, const RuntimeMethod* method); // System.Void System.Exception::Init() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception_Init_mB543C81C2EEC2B99274329ACD365429C3AB65B81 (Exception_t * __this, const RuntimeMethod* method); // System.String System.Runtime.Serialization.SerializationInfo::GetString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SerializationInfo_GetString_m06805A4E368E0B98D5FA70A9333B277CBDD84CF4 (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, const RuntimeMethod* method); // System.Object System.Runtime.Serialization.SerializationInfo::GetValueNoThrow(System.String,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SerializationInfo_GetValueNoThrow_m096541B70283B3F278C63DF8D6D1BE8C51C2C7DF (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, Type_t * ___type1, 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.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.Int32 System.Exception::get_HResult() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t Exception_get_HResult_m1F2775B234F243AD3D8AAE63B1BB5130ADD29502_inline (Exception_t * __this, 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.Runtime.Serialization.StreamingContextStates System.Runtime.Serialization.StreamingContext::get_State() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t StreamingContext_get_State_mC28CB681EC71C3E6B08B277F3BD0F041FC5D1F62_inline (StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 * __this, const RuntimeMethod* method); // System.String System.Exception::GetClassName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Exception_GetClassName_mA1AF30AF222EA80BED79AC7E1FF5CB7A44E59389 (Exception_t * __this, const RuntimeMethod* method); // System.Type System.Exception::GetType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Exception_GetType_mA3390B9D538D5FAC3802D9D8A2FCAC31465130F3 (Exception_t * __this, const RuntimeMethod* method); // System.String System.Exception::GetStackTrace(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Exception_GetStackTrace_m8FE5D5A0DDDC59C343C9A353824C54DFB6A182A0 (Exception_t * __this, bool ___needFileInfo0, const RuntimeMethod* method); // System.String System.Exception::StripFileInfo(System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Exception_StripFileInfo_m39B49712FFB0D5BC37BFC2F3D076CA1585E760D1 (Exception_t * __this, String_t* ___stackTrace0, bool ___isRemoteStackTrace1, const RuntimeMethod* method); // System.String System.Environment::GetStackTrace(System.Exception,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetStackTrace_m12FAD59C12D3ED43C780A01CF9A91072EA1E2D6B (Exception_t * ___e0, bool ___needFileInfo1, const RuntimeMethod* method); // System.Boolean System.Reflection.MethodBase::op_Inequality(System.Reflection.MethodBase,System.Reflection.MethodBase) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodBase_op_Inequality_mA03AE708DD0D76404AED7C36A75741E2A6BC6BF7 (MethodBase_t * ___left0, MethodBase_t * ___right1, const RuntimeMethod* method); // System.String System.Reflection.AssemblyName::get_Name() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* AssemblyName_get_Name_m6EA5C18D2FF050D3AF58D4A21ED39D161DFF218B_inline (AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * __this, const RuntimeMethod* method); // System.String System.Exception::ToString(System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Exception_ToString_m297BCBDFD8F98A7BD69F689436100573B2F71D72 (Exception_t * __this, bool ___needFileLineInfo0, bool ___needMessage1, const RuntimeMethod* method); // System.String System.Environment::get_NewLine() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_get_NewLine_m5D4F4667FA5D1E2DBDD4DF9696D0CE76C83EF318 (const RuntimeMethod* method); // System.String System.String::Concat(System.String[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m232E857CA5107EA6AC52E7DD7018716C021F237B (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___values0, 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.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6 (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, RuntimeObject * ___value1, const RuntimeMethod* 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.Boolean System.Runtime.Serialization.SafeSerializationManager::get_IsActive() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SafeSerializationManager_get_IsActive_m66AE1987E10E73E7CB019E3CE14D7FFD7856AD4B (SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * __this, const RuntimeMethod* method); // System.Void System.Runtime.Serialization.SafeSerializationManager::CompleteSerialization(System.Object,System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SafeSerializationManager_CompleteSerialization_mC577DAFEBD7AA3E14807DCA75864D835475231CB (SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * __this, RuntimeObject * ___serializedObject0, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info1, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context2, const RuntimeMethod* method); // System.Void System.Runtime.Serialization.SafeSerializationManager::CompleteDeserialization(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SafeSerializationManager_CompleteDeserialization_mC041209DDA3C3D765E7045DCA34682108858E3B1 (SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * __this, RuntimeObject * ___deserializedObject0, const RuntimeMethod* method); // System.Object System.Runtime.ExceptionServices.ExceptionDispatchInfo::get_BinaryStackTraceArray() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * ExceptionDispatchInfo_get_BinaryStackTraceArray_mB03FCEE86CCD7523AF2856B74B8FD66936491701_inline (ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * __this, const RuntimeMethod* method); // System.String Locale::GetText(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324 (String_t* ___msg0, const RuntimeMethod* method); // System.String System.String::Format(System.String,System.Object,System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m26BBF75F9609FAD0B39C2242FEBAAD7D68F14D99 (String_t* ___format0, RuntimeObject * ___arg01, RuntimeObject * ___arg12, RuntimeObject * ___arg23, const RuntimeMethod* method); // System.Void System.SystemException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A (SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void System.SystemException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemException__ctor_mA18D2EA5642C066F35CB8C965398F9A542C33B0A (SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method); // System.Void System.SystemException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemException__ctor_mB0550111A1A8D18B697B618F811A5B20C160D949 (SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method); // System.Void System.MemberAccessException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemberAccessException__ctor_m9190C2717422BB9A0C877B8C1493A75521AB8101 (MemberAccessException_tDA869AFFB4FC1EA0EEF3143D85999710AC4774F0 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void System.MemberAccessException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemberAccessException__ctor_m8D560A4375A75BBD6631BE42402BC4B41B8F7E5F (MemberAccessException_tDA869AFFB4FC1EA0EEF3143D85999710AC4774F0 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method); // System.Void System.GC::_SuppressFinalize(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GC__SuppressFinalize_mAEE97F4E88DFE238F79A9A05363D132B6DFEB6E8 (RuntimeObject * ___o0, const RuntimeMethod* method); // System.Void System.GC::_ReRegisterForFinalize(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GC__ReRegisterForFinalize_m6CE21FC41C136709441FCA0BD23BF17135467CA6 (RuntimeObject * ___o0, const RuntimeMethod* method); // System.Object System.GC::get_ephemeron_tombstone() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * GC_get_ephemeron_tombstone_m8311F5A5E44DB7E6DA454732E2A7C992A9E20CCC (const RuntimeMethod* method); // System.Char System.Globalization.Bootstring::EncodeDigit(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Bootstring_EncodeDigit_m4A96B8F55E28E62C89FD205738EB0381287B277C (Bootstring_t9E3CD00FBB61B43CDF0873C571322A4387693F41 * __this, int32_t ___d0, const RuntimeMethod* method); // System.Int32 System.Globalization.Bootstring::Adapt(System.Int32,System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Bootstring_Adapt_mF5FCC8358A0EF65CE96231274AA1695DB22DB712 (Bootstring_t9E3CD00FBB61B43CDF0873C571322A4387693F41 * __this, int32_t ___delta0, int32_t ___numPoints1, bool ___firstTime2, const RuntimeMethod* method); // System.Int32 System.Globalization.Bootstring::DecodeDigit(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Bootstring_DecodeDigit_mD9D0F2EAE2245ADD3622BCE52BAAF7AF745CBB47 (Bootstring_t9E3CD00FBB61B43CDF0873C571322A4387693F41 * __this, Il2CppChar ___c0, const RuntimeMethod* method); // System.String System.String::Format(System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m0ACDD8B34764E4040AED0B3EEB753567E4576BFA (String_t* ___format0, RuntimeObject * ___arg01, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::Insert(System.Int32,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Insert_m5A00CEB69C56B823E3766C84114D8B8ACCFC67A1 (StringBuilder_t * __this, int32_t ___index0, Il2CppChar ___value1, const RuntimeMethod* method); // System.Object System.Object::MemberwiseClone() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Object_MemberwiseClone_m1DAC4538CD68D4CF4DC5B04E4BBE86D470948B28 (RuntimeObject * __this, const RuntimeMethod* method); // System.Void System.Globalization.Calendar::SetReadOnlyState(System.Boolean) IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void Calendar_SetReadOnlyState_m257219F0844460D6BBC3A13B3FD021204583FC2B_inline (Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * __this, bool ___readOnly0, const RuntimeMethod* method); // System.Globalization.CalendarData System.Globalization.CalendarData::GetCalendarData(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * CalendarData_GetCalendarData_mDFCD051C21909262E525CC9E75728C83BD0E1904 (int32_t ___calendarId0, const RuntimeMethod* method); // System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * __this, String_t* ___paramName0, String_t* ___message1, const RuntimeMethod* method); // System.Int32 System.Globalization.CalendarData::nativeGetTwoDigitYearMax(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CalendarData_nativeGetTwoDigitYearMax_m5ECABEEAB85DF5A27EC509A90929CC193CACA2BB (int32_t ___calID0, const RuntimeMethod* method); // System.Void System.Globalization.CalendarData::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CalendarData__ctor_m4D3EEE01B5957453B137E5C01362BFBEF1737CE9 (CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * __this, const RuntimeMethod* method); // System.Boolean System.Globalization.CalendarData::nativeGetCalendarData(System.Globalization.CalendarData,System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CalendarData_nativeGetCalendarData_mEE692F005182F8E6043F10AF19937603C7CD4C26 (CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * ___data0, String_t* ___localeName1, int32_t ___calendarId2, const RuntimeMethod* method); // System.String[] System.Globalization.CultureData::ReescapeWin32Strings(System.String[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* CultureData_ReescapeWin32Strings_mD2273680DA4E34259B37E3C499E41CB72FBE9DCF (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___array0, const RuntimeMethod* method); // System.String System.Globalization.CultureData::ReescapeWin32String(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CultureData_ReescapeWin32String_mB6D37FC2C76F8AD4A1ECD365C36F129309FF7ED0 (String_t* ___str0, const RuntimeMethod* method); // System.Boolean System.String::IsNullOrEmpty(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229 (String_t* ___value0, const RuntimeMethod* method); // System.Void System.Globalization.CalendarData::InitializeEraNames(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CalendarData_InitializeEraNames_m46E606CC6E045A80DDFAD7CF084AE8821AA7F4D7 (CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * __this, String_t* ___localeName0, int32_t ___calendarId1, const RuntimeMethod* method); // System.Void System.Globalization.CalendarData::InitializeAbbreviatedEraNames(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CalendarData_InitializeAbbreviatedEraNames_m800E5461A6FA3B0BDA0921C5DCA722C15DBE428B (CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * __this, String_t* ___localeName0, int32_t ___calendarId1, const RuntimeMethod* method); // System.String[] System.Globalization.JapaneseCalendar::EnglishEraNames() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* JapaneseCalendar_EnglishEraNames_m1D64240112FDE6C93450D1D136DD0B33FAFC78E1 (const RuntimeMethod* method); // System.String[] System.Globalization.JapaneseCalendar::EraNames() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* JapaneseCalendar_EraNames_mF5A93DD93CB95257E3245D333B117FD089EC88D9 (const RuntimeMethod* method); // System.String[] System.Globalization.JapaneseCalendar::AbbrevEraNames() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* JapaneseCalendar_AbbrevEraNames_m8F768E0E6C938DBB7657E0EE388A6EA4CCC4AD66 (const RuntimeMethod* method); // System.String System.Globalization.CalendarData::CalendarIdToCultureName(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CalendarData_CalendarIdToCultureName_mA95C989E84F938AF02F385133E96A3BE054C129B (int32_t ___calendarId0, const RuntimeMethod* method); // System.Globalization.CultureInfo System.Globalization.CultureInfo::GetCultureInfo(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * CultureInfo_GetCultureInfo_mC35FFFC4C2C9F4A4D5BC19E483464978E25E7350 (String_t* ___name0, const RuntimeMethod* method); // System.Globalization.CalendarData System.Globalization.CultureData::GetCalendar(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * CultureData_GetCalendar_mB4F2D5CDF5ACA790475C2BDC168290047AEB6DF5 (CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * __this, int32_t ___calendarId0, const RuntimeMethod* method); // System.String System.String::ToLowerInvariant() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_ToLowerInvariant_m197BD65B6582DC546FF1BC398161EEFA708F799E (String_t* __this, const RuntimeMethod* method); // System.Boolean System.Globalization.CalendarData::fill_calendar_data(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CalendarData_fill_calendar_data_mF4AB4B24E8FB38D2257AED30A15B690F4B9C49E6 (CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * __this, String_t* ___localeName0, int32_t ___datetimeIndex1, const RuntimeMethod* method); // System.Void System.Globalization.CharUnicodeInfo/Debug::Assert(System.Boolean,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_Assert_m634F0CA58C10F7A86622FAD0D756879FA301A80D (bool ___condition0, String_t* ___message1, const RuntimeMethod* method); // System.Globalization.UnicodeCategory System.Globalization.CharUnicodeInfo::GetUnicodeCategory(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CharUnicodeInfo_GetUnicodeCategory_mC5602CC632FDD7E8690D8DEF9A5F76A49A6F4C4C (Il2CppChar ___ch0, const RuntimeMethod* method); // System.Globalization.UnicodeCategory System.Globalization.CharUnicodeInfo::InternalGetUnicodeCategory(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CharUnicodeInfo_InternalGetUnicodeCategory_m2F385E842FECF592E5F45027976E6126084657B9 (int32_t ___ch0, const RuntimeMethod* method); // System.Byte System.Globalization.CharUnicodeInfo::InternalGetCategoryValue(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t CharUnicodeInfo_InternalGetCategoryValue_m70C922D12420DD22399D84B5CA900F80FD0F30FE (int32_t ___ch0, int32_t ___offset1, const RuntimeMethod* method); // System.Int32 System.Globalization.CharUnicodeInfo::InternalConvertToUtf32(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CharUnicodeInfo_InternalConvertToUtf32_m78237099749C0BFC0E5345D2B18F39561E66CE57 (String_t* ___s0, int32_t ___index1, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.RuntimeHelpers::InitializeArray(System.Array,System.RuntimeFieldHandle) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A (RuntimeArray * ___array0, RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF ___fldHandle1, const RuntimeMethod* method); // System.String System.Globalization.CultureInfo::get_SortName() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* CultureInfo_get_SortName_m781E78F10C18827A614272C7AB621683BFA968A5_inline (CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * __this, const RuntimeMethod* method); // System.Globalization.CultureInfo System.Globalization.CultureInfo::GetCultureInfo(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * CultureInfo_GetCultureInfo_mA907D8B043126761BA2C2ABCD1A3AB503371530C (int32_t ___culture0, const RuntimeMethod* method); // System.Void System.Globalization.CompareInfo::OnDeserialized() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompareInfo_OnDeserialized_m413EBD4F2FEB829F421E2090010B8EA0EF46119B (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, const RuntimeMethod* method); // System.Int32 System.String::CompareOrdinal(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_CompareOrdinal_m172D84EDDE0823F53EAB60857C07EA7F85600068 (String_t* ___strA0, String_t* ___strB1, const RuntimeMethod* method); // System.Int32 System.Globalization.CompareInfo::internal_compare_switch(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_internal_compare_switch_m01ABB70A6962856A9FFD4428A236E3DA2DB9DCC4 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___str10, int32_t ___offset11, int32_t ___length12, String_t* ___str23, int32_t ___offset24, int32_t ___length25, int32_t ___options6, const RuntimeMethod* method); // System.Int32 System.String::Compare(System.String,System.Int32,System.String,System.Int32,System.Int32,System.StringComparison) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_Compare_m208E4853037D81DD5C91DCA060C339DADC3A6064 (String_t* ___strA0, int32_t ___indexA1, String_t* ___strB2, int32_t ___indexB3, int32_t ___length4, int32_t ___comparisonType5, const RuntimeMethod* method); // System.Int32 System.Globalization.CompareInfo::CompareOrdinal(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_CompareOrdinal_m24ACA925A5FCCC037322C115EE2B987AA6B6238E (String_t* ___string10, int32_t ___offset11, int32_t ___length12, String_t* ___string23, int32_t ___offset24, int32_t ___length25, const RuntimeMethod* method); // System.Int32 System.String::nativeCompareOrdinalEx(System.String,System.Int32,System.String,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_nativeCompareOrdinalEx_m64305A55855E6959DFCE962955C9874927D22840 (String_t* ___strA0, int32_t ___indexA1, String_t* ___strB2, int32_t ___indexB3, int32_t ___count4, const RuntimeMethod* method); // System.Boolean System.Globalization.CompareInfo::get_UseManagedCollation() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CompareInfo_get_UseManagedCollation_mE3EDFF2DB83257810C9BEA1A09987D669F45EB2F (const RuntimeMethod* method); // Mono.Globalization.Unicode.SimpleCollator System.Globalization.CompareInfo::GetCollator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * CompareInfo_GetCollator_m3566663FC53B48F661AD6F416AD024758493F933 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, const RuntimeMethod* method); // System.Boolean Mono.Globalization.Unicode.SimpleCollator::IsPrefix(System.String,System.String,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SimpleCollator_IsPrefix_m596901F0E55A9B66EF20B0F8057D6B3FE08311F3 (SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * __this, String_t* ___src0, String_t* ___target1, int32_t ___opt2, const RuntimeMethod* method); // System.Boolean System.String::EndsWith(System.String,System.StringComparison) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_EndsWith_m80B198568050D692B70AD8949AC6EDC3044ED811 (String_t* __this, String_t* ___value0, int32_t ___comparisonType1, const RuntimeMethod* method); // System.Boolean Mono.Globalization.Unicode.SimpleCollator::IsSuffix(System.String,System.String,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SimpleCollator_IsSuffix_m64ABA9957E9682D391102722BE959AC52602E7A2 (SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * __this, String_t* ___src0, String_t* ___target1, int32_t ___opt2, const RuntimeMethod* method); // System.Int32 System.String::IndexOf(System.String,System.Int32,System.Int32,System.StringComparison) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_mDACE3FE07E6B127A9E01E6F0DB10C288AB49CEEC (String_t* __this, String_t* ___value0, int32_t ___startIndex1, int32_t ___count2, int32_t ___comparisonType3, const RuntimeMethod* method); // System.Int32 System.Globalization.CompareInfo::internal_index_switch(System.String,System.Int32,System.Int32,System.String,System.Globalization.CompareOptions,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_internal_index_switch_m2F1E3B731F1409587BB371D7DAFAA831A3064D27 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___s10, int32_t ___sindex1, int32_t ___count2, String_t* ___s23, int32_t ___opt4, bool ___first5, const RuntimeMethod* method); // System.Int32 System.String::LastIndexOf(System.String,System.Int32,System.Int32,System.StringComparison) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_LastIndexOf_m074A70E0C63246B664CC26F4D0B5203424B2BCF7 (String_t* __this, String_t* ___value0, int32_t ___startIndex1, int32_t ___count2, int32_t ___comparisonType3, const RuntimeMethod* method); // System.Globalization.SortKey System.Globalization.CompareInfo::CreateSortKey(System.String,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9 * CompareInfo_CreateSortKey_mB9279DED2BF48C87A5BE47EAC7F65A13601B10B3 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___source0, int32_t ___options1, const RuntimeMethod* method); // System.Globalization.SortKey System.Globalization.CompareInfo::CreateSortKeyCore(System.String,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9 * CompareInfo_CreateSortKeyCore_m6C1597391D8D5ED265849A82F697777EF86D5FE8 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___source0, int32_t ___options1, const RuntimeMethod* method); // System.Int32 System.Globalization.CompareInfo::GetHashCodeOfString(System.String,System.Globalization.CompareOptions,System.Boolean,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_GetHashCodeOfString_m18B1AAFA96BF106798A70C8FD6ACCA286BA5A142 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___source0, int32_t ___options1, bool ___forceRandomizedHashing2, int64_t ___additionalEntropy3, const RuntimeMethod* method); // System.Boolean Mono.Globalization.Unicode.MSCompatUnicodeTable::get_IsReady() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool MSCompatUnicodeTable_get_IsReady_mFFB82666A060D9A75368AA858810C41008CDD294_inline (const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.String,Mono.Globalization.Unicode.SimpleCollator>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>) inline void Dictionary_2__ctor_mAABE195367CBB1AFADF65A68610C2C3E5446FA43 (Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 *, RuntimeObject*, const RuntimeMethod*))Dictionary_2__ctor_m76CDCB0C7BECE95DBA94C7C98467F297E4451EE7_gshared)(__this, ___comparer0, method); } // System.Void System.Threading.Monitor::Enter(System.Object,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5 (RuntimeObject * ___obj0, bool* ___lockTaken1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2<System.String,Mono.Globalization.Unicode.SimpleCollator>::TryGetValue(TKey,TValue&) inline bool Dictionary_2_TryGetValue_mA0C2ACFD76D61DA29EA3D190AFD906C75A3C9B51 (Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 * __this, String_t* ___key0, SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 ** ___value1, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 *, String_t*, SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 **, const RuntimeMethod*))Dictionary_2_TryGetValue_m3455807C552312C60038DF52EF328C3687442DE3_gshared)(__this, ___key0, ___value1, method); } // System.Void Mono.Globalization.Unicode.SimpleCollator::.ctor(System.Globalization.CultureInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SimpleCollator__ctor_m425CCCFC8354699C91043D289C2DD7A20F437298 (SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * __this, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.String,Mono.Globalization.Unicode.SimpleCollator>::set_Item(TKey,TValue) inline void Dictionary_2_set_Item_mA93729C8731ED32F7F1DAD2154CEFC6236707CE1 (Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 * __this, String_t* ___key0, SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * ___value1, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 *, String_t*, SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 *, const RuntimeMethod*))Dictionary_2_set_Item_m466D001F105E25DEB5C9BCB17837EE92A27FDE93_gshared)(__this, ___key0, ___value1, method); } // System.Void System.Threading.Monitor::Exit(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2 (RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Globalization.SortKey Mono.Globalization.Unicode.SimpleCollator::GetSortKey(System.String,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9 * SimpleCollator_GetSortKey_m016BF061CEA62BF2E99B122B913C43FB1643F1A0 (SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * __this, String_t* ___s0, int32_t ___options1, const RuntimeMethod* method); // System.Void System.Globalization.SortKey::.ctor(System.Int32,System.String,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortKey__ctor_m9DDF38B93F6C34DD3F7FF538B7C4E1BC9629CCF3 (SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9 * __this, int32_t ___lcid0, String_t* ___source1, int32_t ___opt2, const RuntimeMethod* method); // System.Void System.Globalization.CompareInfo::assign_sortkey(System.Object,System.String,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompareInfo_assign_sortkey_m343AC3670D7F354B4767412AECB8D698FE267DAC (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, RuntimeObject * ___key0, String_t* ___source1, int32_t ___options2, const RuntimeMethod* method); // System.Int32 System.String::IndexOfUnchecked(System.String,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOfUnchecked_m372BBB8A4722BFDE7CF4856F0EE0B4A197C5AFB0 (String_t* __this, String_t* ___value0, int32_t ___startIndex1, int32_t ___count2, const RuntimeMethod* method); // System.Int32 System.Globalization.CompareInfo::internal_index(System.String,System.Int32,System.Int32,System.String,System.Globalization.CompareOptions,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_internal_index_mC84E39918F364D80B7D6BFD8BD9B301A5246A5BA (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___source0, int32_t ___sindex1, int32_t ___count2, String_t* ___value3, int32_t ___options4, bool ___first5, const RuntimeMethod* method); // System.Int32 System.Globalization.CompareInfo::internal_index_managed(System.String,System.Int32,System.Int32,System.String,System.Globalization.CompareOptions,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_internal_index_managed_m778771910402DCA9C9FC647B64DDAADDC0BB7196 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___s10, int32_t ___sindex1, int32_t ___count2, String_t* ___s23, int32_t ___opt4, bool ___first5, const RuntimeMethod* method); // System.Int32 System.Globalization.CompareInfo::internal_compare(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_internal_compare_m89017707030EDFA08245A84B2F4D786AAC7CFEEE (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___str10, int32_t ___offset11, int32_t ___length12, String_t* ___str23, int32_t ___offset24, int32_t ___length25, int32_t ___options6, const RuntimeMethod* method); // System.Int32 System.Globalization.CompareInfo::internal_compare_managed(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_internal_compare_managed_mCE97B39EB5C1BE15E1E2D74BD023F8B0535E7607 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___str10, int32_t ___offset11, int32_t ___length12, String_t* ___str23, int32_t ___offset24, int32_t ___length25, int32_t ___options6, const RuntimeMethod* method); // System.Int32 Mono.Globalization.Unicode.SimpleCollator::Compare(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SimpleCollator_Compare_mEDE295E6D8B3ACB2378D50267659C9203ACBD795 (SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * __this, String_t* ___s10, int32_t ___idx11, int32_t ___len12, String_t* ___s23, int32_t ___idx24, int32_t ___len25, int32_t ___options6, const RuntimeMethod* method); // System.Int32 Mono.Globalization.Unicode.SimpleCollator::LastIndexOf(System.String,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SimpleCollator_LastIndexOf_m86547689DF681227BFE04C802D2BFB8560F9EE84 (SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * __this, String_t* ___s0, String_t* ___target1, int32_t ___start2, int32_t ___length3, int32_t ___opt4, const RuntimeMethod* method); // System.Int32 Mono.Globalization.Unicode.SimpleCollator::IndexOf(System.String,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SimpleCollator_IndexOf_mD91169E7D477C503B2DED708B19CE36FF63C6856 (SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * __this, String_t* ___s0, String_t* ___target1, int32_t ___start2, int32_t ___length3, int32_t ___opt4, const RuntimeMethod* method); #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.IntPtr System.Diagnostics.Tracing.EventSource_EventData::get_DataPointer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t EventData_get_DataPointer_mBC2F8ECE956F3A8B3D24BCC48512C6C153C978DA (EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * __this, const RuntimeMethod* method) { { int64_t L_0 = __this->get_m_Ptr_0(); intptr_t L_1 = IntPtr_op_Explicit_m534152049CE3084CEFA1CD8B1BA74F3C085A2ABF(L_0, /*hidden argument*/NULL); return (intptr_t)L_1; } } IL2CPP_EXTERN_C intptr_t EventData_get_DataPointer_mBC2F8ECE956F3A8B3D24BCC48512C6C153C978DA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * _thisAdjusted = reinterpret_cast<EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 *>(__this + 1); return EventData_get_DataPointer_mBC2F8ECE956F3A8B3D24BCC48512C6C153C978DA(_thisAdjusted, method); } // System.Void System.Diagnostics.Tracing.EventSource_EventData::set_DataPointer(System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventData_set_DataPointer_mCBFBFF7CED553A233032A89F0F0EC16FDFCD62B4 (EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * __this, intptr_t ___value0, const RuntimeMethod* method) { { intptr_t L_0 = ___value0; int64_t L_1 = IntPtr_op_Explicit_m254924E8680FCCF870F18064DC0B114445B09172((intptr_t)L_0, /*hidden argument*/NULL); __this->set_m_Ptr_0(L_1); return; } } IL2CPP_EXTERN_C void EventData_set_DataPointer_mCBFBFF7CED553A233032A89F0F0EC16FDFCD62B4_AdjustorThunk (RuntimeObject * __this, intptr_t ___value0, const RuntimeMethod* method) { EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * _thisAdjusted = reinterpret_cast<EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 *>(__this + 1); EventData_set_DataPointer_mCBFBFF7CED553A233032A89F0F0EC16FDFCD62B4(_thisAdjusted, ___value0, method); } // System.Void System.Diagnostics.Tracing.EventSource_EventData::set_Size(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventData_set_Size_m43C4529AD157BEC415C9338748703B06D1B63579 (EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * __this, int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; __this->set_m_Size_1(L_0); return; } } IL2CPP_EXTERN_C void EventData_set_Size_m43C4529AD157BEC415C9338748703B06D1B63579_AdjustorThunk (RuntimeObject * __this, int32_t ___value0, const RuntimeMethod* method) { EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * _thisAdjusted = reinterpret_cast<EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 *>(__this + 1); EventData_set_Size_m43C4529AD157BEC415C9338748703B06D1B63579_inline(_thisAdjusted, ___value0, method); } // System.Void System.Diagnostics.Tracing.EventSource_EventData::SetMetadata(System.Byte*,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventData_SetMetadata_m2638D08FE5AD0F8A4B207B83E014385991E7CF88 (EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * __this, uint8_t* ___pointer0, int32_t ___size1, int32_t ___reserved2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EventData_SetMetadata_m2638D08FE5AD0F8A4B207B83E014385991E7CF88_MetadataUsageId); s_Il2CppMethodInitialized = true; } { uint8_t* L_0 = ___pointer0; IL2CPP_RUNTIME_CLASS_INIT(UIntPtr_t_il2cpp_TypeInfo_var); uintptr_t L_1 = UIntPtr_op_Explicit_m484C2BD47D35FBD254A95FD56CCABD27CC79C95F((void*)(void*)L_0, /*hidden argument*/NULL); uint64_t L_2 = UIntPtr_op_Explicit_m0F6E9EC046D4A796A257B9C2192A21051DC90075(L_1, /*hidden argument*/NULL); __this->set_m_Ptr_0(L_2); int32_t L_3 = ___size1; __this->set_m_Size_1(L_3); int32_t L_4 = ___reserved2; __this->set_m_Reserved_2(L_4); return; } } IL2CPP_EXTERN_C void EventData_SetMetadata_m2638D08FE5AD0F8A4B207B83E014385991E7CF88_AdjustorThunk (RuntimeObject * __this, uint8_t* ___pointer0, int32_t ___size1, int32_t ___reserved2, const RuntimeMethod* method) { EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * _thisAdjusted = reinterpret_cast<EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 *>(__this + 1); EventData_SetMetadata_m2638D08FE5AD0F8A4B207B83E014385991E7CF88(_thisAdjusted, ___pointer0, ___size1, ___reserved2, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Conversion methods for marshalling of: System.Diagnostics.Tracing.EventSource/EventMetadata IL2CPP_EXTERN_C void EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_marshal_pinvoke(const EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B& unmarshaled, EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_marshaled_pinvoke& marshaled) { Exception_t* ___Parameters_8Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'Parameters' of type 'EventMetadata': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___Parameters_8Exception, NULL, NULL); } IL2CPP_EXTERN_C void EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_marshal_pinvoke_back(const EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_marshaled_pinvoke& marshaled, EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B& unmarshaled) { Exception_t* ___Parameters_8Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'Parameters' of type 'EventMetadata': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___Parameters_8Exception, NULL, NULL); } // Conversion method for clean up from marshalling of: System.Diagnostics.Tracing.EventSource/EventMetadata IL2CPP_EXTERN_C void EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_marshal_pinvoke_cleanup(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: System.Diagnostics.Tracing.EventSource/EventMetadata IL2CPP_EXTERN_C void EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_marshal_com(const EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B& unmarshaled, EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_marshaled_com& marshaled) { Exception_t* ___Parameters_8Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'Parameters' of type 'EventMetadata': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___Parameters_8Exception, NULL, NULL); } IL2CPP_EXTERN_C void EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_marshal_com_back(const EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_marshaled_com& marshaled, EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B& unmarshaled) { Exception_t* ___Parameters_8Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'Parameters' of type 'EventMetadata': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___Parameters_8Exception, NULL, NULL); } // Conversion method for clean up from marshalling of: System.Diagnostics.Tracing.EventSource/EventMetadata IL2CPP_EXTERN_C void EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_marshal_com_cleanup(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_marshaled_com& marshaled) { } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.EventSource_OverideEventProvider::.ctor(System.Diagnostics.Tracing.EventSource) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OverideEventProvider__ctor_mD477F0BCF1048627D9B27E8D71AD47B2D28C385B (OverideEventProvider_t354C68E8EFB53023A6C94D61F8F44358225D7C2B * __this, EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB * ___eventSource0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (OverideEventProvider__ctor_mD477F0BCF1048627D9B27E8D71AD47B2D28C385B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483_il2cpp_TypeInfo_var); EventProvider__ctor_m3B50CC1BF097459B596C77B56561A089D9397AD9(__this, /*hidden argument*/NULL); EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB * L_0 = ___eventSource0; __this->set_m_eventSource_13(L_0); return; } } // System.Void System.Diagnostics.Tracing.EventSource_OverideEventProvider::OnControllerCommand(System.Diagnostics.Tracing.ControllerCommand,System.Collections.Generic.IDictionary`2<System.String,System.String>,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OverideEventProvider_OnControllerCommand_m18D4213930B4B551E30CE21175AB45200A1FED97 (OverideEventProvider_t354C68E8EFB53023A6C94D61F8F44358225D7C2B * __this, int32_t ___command0, RuntimeObject* ___arguments1, int32_t ___perEventSourceSessionId2, int32_t ___etwSessionId3, const RuntimeMethod* method) { EventListener_t9B86F76EF72340DCFA9AD7715776E2C3988144A6 * V_0 = NULL; { V_0 = (EventListener_t9B86F76EF72340DCFA9AD7715776E2C3988144A6 *)NULL; EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB * L_0 = __this->get_m_eventSource_13(); EventListener_t9B86F76EF72340DCFA9AD7715776E2C3988144A6 * L_1 = V_0; int32_t L_2 = ___perEventSourceSessionId2; int32_t L_3 = ___etwSessionId3; int32_t L_4 = ___command0; bool L_5 = EventProvider_IsEnabled_m3C139A2AA66437973E6E41421D09300222F2CC4B_inline(__this, /*hidden argument*/NULL); int32_t L_6 = EventProvider_get_Level_m68A0811632D34B78A4C86E545AE957EAE1819B51_inline(__this, /*hidden argument*/NULL); int64_t L_7 = EventProvider_get_MatchAnyKeyword_mAB5C8F8500A479EA5294786DA79D8147A6681D2D_inline(__this, /*hidden argument*/NULL); RuntimeObject* L_8 = ___arguments1; NullCheck(L_0); EventSource_SendCommand_mC04C4889CCB21B58C052A48E030C4655B5CA74DE(L_0, L_1, L_2, L_3, L_4, L_5, L_6, L_7, L_8, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Conversion methods for marshalling of: System.Diagnostics.Tracing.EventSource/Sha1ForNonSecretPurposes IL2CPP_EXTERN_C void Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17_marshal_pinvoke(const Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17& unmarshaled, Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17_marshaled_pinvoke& marshaled) { marshaled.___length_0 = unmarshaled.get_length_0(); marshaled.___w_1 = il2cpp_codegen_com_marshal_safe_array(IL2CPP_VT_UI4, unmarshaled.get_w_1()); marshaled.___pos_2 = unmarshaled.get_pos_2(); } IL2CPP_EXTERN_C void Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17_marshal_pinvoke_back(const Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17_marshaled_pinvoke& marshaled, Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17& unmarshaled) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17_pinvoke_FromNativeMethodDefinition_MetadataUsageId); s_Il2CppMethodInitialized = true; } int64_t unmarshaled_length_temp_0 = 0; unmarshaled_length_temp_0 = marshaled.___length_0; unmarshaled.set_length_0(unmarshaled_length_temp_0); unmarshaled.set_w_1((UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB*)il2cpp_codegen_com_marshal_safe_array_result(IL2CPP_VT_UI4, UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_il2cpp_TypeInfo_var, marshaled.___w_1)); int32_t unmarshaled_pos_temp_2 = 0; unmarshaled_pos_temp_2 = marshaled.___pos_2; unmarshaled.set_pos_2(unmarshaled_pos_temp_2); } // Conversion method for clean up from marshalling of: System.Diagnostics.Tracing.EventSource/Sha1ForNonSecretPurposes IL2CPP_EXTERN_C void Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17_marshal_pinvoke_cleanup(Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17_marshaled_pinvoke& marshaled) { il2cpp_codegen_com_destroy_safe_array(marshaled.___w_1); marshaled.___w_1 = NULL; } // Conversion methods for marshalling of: System.Diagnostics.Tracing.EventSource/Sha1ForNonSecretPurposes IL2CPP_EXTERN_C void Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17_marshal_com(const Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17& unmarshaled, Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17_marshaled_com& marshaled) { marshaled.___length_0 = unmarshaled.get_length_0(); marshaled.___w_1 = il2cpp_codegen_com_marshal_safe_array(IL2CPP_VT_UI4, unmarshaled.get_w_1()); marshaled.___pos_2 = unmarshaled.get_pos_2(); } IL2CPP_EXTERN_C void Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17_marshal_com_back(const Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17_marshaled_com& marshaled, Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17& unmarshaled) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17_com_FromNativeMethodDefinition_MetadataUsageId); s_Il2CppMethodInitialized = true; } int64_t unmarshaled_length_temp_0 = 0; unmarshaled_length_temp_0 = marshaled.___length_0; unmarshaled.set_length_0(unmarshaled_length_temp_0); unmarshaled.set_w_1((UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB*)il2cpp_codegen_com_marshal_safe_array_result(IL2CPP_VT_UI4, UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_il2cpp_TypeInfo_var, marshaled.___w_1)); int32_t unmarshaled_pos_temp_2 = 0; unmarshaled_pos_temp_2 = marshaled.___pos_2; unmarshaled.set_pos_2(unmarshaled_pos_temp_2); } // Conversion method for clean up from marshalling of: System.Diagnostics.Tracing.EventSource/Sha1ForNonSecretPurposes IL2CPP_EXTERN_C void Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17_marshal_com_cleanup(Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17_marshaled_com& marshaled) { il2cpp_codegen_com_destroy_safe_array(marshaled.___w_1); marshaled.___w_1 = NULL; } // System.Void System.Diagnostics.Tracing.EventSource_Sha1ForNonSecretPurposes::Start() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Sha1ForNonSecretPurposes_Start_mA97AC00189A011EF6E62617B21C6E2CEEE480941 (Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Sha1ForNonSecretPurposes_Start_mA97AC00189A011EF6E62617B21C6E2CEEE480941_MetadataUsageId); s_Il2CppMethodInitialized = true; } { UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_0 = __this->get_w_1(); if (L_0) { goto IL_0015; } } { UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_1 = (UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB*)(UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB*)SZArrayNew(UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB_il2cpp_TypeInfo_var, (uint32_t)((int32_t)85)); __this->set_w_1(L_1); } IL_0015: { __this->set_length_0((((int64_t)((int64_t)0)))); __this->set_pos_2(0); UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_2 = __this->get_w_1(); NullCheck(L_2); (L_2)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)80)), (uint32_t)((int32_t)1732584193)); UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_3 = __this->get_w_1(); NullCheck(L_3); (L_3)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)81)), (uint32_t)((int32_t)-271733879)); UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_4 = __this->get_w_1(); NullCheck(L_4); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)82)), (uint32_t)((int32_t)-1732584194)); UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_5 = __this->get_w_1(); NullCheck(L_5); (L_5)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)83)), (uint32_t)((int32_t)271733878)); UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_6 = __this->get_w_1(); NullCheck(L_6); (L_6)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)84)), (uint32_t)((int32_t)-1009589776)); return; } } IL2CPP_EXTERN_C void Sha1ForNonSecretPurposes_Start_mA97AC00189A011EF6E62617B21C6E2CEEE480941_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 * _thisAdjusted = reinterpret_cast<Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 *>(__this + 1); Sha1ForNonSecretPurposes_Start_mA97AC00189A011EF6E62617B21C6E2CEEE480941(_thisAdjusted, method); } // System.Void System.Diagnostics.Tracing.EventSource_Sha1ForNonSecretPurposes::Append(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Sha1ForNonSecretPurposes_Append_m6B1A3F8758C2E73925709AC34E208A4E6051E1B1 (Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 * __this, uint8_t ___input0, const RuntimeMethod* method) { int32_t V_0 = 0; { UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_0 = __this->get_w_1(); int32_t L_1 = __this->get_pos_2(); UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_2 = __this->get_w_1(); int32_t L_3 = __this->get_pos_2(); NullCheck(L_2); int32_t L_4 = ((int32_t)((int32_t)L_3/(int32_t)4)); uint32_t L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4)); uint8_t L_6 = ___input0; NullCheck(L_0); (L_0)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)((int32_t)L_1/(int32_t)4))), (uint32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_5<<(int32_t)8))|(int32_t)L_6))); int32_t L_7 = __this->get_pos_2(); V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1)); int32_t L_8 = V_0; __this->set_pos_2(L_8); int32_t L_9 = V_0; if ((!(((uint32_t)((int32_t)64)) == ((uint32_t)L_9)))) { goto IL_003d; } } { Sha1ForNonSecretPurposes_Drain_m506D32DBB98E741CDF8674DDCB6808B35A8C48A8((Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 *)__this, /*hidden argument*/NULL); } IL_003d: { return; } } IL2CPP_EXTERN_C void Sha1ForNonSecretPurposes_Append_m6B1A3F8758C2E73925709AC34E208A4E6051E1B1_AdjustorThunk (RuntimeObject * __this, uint8_t ___input0, const RuntimeMethod* method) { Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 * _thisAdjusted = reinterpret_cast<Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 *>(__this + 1); Sha1ForNonSecretPurposes_Append_m6B1A3F8758C2E73925709AC34E208A4E6051E1B1(_thisAdjusted, ___input0, method); } // System.Void System.Diagnostics.Tracing.EventSource_Sha1ForNonSecretPurposes::Append(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Sha1ForNonSecretPurposes_Append_mE38C1265578CD69E60160CBC417DC10FB05D367C (Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___input0, const RuntimeMethod* method) { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL; int32_t V_1 = 0; uint8_t V_2 = 0x0; { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___input0; V_0 = L_0; V_1 = 0; goto IL_0015; } IL_0006: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = V_0; int32_t L_2 = V_1; NullCheck(L_1); int32_t L_3 = L_2; uint8_t L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3)); V_2 = L_4; uint8_t L_5 = V_2; Sha1ForNonSecretPurposes_Append_m6B1A3F8758C2E73925709AC34E208A4E6051E1B1((Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 *)__this, L_5, /*hidden argument*/NULL); int32_t L_6 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1)); } IL_0015: { int32_t L_7 = V_1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = V_0; NullCheck(L_8); if ((((int32_t)L_7) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length))))))) { goto IL_0006; } } { return; } } IL2CPP_EXTERN_C void Sha1ForNonSecretPurposes_Append_mE38C1265578CD69E60160CBC417DC10FB05D367C_AdjustorThunk (RuntimeObject * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___input0, const RuntimeMethod* method) { Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 * _thisAdjusted = reinterpret_cast<Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 *>(__this + 1); Sha1ForNonSecretPurposes_Append_mE38C1265578CD69E60160CBC417DC10FB05D367C(_thisAdjusted, ___input0, method); } // System.Void System.Diagnostics.Tracing.EventSource_Sha1ForNonSecretPurposes::Finish(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Sha1ForNonSecretPurposes_Finish_mE22BAFF41954BF42E561E6ECB08E549FC867D927 (Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___output0, const RuntimeMethod* method) { int64_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; uint32_t V_3 = 0; int32_t G_B6_0 = 0; { int64_t L_0 = __this->get_length_0(); int32_t L_1 = __this->get_pos_2(); V_0 = ((int64_t)il2cpp_codegen_add((int64_t)L_0, (int64_t)(((int64_t)((int64_t)((int32_t)il2cpp_codegen_multiply((int32_t)8, (int32_t)L_1))))))); Sha1ForNonSecretPurposes_Append_m6B1A3F8758C2E73925709AC34E208A4E6051E1B1((Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 *)__this, (uint8_t)((int32_t)128), /*hidden argument*/NULL); goto IL_0025; } IL_001e: { Sha1ForNonSecretPurposes_Append_m6B1A3F8758C2E73925709AC34E208A4E6051E1B1((Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 *)__this, (uint8_t)0, /*hidden argument*/NULL); } IL_0025: { int32_t L_2 = __this->get_pos_2(); if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)56))))) { goto IL_001e; } } { int64_t L_3 = V_0; Sha1ForNonSecretPurposes_Append_m6B1A3F8758C2E73925709AC34E208A4E6051E1B1((Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 *)__this, (uint8_t)(((int32_t)((uint8_t)((int64_t)((int64_t)L_3>>(int32_t)((int32_t)56)))))), /*hidden argument*/NULL); int64_t L_4 = V_0; Sha1ForNonSecretPurposes_Append_m6B1A3F8758C2E73925709AC34E208A4E6051E1B1((Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 *)__this, (uint8_t)(((int32_t)((uint8_t)((int64_t)((int64_t)L_4>>(int32_t)((int32_t)48)))))), /*hidden argument*/NULL); int64_t L_5 = V_0; Sha1ForNonSecretPurposes_Append_m6B1A3F8758C2E73925709AC34E208A4E6051E1B1((Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 *)__this, (uint8_t)(((int32_t)((uint8_t)((int64_t)((int64_t)L_5>>(int32_t)((int32_t)40)))))), /*hidden argument*/NULL); int64_t L_6 = V_0; Sha1ForNonSecretPurposes_Append_m6B1A3F8758C2E73925709AC34E208A4E6051E1B1((Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 *)__this, (uint8_t)(((int32_t)((uint8_t)((int64_t)((int64_t)L_6>>(int32_t)((int32_t)32)))))), /*hidden argument*/NULL); int64_t L_7 = V_0; Sha1ForNonSecretPurposes_Append_m6B1A3F8758C2E73925709AC34E208A4E6051E1B1((Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 *)__this, (uint8_t)(((int32_t)((uint8_t)((int64_t)((int64_t)L_7>>(int32_t)((int32_t)24)))))), /*hidden argument*/NULL); int64_t L_8 = V_0; Sha1ForNonSecretPurposes_Append_m6B1A3F8758C2E73925709AC34E208A4E6051E1B1((Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 *)__this, (uint8_t)(((int32_t)((uint8_t)((int64_t)((int64_t)L_8>>(int32_t)((int32_t)16)))))), /*hidden argument*/NULL); int64_t L_9 = V_0; Sha1ForNonSecretPurposes_Append_m6B1A3F8758C2E73925709AC34E208A4E6051E1B1((Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 *)__this, (uint8_t)(((int32_t)((uint8_t)((int64_t)((int64_t)L_9>>(int32_t)8))))), /*hidden argument*/NULL); int64_t L_10 = V_0; Sha1ForNonSecretPurposes_Append_m6B1A3F8758C2E73925709AC34E208A4E6051E1B1((Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 *)__this, (uint8_t)(((int32_t)((uint8_t)L_10))), /*hidden argument*/NULL); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_11 = ___output0; NullCheck(L_11); if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_11)->max_length))))) < ((int32_t)((int32_t)20)))) { goto IL_008e; } } { G_B6_0 = ((int32_t)20); goto IL_0091; } IL_008e: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_12 = ___output0; NullCheck(L_12); G_B6_0 = (((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length)))); } IL_0091: { V_1 = G_B6_0; V_2 = 0; goto IL_00c0; } IL_0096: { UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_13 = __this->get_w_1(); int32_t L_14 = V_2; NullCheck(L_13); int32_t L_15 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)80), (int32_t)((int32_t)((int32_t)L_14/(int32_t)4)))); uint32_t L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15)); V_3 = L_16; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_17 = ___output0; int32_t L_18 = V_2; uint32_t L_19 = V_3; NullCheck(L_17); (L_17)->SetAt(static_cast<il2cpp_array_size_t>(L_18), (uint8_t)(((int32_t)((uint8_t)((int32_t)((uint32_t)L_19>>((int32_t)24))))))); UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_20 = __this->get_w_1(); int32_t L_21 = V_2; uint32_t L_22 = V_3; NullCheck(L_20); (L_20)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)((int32_t)80), (int32_t)((int32_t)((int32_t)L_21/(int32_t)4))))), (uint32_t)((int32_t)((int32_t)L_22<<(int32_t)8))); int32_t L_23 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); } IL_00c0: { int32_t L_24 = V_2; int32_t L_25 = V_1; if ((!(((uint32_t)L_24) == ((uint32_t)L_25)))) { goto IL_0096; } } { return; } } IL2CPP_EXTERN_C void Sha1ForNonSecretPurposes_Finish_mE22BAFF41954BF42E561E6ECB08E549FC867D927_AdjustorThunk (RuntimeObject * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___output0, const RuntimeMethod* method) { Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 * _thisAdjusted = reinterpret_cast<Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 *>(__this + 1); Sha1ForNonSecretPurposes_Finish_mE22BAFF41954BF42E561E6ECB08E549FC867D927(_thisAdjusted, ___output0, method); } // System.Void System.Diagnostics.Tracing.EventSource_Sha1ForNonSecretPurposes::Drain() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Sha1ForNonSecretPurposes_Drain_m506D32DBB98E741CDF8674DDCB6808B35A8C48A8 (Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; uint32_t V_1 = 0; uint32_t V_2 = 0; uint32_t V_3 = 0; uint32_t V_4 = 0; uint32_t V_5 = 0; int32_t V_6 = 0; uint32_t V_7 = 0; int32_t V_8 = 0; uint32_t V_9 = 0; int32_t V_10 = 0; uint32_t V_11 = 0; int32_t V_12 = 0; uint32_t V_13 = 0; { V_0 = ((int32_t)16); goto IL_0043; } IL_0005: { UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_0 = __this->get_w_1(); int32_t L_1 = V_0; UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_2 = __this->get_w_1(); int32_t L_3 = V_0; NullCheck(L_2); int32_t L_4 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)3)); uint32_t L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4)); UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_6 = __this->get_w_1(); int32_t L_7 = V_0; NullCheck(L_6); int32_t L_8 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)8)); uint32_t L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8)); UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_10 = __this->get_w_1(); int32_t L_11 = V_0; NullCheck(L_10); int32_t L_12 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)((int32_t)14))); uint32_t L_13 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12)); UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_14 = __this->get_w_1(); int32_t L_15 = V_0; NullCheck(L_14); int32_t L_16 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)((int32_t)16))); uint32_t L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16)); uint32_t L_18 = Sha1ForNonSecretPurposes_Rol1_m77257ADE4C12D9216F61D909B7C217647BE37BED(((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_5^(int32_t)L_9))^(int32_t)L_13))^(int32_t)L_17)), /*hidden argument*/NULL); NullCheck(L_0); (L_0)->SetAt(static_cast<il2cpp_array_size_t>(L_1), (uint32_t)L_18); int32_t L_19 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)1)); } IL_0043: { int32_t L_20 = V_0; if ((!(((uint32_t)L_20) == ((uint32_t)((int32_t)80))))) { goto IL_0005; } } { UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_21 = __this->get_w_1(); NullCheck(L_21); int32_t L_22 = ((int32_t)80); uint32_t L_23 = (L_21)->GetAt(static_cast<il2cpp_array_size_t>(L_22)); V_1 = L_23; UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_24 = __this->get_w_1(); NullCheck(L_24); int32_t L_25 = ((int32_t)81); uint32_t L_26 = (L_24)->GetAt(static_cast<il2cpp_array_size_t>(L_25)); V_2 = L_26; UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_27 = __this->get_w_1(); NullCheck(L_27); int32_t L_28 = ((int32_t)82); uint32_t L_29 = (L_27)->GetAt(static_cast<il2cpp_array_size_t>(L_28)); V_3 = L_29; UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_30 = __this->get_w_1(); NullCheck(L_30); int32_t L_31 = ((int32_t)83); uint32_t L_32 = (L_30)->GetAt(static_cast<il2cpp_array_size_t>(L_31)); V_4 = L_32; UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_33 = __this->get_w_1(); NullCheck(L_33); int32_t L_34 = ((int32_t)84); uint32_t L_35 = (L_33)->GetAt(static_cast<il2cpp_array_size_t>(L_34)); V_5 = L_35; V_6 = 0; goto IL_00bf; } IL_0081: { uint32_t L_36 = V_2; uint32_t L_37 = V_3; uint32_t L_38 = V_2; uint32_t L_39 = V_4; V_7 = ((int32_t)((int32_t)((int32_t)((int32_t)L_36&(int32_t)L_37))|(int32_t)((int32_t)((int32_t)((~L_38))&(int32_t)L_39)))); uint32_t L_40 = V_1; uint32_t L_41 = Sha1ForNonSecretPurposes_Rol5_m059118E8DFAC985AC4A28DA77D57CA02EE854EFD(L_40, /*hidden argument*/NULL); uint32_t L_42 = V_7; uint32_t L_43 = V_5; UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_44 = __this->get_w_1(); int32_t L_45 = V_6; NullCheck(L_44); int32_t L_46 = L_45; uint32_t L_47 = (L_44)->GetAt(static_cast<il2cpp_array_size_t>(L_46)); uint32_t L_48 = V_4; V_5 = L_48; uint32_t L_49 = V_3; V_4 = L_49; uint32_t L_50 = V_2; uint32_t L_51 = Sha1ForNonSecretPurposes_Rol30_m866BB946519D295C48B706551F4C9048B337B52F(L_50, /*hidden argument*/NULL); V_3 = L_51; uint32_t L_52 = V_1; V_2 = L_52; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)L_42)), (int32_t)L_43)), (int32_t)((int32_t)1518500249))), (int32_t)L_47)); int32_t L_53 = V_6; V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_53, (int32_t)1)); } IL_00bf: { int32_t L_54 = V_6; if ((!(((uint32_t)L_54) == ((uint32_t)((int32_t)20))))) { goto IL_0081; } } { V_8 = ((int32_t)20); goto IL_0106; } IL_00cb: { uint32_t L_55 = V_2; uint32_t L_56 = V_3; uint32_t L_57 = V_4; V_9 = ((int32_t)((int32_t)((int32_t)((int32_t)L_55^(int32_t)L_56))^(int32_t)L_57)); uint32_t L_58 = V_1; uint32_t L_59 = Sha1ForNonSecretPurposes_Rol5_m059118E8DFAC985AC4A28DA77D57CA02EE854EFD(L_58, /*hidden argument*/NULL); uint32_t L_60 = V_9; uint32_t L_61 = V_5; UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_62 = __this->get_w_1(); int32_t L_63 = V_8; NullCheck(L_62); int32_t L_64 = L_63; uint32_t L_65 = (L_62)->GetAt(static_cast<il2cpp_array_size_t>(L_64)); uint32_t L_66 = V_4; V_5 = L_66; uint32_t L_67 = V_3; V_4 = L_67; uint32_t L_68 = V_2; uint32_t L_69 = Sha1ForNonSecretPurposes_Rol30_m866BB946519D295C48B706551F4C9048B337B52F(L_68, /*hidden argument*/NULL); V_3 = L_69; uint32_t L_70 = V_1; V_2 = L_70; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_59, (int32_t)L_60)), (int32_t)L_61)), (int32_t)((int32_t)1859775393))), (int32_t)L_65)); int32_t L_71 = V_8; V_8 = ((int32_t)il2cpp_codegen_add((int32_t)L_71, (int32_t)1)); } IL_0106: { int32_t L_72 = V_8; if ((!(((uint32_t)L_72) == ((uint32_t)((int32_t)40))))) { goto IL_00cb; } } { V_10 = ((int32_t)40); goto IL_0154; } IL_0112: { uint32_t L_73 = V_2; uint32_t L_74 = V_3; uint32_t L_75 = V_2; uint32_t L_76 = V_4; uint32_t L_77 = V_3; uint32_t L_78 = V_4; V_11 = ((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_73&(int32_t)L_74))|(int32_t)((int32_t)((int32_t)L_75&(int32_t)L_76))))|(int32_t)((int32_t)((int32_t)L_77&(int32_t)L_78)))); uint32_t L_79 = V_1; uint32_t L_80 = Sha1ForNonSecretPurposes_Rol5_m059118E8DFAC985AC4A28DA77D57CA02EE854EFD(L_79, /*hidden argument*/NULL); uint32_t L_81 = V_11; uint32_t L_82 = V_5; UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_83 = __this->get_w_1(); int32_t L_84 = V_10; NullCheck(L_83); int32_t L_85 = L_84; uint32_t L_86 = (L_83)->GetAt(static_cast<il2cpp_array_size_t>(L_85)); uint32_t L_87 = V_4; V_5 = L_87; uint32_t L_88 = V_3; V_4 = L_88; uint32_t L_89 = V_2; uint32_t L_90 = Sha1ForNonSecretPurposes_Rol30_m866BB946519D295C48B706551F4C9048B337B52F(L_89, /*hidden argument*/NULL); V_3 = L_90; uint32_t L_91 = V_1; V_2 = L_91; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_80, (int32_t)L_81)), (int32_t)L_82)), (int32_t)((int32_t)-1894007588))), (int32_t)L_86)); int32_t L_92 = V_10; V_10 = ((int32_t)il2cpp_codegen_add((int32_t)L_92, (int32_t)1)); } IL_0154: { int32_t L_93 = V_10; if ((!(((uint32_t)L_93) == ((uint32_t)((int32_t)60))))) { goto IL_0112; } } { V_12 = ((int32_t)60); goto IL_019b; } IL_0160: { uint32_t L_94 = V_2; uint32_t L_95 = V_3; uint32_t L_96 = V_4; V_13 = ((int32_t)((int32_t)((int32_t)((int32_t)L_94^(int32_t)L_95))^(int32_t)L_96)); uint32_t L_97 = V_1; uint32_t L_98 = Sha1ForNonSecretPurposes_Rol5_m059118E8DFAC985AC4A28DA77D57CA02EE854EFD(L_97, /*hidden argument*/NULL); uint32_t L_99 = V_13; uint32_t L_100 = V_5; UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_101 = __this->get_w_1(); int32_t L_102 = V_12; NullCheck(L_101); int32_t L_103 = L_102; uint32_t L_104 = (L_101)->GetAt(static_cast<il2cpp_array_size_t>(L_103)); uint32_t L_105 = V_4; V_5 = L_105; uint32_t L_106 = V_3; V_4 = L_106; uint32_t L_107 = V_2; uint32_t L_108 = Sha1ForNonSecretPurposes_Rol30_m866BB946519D295C48B706551F4C9048B337B52F(L_107, /*hidden argument*/NULL); V_3 = L_108; uint32_t L_109 = V_1; V_2 = L_109; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_98, (int32_t)L_99)), (int32_t)L_100)), (int32_t)((int32_t)-899497514))), (int32_t)L_104)); int32_t L_110 = V_12; V_12 = ((int32_t)il2cpp_codegen_add((int32_t)L_110, (int32_t)1)); } IL_019b: { int32_t L_111 = V_12; if ((!(((uint32_t)L_111) == ((uint32_t)((int32_t)80))))) { goto IL_0160; } } { UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_112 = __this->get_w_1(); NullCheck(L_112); uint32_t* L_113 = ((L_112)->GetAddressAt(static_cast<il2cpp_array_size_t>(((int32_t)80)))); int32_t L_114 = *((uint32_t*)L_113); uint32_t L_115 = V_1; *((int32_t*)L_113) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_114, (int32_t)L_115)); UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_116 = __this->get_w_1(); NullCheck(L_116); uint32_t* L_117 = ((L_116)->GetAddressAt(static_cast<il2cpp_array_size_t>(((int32_t)81)))); int32_t L_118 = *((uint32_t*)L_117); uint32_t L_119 = V_2; *((int32_t*)L_117) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_118, (int32_t)L_119)); UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_120 = __this->get_w_1(); NullCheck(L_120); uint32_t* L_121 = ((L_120)->GetAddressAt(static_cast<il2cpp_array_size_t>(((int32_t)82)))); int32_t L_122 = *((uint32_t*)L_121); uint32_t L_123 = V_3; *((int32_t*)L_121) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_122, (int32_t)L_123)); UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_124 = __this->get_w_1(); NullCheck(L_124); uint32_t* L_125 = ((L_124)->GetAddressAt(static_cast<il2cpp_array_size_t>(((int32_t)83)))); int32_t L_126 = *((uint32_t*)L_125); uint32_t L_127 = V_4; *((int32_t*)L_125) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_126, (int32_t)L_127)); UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_128 = __this->get_w_1(); NullCheck(L_128); uint32_t* L_129 = ((L_128)->GetAddressAt(static_cast<il2cpp_array_size_t>(((int32_t)84)))); int32_t L_130 = *((uint32_t*)L_129); uint32_t L_131 = V_5; *((int32_t*)L_129) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_130, (int32_t)L_131)); int64_t L_132 = __this->get_length_0(); __this->set_length_0(((int64_t)il2cpp_codegen_add((int64_t)L_132, (int64_t)(((int64_t)((int64_t)((int32_t)512))))))); __this->set_pos_2(0); return; } } IL2CPP_EXTERN_C void Sha1ForNonSecretPurposes_Drain_m506D32DBB98E741CDF8674DDCB6808B35A8C48A8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 * _thisAdjusted = reinterpret_cast<Sha1ForNonSecretPurposes_t5BC53EA67CBDDA90838254263C37A8AA7F401C17 *>(__this + 1); Sha1ForNonSecretPurposes_Drain_m506D32DBB98E741CDF8674DDCB6808B35A8C48A8(_thisAdjusted, method); } // System.UInt32 System.Diagnostics.Tracing.EventSource_Sha1ForNonSecretPurposes::Rol1(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Sha1ForNonSecretPurposes_Rol1_m77257ADE4C12D9216F61D909B7C217647BE37BED (uint32_t ___input0, const RuntimeMethod* method) { { uint32_t L_0 = ___input0; uint32_t L_1 = ___input0; return ((int32_t)((int32_t)((int32_t)((int32_t)L_0<<(int32_t)1))|(int32_t)((int32_t)((uint32_t)L_1>>((int32_t)31))))); } } // System.UInt32 System.Diagnostics.Tracing.EventSource_Sha1ForNonSecretPurposes::Rol5(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Sha1ForNonSecretPurposes_Rol5_m059118E8DFAC985AC4A28DA77D57CA02EE854EFD (uint32_t ___input0, const RuntimeMethod* method) { { uint32_t L_0 = ___input0; uint32_t L_1 = ___input0; return ((int32_t)((int32_t)((int32_t)((int32_t)L_0<<(int32_t)5))|(int32_t)((int32_t)((uint32_t)L_1>>((int32_t)27))))); } } // System.UInt32 System.Diagnostics.Tracing.EventSource_Sha1ForNonSecretPurposes::Rol30(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Sha1ForNonSecretPurposes_Rol30_m866BB946519D295C48B706551F4C9048B337B52F (uint32_t ___input0, const RuntimeMethod* method) { { uint32_t L_0 = ___input0; uint32_t L_1 = ___input0; return ((int32_t)((int32_t)((int32_t)((int32_t)L_0<<(int32_t)((int32_t)30)))|(int32_t)((int32_t)((uint32_t)L_1>>2)))); } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.String System.Diagnostics.Tracing.EventSourceAttribute::get_Name() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* EventSourceAttribute_get_Name_mC420250C7AFB5B14092C7B6EF5550F55ED4525A0 (EventSourceAttribute_t7E8C5240E08345D1B46ADE585550D34D9B16D286 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_U3CNameU3Ek__BackingField_0(); return L_0; } } // System.Void System.Diagnostics.Tracing.EventSourceAttribute::set_Name(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSourceAttribute_set_Name_m5241AA462B6F5A7FD782898E39EA8A12E7EC0599 (EventSourceAttribute_t7E8C5240E08345D1B46ADE585550D34D9B16D286 * __this, String_t* ___value0, const RuntimeMethod* method) { { String_t* L_0 = ___value0; __this->set_U3CNameU3Ek__BackingField_0(L_0); return; } } // System.String System.Diagnostics.Tracing.EventSourceAttribute::get_Guid() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* EventSourceAttribute_get_Guid_m9DF9B8B791ACCF9B9DA2AC9BBF575944080DF9E1 (EventSourceAttribute_t7E8C5240E08345D1B46ADE585550D34D9B16D286 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_U3CGuidU3Ek__BackingField_1(); return L_0; } } // System.Void System.Diagnostics.Tracing.EventSourceAttribute::set_Guid(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSourceAttribute_set_Guid_mFD84CCF1C8F47DC2AE5B04BDE106D78472CF287F (EventSourceAttribute_t7E8C5240E08345D1B46ADE585550D34D9B16D286 * __this, String_t* ___value0, const RuntimeMethod* method) { { String_t* L_0 = ___value0; __this->set_U3CGuidU3Ek__BackingField_1(L_0); return; } } // System.String System.Diagnostics.Tracing.EventSourceAttribute::get_LocalizationResources() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* EventSourceAttribute_get_LocalizationResources_m4733F2B33A398B188C0541C3394954FF3DAC6B1F (EventSourceAttribute_t7E8C5240E08345D1B46ADE585550D34D9B16D286 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_U3CLocalizationResourcesU3Ek__BackingField_2(); return L_0; } } // System.Void System.Diagnostics.Tracing.EventSourceAttribute::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSourceAttribute__ctor_m85695AC135298D8469D7C03B2A9AA1F6349DA42B (EventSourceAttribute_t7E8C5240E08345D1B46ADE585550D34D9B16D286 * __this, const RuntimeMethod* method) { { Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.EventSourceCreatedEventArgs::set_EventSource(System.Diagnostics.Tracing.EventSource) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSourceCreatedEventArgs_set_EventSource_m8C2A640E3442264BA1BF7F6EE963F7FDBC744794 (EventSourceCreatedEventArgs_t12E0F6BDFDF8F46E6C583AB8408C30358EC85863 * __this, EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB * ___value0, const RuntimeMethod* method) { { EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB * L_0 = ___value0; __this->set_U3CEventSourceU3Ek__BackingField_1(L_0); return; } } // System.Void System.Diagnostics.Tracing.EventSourceCreatedEventArgs::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSourceCreatedEventArgs__ctor_mF081BD4935B0CF6E11774446ABE33E49043CDA97 (EventSourceCreatedEventArgs_t12E0F6BDFDF8F46E6C583AB8408C30358EC85863 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EventSourceCreatedEventArgs__ctor_mF081BD4935B0CF6E11774446ABE33E49043CDA97_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_il2cpp_TypeInfo_var); EventArgs__ctor_m3551293259861C5A78CD47689D559F828ED29DF7(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.EventSourceException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSourceException__ctor_mC129C6CA6FA04EF61AE7EA8FFAEB31EE2FB22CB4 (EventSourceException_tCD5CC7F1F4F968609FB863449D9A5CD630236275 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EventSourceException__ctor_mC129C6CA6FA04EF61AE7EA8FFAEB31EE2FB22CB4_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral18BE539FA5A8752D368918A1DB9F0CD490E7BA56, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_m89BADFF36C3B170013878726E07729D51AA9FBE0(__this, L_0, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.EventSourceException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSourceException__ctor_m78D3B11FA7DD159AA95794E02A5F773920CA1E4B (EventSourceException_tCD5CC7F1F4F968609FB863449D9A5CD630236275 * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EventSourceException__ctor_m78D3B11FA7DD159AA95794E02A5F773920CA1E4B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___message0; Exception_t * L_1 = ___innerException1; IL2CPP_RUNTIME_CLASS_INIT(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_m62590BC1925B7B354EBFD852E162CD170FEB861D(__this, L_0, L_1, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.EventSourceException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSourceException__ctor_m23257A66B05A7D0E3D3D15D4015ECFF5148A2D2D (EventSourceException_tCD5CC7F1F4F968609FB863449D9A5CD630236275 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EventSourceException__ctor_m23257A66B05A7D0E3D3D15D4015ECFF5148A2D2D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1; IL2CPP_RUNTIME_CLASS_INIT(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_mBFF5996A1B65FCEEE0054A95A652BA3DD6366618(__this, L_0, L_1, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.EventSourceException::.ctor(System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSourceException__ctor_m0F9F45DC1718C6DEEC208258A16B71F140022D8C (EventSourceException_tCD5CC7F1F4F968609FB863449D9A5CD630236275 * __this, Exception_t * ___innerException0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EventSourceException__ctor_m0F9F45DC1718C6DEEC208258A16B71F140022D8C_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral18BE539FA5A8752D368918A1DB9F0CD490E7BA56, /*hidden argument*/NULL); Exception_t * L_1 = ___innerException0; IL2CPP_RUNTIME_CLASS_INIT(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_m62590BC1925B7B354EBFD852E162CD170FEB861D(__this, L_0, L_1, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.EventSourceOptions::set_Level(System.Diagnostics.Tracing.EventLevel) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSourceOptions_set_Level_m340628B5F059DE8CD72F0094BBB29D6EADFD39D4 (EventSourceOptions_tB3B2EDA0BF087FEB0198CF64451FAAF4C1B3002C * __this, int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EventSourceOptions_set_Level_m340628B5F059DE8CD72F0094BBB29D6EADFD39D4_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___value0; if ((int64_t)(L_0) > 255LL) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, EventSourceOptions_set_Level_m340628B5F059DE8CD72F0094BBB29D6EADFD39D4_RuntimeMethod_var); __this->set_level_3((((uint8_t)((uint8_t)L_0)))); uint8_t L_1 = __this->get_valuesSet_5(); __this->set_valuesSet_5((uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_1|(int32_t)4)))))); return; } } IL2CPP_EXTERN_C void EventSourceOptions_set_Level_m340628B5F059DE8CD72F0094BBB29D6EADFD39D4_AdjustorThunk (RuntimeObject * __this, int32_t ___value0, const RuntimeMethod* method) { EventSourceOptions_tB3B2EDA0BF087FEB0198CF64451FAAF4C1B3002C * _thisAdjusted = reinterpret_cast<EventSourceOptions_tB3B2EDA0BF087FEB0198CF64451FAAF4C1B3002C *>(__this + 1); EventSourceOptions_set_Level_m340628B5F059DE8CD72F0094BBB29D6EADFD39D4(_thisAdjusted, ___value0, method); } // System.Void System.Diagnostics.Tracing.EventSourceOptions::set_Opcode(System.Diagnostics.Tracing.EventOpcode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSourceOptions_set_Opcode_m4763851B2C99E961E725331B973501E21F17B854 (EventSourceOptions_tB3B2EDA0BF087FEB0198CF64451FAAF4C1B3002C * __this, int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EventSourceOptions_set_Opcode_m4763851B2C99E961E725331B973501E21F17B854_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___value0; if ((int64_t)(L_0) > 255LL) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, EventSourceOptions_set_Opcode_m4763851B2C99E961E725331B973501E21F17B854_RuntimeMethod_var); __this->set_opcode_4((((uint8_t)((uint8_t)L_0)))); uint8_t L_1 = __this->get_valuesSet_5(); __this->set_valuesSet_5((uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_1|(int32_t)8)))))); return; } } IL2CPP_EXTERN_C void EventSourceOptions_set_Opcode_m4763851B2C99E961E725331B973501E21F17B854_AdjustorThunk (RuntimeObject * __this, int32_t ___value0, const RuntimeMethod* method) { EventSourceOptions_tB3B2EDA0BF087FEB0198CF64451FAAF4C1B3002C * _thisAdjusted = reinterpret_cast<EventSourceOptions_tB3B2EDA0BF087FEB0198CF64451FAAF4C1B3002C *>(__this + 1); EventSourceOptions_set_Opcode_m4763851B2C99E961E725331B973501E21F17B854(_thisAdjusted, ___value0, method); } // System.Void System.Diagnostics.Tracing.EventSourceOptions::set_Keywords(System.Diagnostics.Tracing.EventKeywords) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSourceOptions_set_Keywords_m1D14E58898680877AB26459A21B160F955A34187 (EventSourceOptions_tB3B2EDA0BF087FEB0198CF64451FAAF4C1B3002C * __this, int64_t ___value0, const RuntimeMethod* method) { { int64_t L_0 = ___value0; __this->set_keywords_0(L_0); uint8_t L_1 = __this->get_valuesSet_5(); __this->set_valuesSet_5((uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_1|(int32_t)1)))))); return; } } IL2CPP_EXTERN_C void EventSourceOptions_set_Keywords_m1D14E58898680877AB26459A21B160F955A34187_AdjustorThunk (RuntimeObject * __this, int64_t ___value0, const RuntimeMethod* method) { EventSourceOptions_tB3B2EDA0BF087FEB0198CF64451FAAF4C1B3002C * _thisAdjusted = reinterpret_cast<EventSourceOptions_tB3B2EDA0BF087FEB0198CF64451FAAF4C1B3002C *>(__this + 1); EventSourceOptions_set_Keywords_m1D14E58898680877AB26459A21B160F955A34187(_thisAdjusted, ___value0, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.EventWrittenEventArgs::set_EventName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventWrittenEventArgs_set_EventName_m6DEE32D41AE486E21288D9B7A405B06FACD3B6CB (EventWrittenEventArgs_t3E46581254D84E46F89EE4154394C8B5B75A523E * __this, String_t* ___value0, const RuntimeMethod* method) { { String_t* L_0 = ___value0; __this->set_m_eventName_5(L_0); return; } } // System.Void System.Diagnostics.Tracing.EventWrittenEventArgs::set_EventId(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventWrittenEventArgs_set_EventId_mE7FB36E134327D9723860072902E1580EC653FCE (EventWrittenEventArgs_t3E46581254D84E46F89EE4154394C8B5B75A523E * __this, int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; __this->set_U3CEventIdU3Ek__BackingField_1(L_0); return; } } // System.Void System.Diagnostics.Tracing.EventWrittenEventArgs::set_RelatedActivityId(System.Guid) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventWrittenEventArgs_set_RelatedActivityId_mE9E13512C9D1F91EE7C5B3B2E2897CADFF72CDDF (EventWrittenEventArgs_t3E46581254D84E46F89EE4154394C8B5B75A523E * __this, Guid_t ___value0, const RuntimeMethod* method) { { Guid_t L_0 = ___value0; __this->set_U3CRelatedActivityIdU3Ek__BackingField_2(L_0); return; } } // System.Void System.Diagnostics.Tracing.EventWrittenEventArgs::set_Payload(System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventWrittenEventArgs_set_Payload_mA63B6D1CB51F126394F4BF193856BD9445C85647 (EventWrittenEventArgs_t3E46581254D84E46F89EE4154394C8B5B75A523E * __this, ReadOnlyCollection_1_t5D996E967221C71E4EC5CC11210C3076432D5A50 * ___value0, const RuntimeMethod* method) { { ReadOnlyCollection_1_t5D996E967221C71E4EC5CC11210C3076432D5A50 * L_0 = ___value0; __this->set_U3CPayloadU3Ek__BackingField_3(L_0); return; } } // System.Void System.Diagnostics.Tracing.EventWrittenEventArgs::set_PayloadNames(System.Collections.ObjectModel.ReadOnlyCollection`1<System.String>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventWrittenEventArgs_set_PayloadNames_mA045E5448CD84218AD1C21E408EFC3578F9B1A0F (EventWrittenEventArgs_t3E46581254D84E46F89EE4154394C8B5B75A523E * __this, ReadOnlyCollection_1_tB9E469CEA1A95F21BDF5C8594323E208E5454BE0 * ___value0, const RuntimeMethod* method) { { ReadOnlyCollection_1_tB9E469CEA1A95F21BDF5C8594323E208E5454BE0 * L_0 = ___value0; __this->set_m_payloadNames_7(L_0); return; } } // System.Void System.Diagnostics.Tracing.EventWrittenEventArgs::set_Message(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventWrittenEventArgs_set_Message_m694B0CF9EF8C94C0F24F8DF61FC36B766AF728CE (EventWrittenEventArgs_t3E46581254D84E46F89EE4154394C8B5B75A523E * __this, String_t* ___value0, const RuntimeMethod* method) { { String_t* L_0 = ___value0; __this->set_m_message_4(L_0); return; } } // System.Void System.Diagnostics.Tracing.EventWrittenEventArgs::.ctor(System.Diagnostics.Tracing.EventSource) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventWrittenEventArgs__ctor_m932A7D51A4062CD37694EDF4688EB5F91F8CE635 (EventWrittenEventArgs_t3E46581254D84E46F89EE4154394C8B5B75A523E * __this, EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB * ___eventSource0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EventWrittenEventArgs__ctor_m932A7D51A4062CD37694EDF4688EB5F91F8CE635_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_il2cpp_TypeInfo_var); EventArgs__ctor_m3551293259861C5A78CD47689D559F828ED29DF7(__this, /*hidden argument*/NULL); EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB * L_0 = ___eventSource0; __this->set_m_eventSource_6(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.FieldMetadata::.ctor(System.String,System.Diagnostics.Tracing.TraceLoggingDataType,System.Diagnostics.Tracing.EventFieldTags,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FieldMetadata__ctor_mE3EBA94F5DE1B2637E0A0515BEB5D866779D86D2 (FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * __this, String_t* ___name0, int32_t ___type1, int32_t ___tags2, bool ___variableCount3, const RuntimeMethod* method) { int32_t G_B2_0 = 0; int32_t G_B2_1 = 0; String_t* G_B2_2 = NULL; FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * G_B2_3 = NULL; int32_t G_B1_0 = 0; int32_t G_B1_1 = 0; String_t* G_B1_2 = NULL; FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * G_B1_3 = NULL; int32_t G_B3_0 = 0; int32_t G_B3_1 = 0; int32_t G_B3_2 = 0; String_t* G_B3_3 = NULL; FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * G_B3_4 = NULL; { String_t* L_0 = ___name0; int32_t L_1 = ___type1; int32_t L_2 = ___tags2; bool L_3 = ___variableCount3; G_B1_0 = L_2; G_B1_1 = L_1; G_B1_2 = L_0; G_B1_3 = __this; if (L_3) { G_B2_0 = L_2; G_B2_1 = L_1; G_B2_2 = L_0; G_B2_3 = __this; goto IL_000b; } } { G_B3_0 = 0; G_B3_1 = G_B1_0; G_B3_2 = G_B1_1; G_B3_3 = G_B1_2; G_B3_4 = G_B1_3; goto IL_000d; } IL_000b: { G_B3_0 = ((int32_t)64); G_B3_1 = G_B2_0; G_B3_2 = G_B2_1; G_B3_3 = G_B2_2; G_B3_4 = G_B2_3; } IL_000d: { NullCheck(G_B3_4); FieldMetadata__ctor_m51883151B3EB815CC989B0B05F401145A0172363(G_B3_4, G_B3_3, G_B3_2, G_B3_1, (uint8_t)G_B3_0, (uint16_t)0, (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.FieldMetadata::.ctor(System.String,System.Diagnostics.Tracing.TraceLoggingDataType,System.Diagnostics.Tracing.EventFieldTags,System.Byte,System.UInt16,System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FieldMetadata__ctor_m51883151B3EB815CC989B0B05F401145A0172363 (FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * __this, String_t* ___name0, int32_t ___dataType1, int32_t ___tags2, uint8_t ___countFlags3, uint16_t ___fixedCount4, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___custom5, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (FieldMetadata__ctor_m51883151B3EB815CC989B0B05F401145A0172363_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); String_t* L_0 = ___name0; if (L_0) { goto IL_0019; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_1, _stringLiteral6AE999552A0D2DCA14D62E2BC8B764D377B1DD6C, _stringLiteral68962AA7A0A67FFB670D647651DFF6FCA01916DC, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, FieldMetadata__ctor_m51883151B3EB815CC989B0B05F401145A0172363_RuntimeMethod_var); } IL_0019: { String_t* L_2 = ___name0; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); Statics_CheckName_m001904DCAB16ACBA3DB970F2497D6032BBE26EDE(L_2, /*hidden argument*/NULL); int32_t L_3 = ___dataType1; V_0 = ((int32_t)((int32_t)L_3&(int32_t)((int32_t)31))); String_t* L_4 = ___name0; __this->set_name_0(L_4); Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_5 = Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9(/*hidden argument*/NULL); String_t* L_6 = __this->get_name_0(); NullCheck(L_5); int32_t L_7 = VirtFuncInvoker1< int32_t, String_t* >::Invoke(9 /* System.Int32 System.Text.Encoding::GetByteCount(System.String) */, L_5, L_6); __this->set_nameSize_1(((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1))); int32_t L_8 = V_0; uint8_t L_9 = ___countFlags3; __this->set_inType_5((uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_8|(int32_t)L_9)))))); int32_t L_10 = ___dataType1; __this->set_outType_6((uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)((int32_t)((int32_t)L_10>>(int32_t)8))&(int32_t)((int32_t)127))))))); int32_t L_11 = ___tags2; __this->set_tags_2(L_11); uint16_t L_12 = ___fixedCount4; __this->set_fixedCount_4(L_12); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_13 = ___custom5; __this->set_custom_3(L_13); uint8_t L_14 = ___countFlags3; if (!L_14) { goto IL_00b6; } } { int32_t L_15 = V_0; if (L_15) { goto IL_0089; } } { String_t* L_16 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral649513493BFCCAC803D0510272A0959554FDCC1D, /*hidden argument*/NULL); NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_17 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_17, L_16, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, NULL, FieldMetadata__ctor_m51883151B3EB815CC989B0B05F401145A0172363_RuntimeMethod_var); } IL_0089: { int32_t L_18 = V_0; if ((!(((uint32_t)L_18) == ((uint32_t)((int32_t)14))))) { goto IL_009e; } } { String_t* L_19 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralF39D6C50975466C0E53549F08B2F563B22FE1072, /*hidden argument*/NULL); NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_20 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_20, L_19, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, NULL, FieldMetadata__ctor_m51883151B3EB815CC989B0B05F401145A0172363_RuntimeMethod_var); } IL_009e: { int32_t L_21 = V_0; if ((((int32_t)L_21) == ((int32_t)1))) { goto IL_00a6; } } { int32_t L_22 = V_0; if ((!(((uint32_t)L_22) == ((uint32_t)2)))) { goto IL_00b6; } } IL_00a6: { String_t* L_23 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral87451A61D9F03361D19AA4D07B3469C8F4CC5781, /*hidden argument*/NULL); NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_24 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_24, L_23, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_24, NULL, FieldMetadata__ctor_m51883151B3EB815CC989B0B05F401145A0172363_RuntimeMethod_var); } IL_00b6: { int32_t L_25 = __this->get_tags_2(); if (!((int32_t)((int32_t)L_25&(int32_t)((int32_t)268435455)))) { goto IL_00d7; } } { uint8_t L_26 = __this->get_outType_6(); __this->set_outType_6((uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_26|(int32_t)((int32_t)128))))))); } IL_00d7: { uint8_t L_27 = __this->get_outType_6(); if (!L_27) { goto IL_00f2; } } { uint8_t L_28 = __this->get_inType_5(); __this->set_inType_5((uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_28|(int32_t)((int32_t)128))))))); } IL_00f2: { return; } } // System.Void System.Diagnostics.Tracing.FieldMetadata::IncrementStructFieldCount() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FieldMetadata_IncrementStructFieldCount_m874313B0277DFA9F7B0309099139D9347E52F8AF (FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (FieldMetadata_IncrementStructFieldCount_m874313B0277DFA9F7B0309099139D9347E52F8AF_MetadataUsageId); s_Il2CppMethodInitialized = true; } { uint8_t L_0 = __this->get_inType_5(); __this->set_inType_5((uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_0|(int32_t)((int32_t)128))))))); uint8_t L_1 = __this->get_outType_6(); __this->set_outType_6((uint8_t)(((int32_t)((uint8_t)((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)1)))))); uint8_t L_2 = __this->get_outType_6(); if (((int32_t)((int32_t)L_2&(int32_t)((int32_t)127)))) { goto IL_003d; } } { String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFAE39DA7DB252B2371F75685351203E549E5C055, /*hidden argument*/NULL); NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_4 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, FieldMetadata_IncrementStructFieldCount_m874313B0277DFA9F7B0309099139D9347E52F8AF_RuntimeMethod_var); } IL_003d: { return; } } // System.Void System.Diagnostics.Tracing.FieldMetadata::Encode(System.Int32&,System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FieldMetadata_Encode_mF59FC93BED0895548D79501F4EE2CF0FEAE1B39A (FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * __this, int32_t* ___pos0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___metadata1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (FieldMetadata_Encode_mF59FC93BED0895548D79501F4EE2CF0FEAE1B39A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___metadata1; if (!L_0) { goto IL_0023; } } { Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_1 = Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9(/*hidden argument*/NULL); String_t* L_2 = __this->get_name_0(); String_t* L_3 = __this->get_name_0(); NullCheck(L_3); int32_t L_4 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_3, /*hidden argument*/NULL); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = ___metadata1; int32_t* L_6 = ___pos0; int32_t L_7 = *((int32_t*)L_6); NullCheck(L_1); VirtFuncInvoker5< int32_t, String_t*, int32_t, int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t >::Invoke(16 /* System.Int32 System.Text.Encoding::GetBytes(System.String,System.Int32,System.Int32,System.Byte[],System.Int32) */, L_1, L_2, 0, L_4, L_5, L_7); } IL_0023: { int32_t* L_8 = ___pos0; int32_t* L_9 = ___pos0; int32_t L_10 = *((int32_t*)L_9); int32_t L_11 = __this->get_nameSize_1(); *((int32_t*)L_8) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)L_11)); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_12 = ___metadata1; if (!L_12) { goto IL_003b; } } { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_13 = ___metadata1; int32_t* L_14 = ___pos0; int32_t L_15 = *((int32_t*)L_14); uint8_t L_16 = __this->get_inType_5(); NullCheck(L_13); (L_13)->SetAt(static_cast<il2cpp_array_size_t>(L_15), (uint8_t)L_16); } IL_003b: { int32_t* L_17 = ___pos0; int32_t* L_18 = ___pos0; int32_t L_19 = *((int32_t*)L_18); *((int32_t*)L_17) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)1)); uint8_t L_20 = __this->get_inType_5(); if (!((int32_t)((int32_t)L_20&(int32_t)((int32_t)128)))) { goto IL_007d; } } { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_21 = ___metadata1; if (!L_21) { goto IL_005c; } } { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_22 = ___metadata1; int32_t* L_23 = ___pos0; int32_t L_24 = *((int32_t*)L_23); uint8_t L_25 = __this->get_outType_6(); NullCheck(L_22); (L_22)->SetAt(static_cast<il2cpp_array_size_t>(L_24), (uint8_t)L_25); } IL_005c: { int32_t* L_26 = ___pos0; int32_t* L_27 = ___pos0; int32_t L_28 = *((int32_t*)L_27); *((int32_t*)L_26) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)1)); uint8_t L_29 = __this->get_outType_6(); if (!((int32_t)((int32_t)L_29&(int32_t)((int32_t)128)))) { goto IL_007d; } } { int32_t L_30 = __this->get_tags_2(); int32_t* L_31 = ___pos0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_32 = ___metadata1; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); Statics_EncodeTags_m23393859C6E4565A03D11540CE8A133DBCC5A453(L_30, (int32_t*)L_31, L_32, /*hidden argument*/NULL); } IL_007d: { uint8_t L_33 = __this->get_inType_5(); if (!((int32_t)((int32_t)L_33&(int32_t)((int32_t)32)))) { goto IL_00e3; } } { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_34 = ___metadata1; if (!L_34) { goto IL_00a5; } } { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_35 = ___metadata1; int32_t* L_36 = ___pos0; int32_t L_37 = *((int32_t*)L_36); uint16_t L_38 = __this->get_fixedCount_4(); NullCheck(L_35); (L_35)->SetAt(static_cast<il2cpp_array_size_t>(L_37), (uint8_t)(((int32_t)((uint8_t)L_38)))); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_39 = ___metadata1; int32_t* L_40 = ___pos0; int32_t L_41 = *((int32_t*)L_40); uint16_t L_42 = __this->get_fixedCount_4(); NullCheck(L_39); (L_39)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)1))), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_42>>(int32_t)8)))))); } IL_00a5: { int32_t* L_43 = ___pos0; int32_t* L_44 = ___pos0; int32_t L_45 = *((int32_t*)L_44); *((int32_t*)L_43) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_45, (int32_t)2)); uint8_t L_46 = __this->get_inType_5(); if ((!(((uint32_t)((int32_t)96)) == ((uint32_t)((int32_t)((int32_t)L_46&(int32_t)((int32_t)96))))))) { goto IL_00e3; } } { uint16_t L_47 = __this->get_fixedCount_4(); if (!L_47) { goto IL_00e3; } } { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_48 = ___metadata1; if (!L_48) { goto IL_00d8; } } { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_49 = __this->get_custom_3(); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_50 = ___metadata1; int32_t* L_51 = ___pos0; int32_t L_52 = *((int32_t*)L_51); uint16_t L_53 = __this->get_fixedCount_4(); Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_49, 0, (RuntimeArray *)(RuntimeArray *)L_50, L_52, L_53, /*hidden argument*/NULL); } IL_00d8: { int32_t* L_54 = ___pos0; int32_t* L_55 = ___pos0; int32_t L_56 = *((int32_t*)L_55); uint16_t L_57 = __this->get_fixedCount_4(); *((int32_t*)L_54) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_56, (int32_t)L_57)); } IL_00e3: { 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.Diagnostics.Tracing.GuidArrayTypeInfo::WriteMetadata(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,System.Diagnostics.Tracing.EventFieldFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GuidArrayTypeInfo_WriteMetadata_m5730BE8FCDD94266193D0C8D871FB2E75E3158E2 (GuidArrayTypeInfo_tCBD4D79DCC29FDFCFA6B5B733A7CB76E1A4BB068 * __this, TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * ___collector0, String_t* ___name1, int32_t ___format2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (GuidArrayTypeInfo_WriteMetadata_m5730BE8FCDD94266193D0C8D871FB2E75E3158E2_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_0 = ___collector0; String_t* L_1 = ___name1; int32_t L_2 = ___format2; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_3 = Statics_MakeDataType_m9C2ED4465BB2F30FED6D80D9A5237168265DF644(((int32_t)15), L_2, /*hidden argument*/NULL); NullCheck(L_0); TraceLoggingMetadataCollector_AddArray_m9074593EAE95D13523B4F7CF7FB94019CF49F406(L_0, L_1, L_3, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.GuidArrayTypeInfo::WriteData(System.Diagnostics.Tracing.TraceLoggingDataCollector,System.Guid[]&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GuidArrayTypeInfo_WriteData_mD66FFBEB0080744526AAFA804C17347C2AF337EC (GuidArrayTypeInfo_tCBD4D79DCC29FDFCFA6B5B733A7CB76E1A4BB068 * __this, TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * ___collector0, GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF** ___value1, const RuntimeMethod* method) { { TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * L_0 = ___collector0; GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF** L_1 = ___value1; GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_2 = *((GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF**)L_1); NullCheck(L_0); TraceLoggingDataCollector_AddArray_m817113A967AFB39C7DA9417AB3B90D48CAF2381A(L_0, L_2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.GuidArrayTypeInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GuidArrayTypeInfo__ctor_m60FBBC3A58A030148BD5092494CF7DD8BCDD4584 (GuidArrayTypeInfo_tCBD4D79DCC29FDFCFA6B5B733A7CB76E1A4BB068 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (GuidArrayTypeInfo__ctor_m60FBBC3A58A030148BD5092494CF7DD8BCDD4584_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingTypeInfo_1__ctor_m1498500B66412E0A994E03FB84653C2DA750738F(__this, /*hidden argument*/TraceLoggingTypeInfo_1__ctor_m1498500B66412E0A994E03FB84653C2DA750738F_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.GuidTypeInfo::WriteMetadata(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,System.Diagnostics.Tracing.EventFieldFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GuidTypeInfo_WriteMetadata_m9635C7C5CDDF712E6ECD663239C0F9C2F91400C5 (GuidTypeInfo_tADCD4F34D348774C3AE9A0714A071BF1EC7699ED * __this, TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * ___collector0, String_t* ___name1, int32_t ___format2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (GuidTypeInfo_WriteMetadata_m9635C7C5CDDF712E6ECD663239C0F9C2F91400C5_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_0 = ___collector0; String_t* L_1 = ___name1; int32_t L_2 = ___format2; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_3 = Statics_MakeDataType_m9C2ED4465BB2F30FED6D80D9A5237168265DF644(((int32_t)15), L_2, /*hidden argument*/NULL); NullCheck(L_0); TraceLoggingMetadataCollector_AddScalar_m136E01C1CEEFA221D5F78507069DFE8590CC15FB(L_0, L_1, L_3, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.GuidTypeInfo::WriteData(System.Diagnostics.Tracing.TraceLoggingDataCollector,System.Guid&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GuidTypeInfo_WriteData_m42291EB8518A2D5F5567A125EF6002484BECBCBF (GuidTypeInfo_tADCD4F34D348774C3AE9A0714A071BF1EC7699ED * __this, TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * ___collector0, Guid_t * ___value1, const RuntimeMethod* method) { { TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * L_0 = ___collector0; Guid_t * L_1 = ___value1; Guid_t L_2 = (*(Guid_t *)L_1); NullCheck(L_0); TraceLoggingDataCollector_AddScalar_m7CCD2526F15B901CC200BA8767D1293C8A50FF2D(L_0, L_2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.GuidTypeInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GuidTypeInfo__ctor_m16193A1FFDF45604394A54B7D5695069EC1306B6 (GuidTypeInfo_tADCD4F34D348774C3AE9A0714A071BF1EC7699ED * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (GuidTypeInfo__ctor_m16193A1FFDF45604394A54B7D5695069EC1306B6_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingTypeInfo_1__ctor_mF85058C60947C19E1EAEE1B9E63ED99C95BA5500(__this, /*hidden argument*/TraceLoggingTypeInfo_1__ctor_mF85058C60947C19E1EAEE1B9E63ED99C95BA5500_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.Int16ArrayTypeInfo::WriteMetadata(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,System.Diagnostics.Tracing.EventFieldFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Int16ArrayTypeInfo_WriteMetadata_m3F7C0E3CCDA710AF980E09D08AE290920CFACD14 (Int16ArrayTypeInfo_tAD49D189964C4528B1A70B5BF923016DF12A1CA3 * __this, TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * ___collector0, String_t* ___name1, int32_t ___format2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Int16ArrayTypeInfo_WriteMetadata_m3F7C0E3CCDA710AF980E09D08AE290920CFACD14_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_0 = ___collector0; String_t* L_1 = ___name1; int32_t L_2 = ___format2; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_3 = Statics_Format16_m307BF384650F500E54F521F17E146DBBB98F4D08(L_2, 5, /*hidden argument*/NULL); NullCheck(L_0); TraceLoggingMetadataCollector_AddArray_m9074593EAE95D13523B4F7CF7FB94019CF49F406(L_0, L_1, L_3, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.Int16ArrayTypeInfo::WriteData(System.Diagnostics.Tracing.TraceLoggingDataCollector,System.Int16[]&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Int16ArrayTypeInfo_WriteData_m51E1AE9039F8D9C5F27AAA03C38260CC041BCE59 (Int16ArrayTypeInfo_tAD49D189964C4528B1A70B5BF923016DF12A1CA3 * __this, TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * ___collector0, Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28** ___value1, const RuntimeMethod* method) { { TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * L_0 = ___collector0; Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28** L_1 = ___value1; Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28* L_2 = *((Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28**)L_1); NullCheck(L_0); TraceLoggingDataCollector_AddArray_m1BC48EAF4F2E9DA95AE76D9EA98B44C20E79F01D(L_0, L_2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.Int16ArrayTypeInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Int16ArrayTypeInfo__ctor_mF1C882F2ECD07C3ACE31BF421C84375783557470 (Int16ArrayTypeInfo_tAD49D189964C4528B1A70B5BF923016DF12A1CA3 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Int16ArrayTypeInfo__ctor_mF1C882F2ECD07C3ACE31BF421C84375783557470_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingTypeInfo_1__ctor_m86992A2F1FF2D81BA2B30133266B2D666748C447(__this, /*hidden argument*/TraceLoggingTypeInfo_1__ctor_m86992A2F1FF2D81BA2B30133266B2D666748C447_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.Int16TypeInfo::WriteMetadata(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,System.Diagnostics.Tracing.EventFieldFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Int16TypeInfo_WriteMetadata_m382478A62487410C10BB77B1EF23129C0B49BE48 (Int16TypeInfo_t5D76EA51B81898B9E5D73E48513749E2F1E9E48B * __this, TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * ___collector0, String_t* ___name1, int32_t ___format2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Int16TypeInfo_WriteMetadata_m382478A62487410C10BB77B1EF23129C0B49BE48_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_0 = ___collector0; String_t* L_1 = ___name1; int32_t L_2 = ___format2; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_3 = Statics_Format16_m307BF384650F500E54F521F17E146DBBB98F4D08(L_2, 5, /*hidden argument*/NULL); NullCheck(L_0); TraceLoggingMetadataCollector_AddScalar_m136E01C1CEEFA221D5F78507069DFE8590CC15FB(L_0, L_1, L_3, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.Int16TypeInfo::WriteData(System.Diagnostics.Tracing.TraceLoggingDataCollector,System.Int16&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Int16TypeInfo_WriteData_mD00EA7EBC4EDF2A770A6E1D0B1C60BDE54ADE4F0 (Int16TypeInfo_t5D76EA51B81898B9E5D73E48513749E2F1E9E48B * __this, TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * ___collector0, int16_t* ___value1, const RuntimeMethod* method) { { TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * L_0 = ___collector0; int16_t* L_1 = ___value1; int32_t L_2 = *((int16_t*)L_1); NullCheck(L_0); TraceLoggingDataCollector_AddScalar_mC374FF8A83BCBF186C122FBF7BE527B31E8519AD(L_0, (int16_t)L_2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.Int16TypeInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Int16TypeInfo__ctor_m32663BF727B1441F924AF3C2440672AD69A8A0D0 (Int16TypeInfo_t5D76EA51B81898B9E5D73E48513749E2F1E9E48B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Int16TypeInfo__ctor_m32663BF727B1441F924AF3C2440672AD69A8A0D0_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingTypeInfo_1__ctor_mEAB8B1F0747CEA73920E36D26D76B9272356D3C5(__this, /*hidden argument*/TraceLoggingTypeInfo_1__ctor_mEAB8B1F0747CEA73920E36D26D76B9272356D3C5_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.Int32ArrayTypeInfo::WriteMetadata(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,System.Diagnostics.Tracing.EventFieldFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Int32ArrayTypeInfo_WriteMetadata_m0C90F588EBDFC32FBFE0083A2401948BC090CE49 (Int32ArrayTypeInfo_t081A0C4015757B88F1735B49551791902EB2456C * __this, TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * ___collector0, String_t* ___name1, int32_t ___format2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Int32ArrayTypeInfo_WriteMetadata_m0C90F588EBDFC32FBFE0083A2401948BC090CE49_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_0 = ___collector0; String_t* L_1 = ___name1; int32_t L_2 = ___format2; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_3 = Statics_Format32_mA958A8DDBBC7C05DD61B456C4835D04C34B508A4(L_2, 7, /*hidden argument*/NULL); NullCheck(L_0); TraceLoggingMetadataCollector_AddArray_m9074593EAE95D13523B4F7CF7FB94019CF49F406(L_0, L_1, L_3, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.Int32ArrayTypeInfo::WriteData(System.Diagnostics.Tracing.TraceLoggingDataCollector,System.Int32[]&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Int32ArrayTypeInfo_WriteData_mE38CBC5DE3E05961040331FA25EFE3B3CF8FFAF2 (Int32ArrayTypeInfo_t081A0C4015757B88F1735B49551791902EB2456C * __this, TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * ___collector0, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** ___value1, const RuntimeMethod* method) { { TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * L_0 = ___collector0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** L_1 = ___value1; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = *((Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83**)L_1); NullCheck(L_0); TraceLoggingDataCollector_AddArray_mA5562435B07941B497C390BADA90476D3AEE0545(L_0, L_2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.Int32ArrayTypeInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Int32ArrayTypeInfo__ctor_m9D7274FDA03ACB4C441E103CB50E6BE7DBF548F5 (Int32ArrayTypeInfo_t081A0C4015757B88F1735B49551791902EB2456C * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Int32ArrayTypeInfo__ctor_m9D7274FDA03ACB4C441E103CB50E6BE7DBF548F5_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingTypeInfo_1__ctor_mC3DE0F2064400F830BCA0011DA3E156E880E0BB8(__this, /*hidden argument*/TraceLoggingTypeInfo_1__ctor_mC3DE0F2064400F830BCA0011DA3E156E880E0BB8_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.Int32TypeInfo::WriteMetadata(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,System.Diagnostics.Tracing.EventFieldFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Int32TypeInfo_WriteMetadata_m3E03992BEA715AB29814661E18829AA9856EB8AD (Int32TypeInfo_t0B1921CD9614D1EB1B183ED8A686AA372750252C * __this, TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * ___collector0, String_t* ___name1, int32_t ___format2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Int32TypeInfo_WriteMetadata_m3E03992BEA715AB29814661E18829AA9856EB8AD_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_0 = ___collector0; String_t* L_1 = ___name1; int32_t L_2 = ___format2; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_3 = Statics_Format32_mA958A8DDBBC7C05DD61B456C4835D04C34B508A4(L_2, 7, /*hidden argument*/NULL); NullCheck(L_0); TraceLoggingMetadataCollector_AddScalar_m136E01C1CEEFA221D5F78507069DFE8590CC15FB(L_0, L_1, L_3, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.Int32TypeInfo::WriteData(System.Diagnostics.Tracing.TraceLoggingDataCollector,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Int32TypeInfo_WriteData_m89BC83C7D3DB16EFBC022F76E1C6C87B2C547B8C (Int32TypeInfo_t0B1921CD9614D1EB1B183ED8A686AA372750252C * __this, TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * ___collector0, int32_t* ___value1, const RuntimeMethod* method) { { TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * L_0 = ___collector0; int32_t* L_1 = ___value1; int32_t L_2 = *((int32_t*)L_1); NullCheck(L_0); TraceLoggingDataCollector_AddScalar_mF71D9A7523C70D7771FE22212CB301288C22980A(L_0, L_2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.Int32TypeInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Int32TypeInfo__ctor_mFB5D5C183B9CEADA879A9B192E5F6E613EF79ACC (Int32TypeInfo_t0B1921CD9614D1EB1B183ED8A686AA372750252C * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Int32TypeInfo__ctor_mFB5D5C183B9CEADA879A9B192E5F6E613EF79ACC_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingTypeInfo_1__ctor_m82F6AD14E6BE97115DADDEC3DA3FDC4F584915C2(__this, /*hidden argument*/TraceLoggingTypeInfo_1__ctor_m82F6AD14E6BE97115DADDEC3DA3FDC4F584915C2_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.Int64ArrayTypeInfo::WriteMetadata(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,System.Diagnostics.Tracing.EventFieldFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Int64ArrayTypeInfo_WriteMetadata_mEC1F28EE4FD5CF899FA3F50C7A310C552F141867 (Int64ArrayTypeInfo_tA11180F9988B3F2768E2936B0EC740F4CA4098FC * __this, TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * ___collector0, String_t* ___name1, int32_t ___format2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Int64ArrayTypeInfo_WriteMetadata_mEC1F28EE4FD5CF899FA3F50C7A310C552F141867_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_0 = ___collector0; String_t* L_1 = ___name1; int32_t L_2 = ___format2; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_3 = Statics_Format64_m9EA165BBDCDC6E40774219DC6EB0214564FC5184(L_2, ((int32_t)9), /*hidden argument*/NULL); NullCheck(L_0); TraceLoggingMetadataCollector_AddArray_m9074593EAE95D13523B4F7CF7FB94019CF49F406(L_0, L_1, L_3, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.Int64ArrayTypeInfo::WriteData(System.Diagnostics.Tracing.TraceLoggingDataCollector,System.Int64[]&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Int64ArrayTypeInfo_WriteData_mB86F88E0AE559A28CD38519E59B73158809BF8ED (Int64ArrayTypeInfo_tA11180F9988B3F2768E2936B0EC740F4CA4098FC * __this, TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * ___collector0, Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F** ___value1, const RuntimeMethod* method) { { TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * L_0 = ___collector0; Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F** L_1 = ___value1; Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_2 = *((Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F**)L_1); NullCheck(L_0); TraceLoggingDataCollector_AddArray_m1AA74DD4E25E34905CD48CFCFBEBF4ABA32274D6(L_0, L_2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.Int64ArrayTypeInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Int64ArrayTypeInfo__ctor_m0420AE4B52AE5BD112A2B29B0D12C0A6FB4B931D (Int64ArrayTypeInfo_tA11180F9988B3F2768E2936B0EC740F4CA4098FC * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Int64ArrayTypeInfo__ctor_m0420AE4B52AE5BD112A2B29B0D12C0A6FB4B931D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingTypeInfo_1__ctor_m3BB638566503694A439D54D29DB751B923434141(__this, /*hidden argument*/TraceLoggingTypeInfo_1__ctor_m3BB638566503694A439D54D29DB751B923434141_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.Int64TypeInfo::WriteMetadata(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,System.Diagnostics.Tracing.EventFieldFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Int64TypeInfo_WriteMetadata_m918E8C4BF91CBF06D4AF381BD87716379EAC5AEA (Int64TypeInfo_t96DC7ABE2B905BED6B2BE60AB3BC0CC3AB5149E5 * __this, TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * ___collector0, String_t* ___name1, int32_t ___format2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Int64TypeInfo_WriteMetadata_m918E8C4BF91CBF06D4AF381BD87716379EAC5AEA_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_0 = ___collector0; String_t* L_1 = ___name1; int32_t L_2 = ___format2; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_3 = Statics_Format64_m9EA165BBDCDC6E40774219DC6EB0214564FC5184(L_2, ((int32_t)9), /*hidden argument*/NULL); NullCheck(L_0); TraceLoggingMetadataCollector_AddScalar_m136E01C1CEEFA221D5F78507069DFE8590CC15FB(L_0, L_1, L_3, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.Int64TypeInfo::WriteData(System.Diagnostics.Tracing.TraceLoggingDataCollector,System.Int64&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Int64TypeInfo_WriteData_m04CA2FE4276893FC6429502FD5783E09CC4E22B1 (Int64TypeInfo_t96DC7ABE2B905BED6B2BE60AB3BC0CC3AB5149E5 * __this, TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * ___collector0, int64_t* ___value1, const RuntimeMethod* method) { { TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * L_0 = ___collector0; int64_t* L_1 = ___value1; int64_t L_2 = *((int64_t*)L_1); NullCheck(L_0); TraceLoggingDataCollector_AddScalar_mE84AEED03D7F7EDD965444C4A8A575FF99B78E1A(L_0, L_2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.Int64TypeInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Int64TypeInfo__ctor_m34E0E0F18CF350928B7FFA21BB7FBF14AB2D2783 (Int64TypeInfo_t96DC7ABE2B905BED6B2BE60AB3BC0CC3AB5149E5 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Int64TypeInfo__ctor_m34E0E0F18CF350928B7FFA21BB7FBF14AB2D2783_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingTypeInfo_1__ctor_m97EEF71CA5F9665188EDC573938751D81FF33EA3(__this, /*hidden argument*/TraceLoggingTypeInfo_1__ctor_m97EEF71CA5F9665188EDC573938751D81FF33EA3_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.IntPtrArrayTypeInfo::WriteMetadata(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,System.Diagnostics.Tracing.EventFieldFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IntPtrArrayTypeInfo_WriteMetadata_mA9E5E10CB682BD5CE22DF1A773CD74F8CE80DBF8 (IntPtrArrayTypeInfo_t8E5F0E3EA1E88E19EF71CB6549DD46FFB78B5702 * __this, TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * ___collector0, String_t* ___name1, int32_t ___format2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IntPtrArrayTypeInfo_WriteMetadata_mA9E5E10CB682BD5CE22DF1A773CD74F8CE80DBF8_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_0 = ___collector0; String_t* L_1 = ___name1; int32_t L_2 = ___format2; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_3 = ((Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_StaticFields*)il2cpp_codegen_static_fields_for(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var))->get_IntPtrType_0(); int32_t L_4 = Statics_FormatPtr_m00FD8183206A97949E3FD18EF644E9E1F8B1A5D5(L_2, L_3, /*hidden argument*/NULL); NullCheck(L_0); TraceLoggingMetadataCollector_AddArray_m9074593EAE95D13523B4F7CF7FB94019CF49F406(L_0, L_1, L_4, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.IntPtrArrayTypeInfo::WriteData(System.Diagnostics.Tracing.TraceLoggingDataCollector,System.IntPtr[]&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IntPtrArrayTypeInfo_WriteData_m1487D1B5120D1A3EB58610228926DCCD8B4A3B71 (IntPtrArrayTypeInfo_t8E5F0E3EA1E88E19EF71CB6549DD46FFB78B5702 * __this, TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * ___collector0, IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD** ___value1, const RuntimeMethod* method) { { TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * L_0 = ___collector0; IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD** L_1 = ___value1; IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* L_2 = *((IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD**)L_1); NullCheck(L_0); TraceLoggingDataCollector_AddArray_mA0C2DF68F4375AA0226E8E489974B7348EFAA6A1(L_0, L_2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.IntPtrArrayTypeInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IntPtrArrayTypeInfo__ctor_mEAB7419D27051053AAF97425F4CE4283CB6316EF (IntPtrArrayTypeInfo_t8E5F0E3EA1E88E19EF71CB6549DD46FFB78B5702 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IntPtrArrayTypeInfo__ctor_mEAB7419D27051053AAF97425F4CE4283CB6316EF_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingTypeInfo_1__ctor_m614D762DF15273729D702EB31D33C18EAC01009A(__this, /*hidden argument*/TraceLoggingTypeInfo_1__ctor_m614D762DF15273729D702EB31D33C18EAC01009A_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.IntPtrTypeInfo::WriteMetadata(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,System.Diagnostics.Tracing.EventFieldFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IntPtrTypeInfo_WriteMetadata_m79A560E04FE047591C7BADF18CACCDFA96334A96 (IntPtrTypeInfo_tBAA196C9AFC0FF57DB01E76B903964521E29FF55 * __this, TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * ___collector0, String_t* ___name1, int32_t ___format2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IntPtrTypeInfo_WriteMetadata_m79A560E04FE047591C7BADF18CACCDFA96334A96_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_0 = ___collector0; String_t* L_1 = ___name1; int32_t L_2 = ___format2; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_3 = ((Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_StaticFields*)il2cpp_codegen_static_fields_for(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var))->get_IntPtrType_0(); int32_t L_4 = Statics_FormatPtr_m00FD8183206A97949E3FD18EF644E9E1F8B1A5D5(L_2, L_3, /*hidden argument*/NULL); NullCheck(L_0); TraceLoggingMetadataCollector_AddScalar_m136E01C1CEEFA221D5F78507069DFE8590CC15FB(L_0, L_1, L_4, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.IntPtrTypeInfo::WriteData(System.Diagnostics.Tracing.TraceLoggingDataCollector,System.IntPtr&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IntPtrTypeInfo_WriteData_mB25292A7BBDED83A542034E56B4860118ABD0F37 (IntPtrTypeInfo_tBAA196C9AFC0FF57DB01E76B903964521E29FF55 * __this, TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * ___collector0, intptr_t* ___value1, const RuntimeMethod* method) { { TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * L_0 = ___collector0; intptr_t* L_1 = ___value1; NullCheck(L_0); TraceLoggingDataCollector_AddScalar_m71E11032CE1F1164095A4E11CDC2660F0457B62B(L_0, (intptr_t)((*(L_1))), /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.IntPtrTypeInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IntPtrTypeInfo__ctor_m01105F4A30A454AC162C62C5D3FF447A225DA07B (IntPtrTypeInfo_tBAA196C9AFC0FF57DB01E76B903964521E29FF55 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IntPtrTypeInfo__ctor_m01105F4A30A454AC162C62C5D3FF447A225DA07B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingTypeInfo_1__ctor_mDCC9C954279A37C7FA0567804538C029E35D1AC8(__this, /*hidden argument*/TraceLoggingTypeInfo_1__ctor_mDCC9C954279A37C7FA0567804538C029E35D1AC8_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.ManifestBuilder::.ctor(System.String,System.Guid,System.String,System.Resources.ResourceManager,System.Diagnostics.Tracing.EventManifestOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ManifestBuilder__ctor_mE5FB339ABBF66CDB14F65E053D7D8764D2659C39 (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, String_t* ___providerName0, Guid_t ___providerGuid1, String_t* ___dllName2, ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF * ___resources3, int32_t ___flags4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ManifestBuilder__ctor_mE5FB339ABBF66CDB14F65E053D7D8764D2659C39_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); int32_t L_0 = ___flags4; __this->set_flags_9(L_0); ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF * L_1 = ___resources3; __this->set_resources_8(L_1); StringBuilder_t * L_2 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_2, /*hidden argument*/NULL); __this->set_sb_5(L_2); StringBuilder_t * L_3 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_3, /*hidden argument*/NULL); __this->set_events_6(L_3); StringBuilder_t * L_4 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_4, /*hidden argument*/NULL); __this->set_templates_7(L_4); Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_5 = (Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C *)il2cpp_codegen_object_new(Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C_il2cpp_TypeInfo_var); Dictionary_2__ctor_m6C6B59C12BD62E890CCF5AF0366E3DA0F29ADE6C(L_5, /*hidden argument*/Dictionary_2__ctor_m6C6B59C12BD62E890CCF5AF0366E3DA0F29ADE6C_RuntimeMethod_var); __this->set_opcodeTab_0(L_5); Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_6 = (Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC *)il2cpp_codegen_object_new(Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC_il2cpp_TypeInfo_var); Dictionary_2__ctor_m5B1C279E77422BB0B2C7B0374ECF89E3224AF62B(L_6, /*hidden argument*/Dictionary_2__ctor_m5B1C279E77422BB0B2C7B0374ECF89E3224AF62B_RuntimeMethod_var); __this->set_stringTab_4(L_6); List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_7 = (List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 *)il2cpp_codegen_object_new(List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3_il2cpp_TypeInfo_var); List_1__ctor_mDA22758D73530683C950C5CCF39BDB4E7E1F3F06(L_7, /*hidden argument*/List_1__ctor_mDA22758D73530683C950C5CCF39BDB4E7E1F3F06_RuntimeMethod_var); __this->set_errors_10(L_7); Dictionary_2_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28 * L_8 = (Dictionary_2_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28 *)il2cpp_codegen_object_new(Dictionary_2_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28_il2cpp_TypeInfo_var); Dictionary_2__ctor_m7067EEB3CF8A52DE17DCCA02E2ABF40CC224BF28(L_8, /*hidden argument*/Dictionary_2__ctor_m7067EEB3CF8A52DE17DCCA02E2ABF40CC224BF28_RuntimeMethod_var); __this->set_perEventByteArrayArgIndices_11(L_8); StringBuilder_t * L_9 = __this->get_sb_5(); NullCheck(L_9); StringBuilder_AppendLine_mA2F79A5F2CAA91B9F7917C0EB2B381357A395609(L_9, _stringLiteral9EDD575E287A64ED65D0EA6DDFEC128ADD02BAC0, /*hidden argument*/NULL); StringBuilder_t * L_10 = __this->get_sb_5(); NullCheck(L_10); StringBuilder_AppendLine_mA2F79A5F2CAA91B9F7917C0EB2B381357A395609(L_10, _stringLiteralFEB6CEE0B6900775589FE0E64A68CFBDE2B0A3EE, /*hidden argument*/NULL); StringBuilder_t * L_11 = __this->get_sb_5(); NullCheck(L_11); StringBuilder_AppendLine_mA2F79A5F2CAA91B9F7917C0EB2B381357A395609(L_11, _stringLiteralB34B0A02B98367D52DCDC8CC3635FF5A27611AF6, /*hidden argument*/NULL); StringBuilder_t * L_12 = __this->get_sb_5(); NullCheck(L_12); StringBuilder_t * L_13 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_12, _stringLiteralBF0A2FEAAD70F387CF5BD8F8ECE69E85A8B9FC40, /*hidden argument*/NULL); String_t* L_14 = ___providerName0; NullCheck(L_13); StringBuilder_t * L_15 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_13, L_14, /*hidden argument*/NULL); NullCheck(L_15); StringBuilder_t * L_16 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_15, _stringLiteral8137F03571D8568066E24A475F203D3C31D3C08C, /*hidden argument*/NULL); String_t* L_17 = Guid_ToString_m3024AB4FA6189BC28BE77BBD6A9F55841FE190A5((Guid_t *)(&___providerGuid1), /*hidden argument*/NULL); NullCheck(L_16); StringBuilder_t * L_18 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_16, L_17, /*hidden argument*/NULL); NullCheck(L_18); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_18, _stringLiteralC2B7DF6201FDD3362399091F0A29550DF3505B6A, /*hidden argument*/NULL); String_t* L_19 = ___dllName2; if (!L_19) { goto IL_00fd; } } { StringBuilder_t * L_20 = __this->get_sb_5(); NullCheck(L_20); StringBuilder_t * L_21 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_20, _stringLiteral481D5EBFAA65CD8CBAE34C4A33103730147071B9, /*hidden argument*/NULL); String_t* L_22 = ___dllName2; NullCheck(L_21); StringBuilder_t * L_23 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_21, L_22, /*hidden argument*/NULL); NullCheck(L_23); StringBuilder_t * L_24 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_23, _stringLiteral0E49F311A51BD41B19454E95BFFD18766EB48BFA, /*hidden argument*/NULL); String_t* L_25 = ___dllName2; NullCheck(L_24); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_24, L_25, /*hidden argument*/NULL); } IL_00fd: { String_t* L_26 = ___providerName0; NullCheck(L_26); String_t* L_27 = String_Replace_m970DFB0A280952FA7D3BA20AB7A8FB9F80CF6470(L_26, _stringLiteral3BC15C8AAE3E4124DD409035F32EA2FD6835EFC9, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, /*hidden argument*/NULL); NullCheck(L_27); String_t* L_28 = String_Replace_m970DFB0A280952FA7D3BA20AB7A8FB9F80CF6470(L_27, _stringLiteral3A52CE780950D4D969792A2559CD519D7EE8C727, _stringLiteral53A0ACFAD59379B3E050338BF9F23CFC172EE787, /*hidden argument*/NULL); V_0 = L_28; StringBuilder_t * L_29 = __this->get_sb_5(); NullCheck(L_29); StringBuilder_t * L_30 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_29, _stringLiteralD6CBE7E38E09D40AC8221B0DDE0FB2E220247F7B, /*hidden argument*/NULL); String_t* L_31 = V_0; NullCheck(L_30); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_30, L_31, /*hidden argument*/NULL); StringBuilder_t * L_32 = __this->get_sb_5(); NullCheck(L_32); StringBuilder_t * L_33 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_32, _stringLiteral28F19568A74E0032FBC866433CFF499CE8C2BCC1, /*hidden argument*/NULL); NullCheck(L_33); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_33, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.ManifestBuilder::AddOpcode(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ManifestBuilder_AddOpcode_m39D46900FA589DD6295EC85E438CD844B1771227 (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, String_t* ___name0, int32_t ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ManifestBuilder_AddOpcode_m39D46900FA589DD6295EC85E438CD844B1771227_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { int32_t L_0 = __this->get_flags_9(); if (!((int32_t)((int32_t)L_0&(int32_t)1))) { goto IL_007d; } } { int32_t L_1 = ___value1; if ((((int32_t)L_1) <= ((int32_t)((int32_t)10)))) { goto IL_0017; } } { int32_t L_2 = ___value1; if ((((int32_t)L_2) < ((int32_t)((int32_t)239)))) { goto IL_003b; } } IL_0017: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = L_3; String_t* L_5 = ___name0; NullCheck(L_4); ArrayElementTypeCheck (L_4, L_5); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_5); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = L_4; int32_t L_7 = ___value1; int32_t L_8 = L_7; RuntimeObject * L_9 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_8); NullCheck(L_6); ArrayElementTypeCheck (L_6, L_9); (L_6)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_9); String_t* L_10 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteral1045D0486D142C11569D4F7CAE2E19F2F2135D15, L_6, /*hidden argument*/NULL); ManifestBuilder_ManifestError_mA178FBE087E34A3CC07873D32896191BF7C74A20(__this, L_10, (bool)0, /*hidden argument*/NULL); } IL_003b: { Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_11 = __this->get_opcodeTab_0(); int32_t L_12 = ___value1; NullCheck(L_11); bool L_13 = Dictionary_2_TryGetValue_m581BE284F430A27B34743D8438ADB091C70000FD(L_11, L_12, (String_t**)(&V_0), /*hidden argument*/Dictionary_2_TryGetValue_m581BE284F430A27B34743D8438ADB091C70000FD_RuntimeMethod_var); if (!L_13) { goto IL_007d; } } { String_t* L_14 = ___name0; String_t* L_15 = V_0; NullCheck(L_14); bool L_16 = String_Equals_mB42D01789A129C548840C18E9065ACF9412F1F84(L_14, L_15, 4, /*hidden argument*/NULL); if (L_16) { goto IL_007d; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_17 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)3); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_18 = L_17; String_t* L_19 = ___name0; NullCheck(L_18); ArrayElementTypeCheck (L_18, L_19); (L_18)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_19); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_20 = L_18; String_t* L_21 = V_0; NullCheck(L_20); ArrayElementTypeCheck (L_20, L_21); (L_20)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_21); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_22 = L_20; int32_t L_23 = ___value1; int32_t L_24 = L_23; RuntimeObject * L_25 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_24); NullCheck(L_22); ArrayElementTypeCheck (L_22, L_25); (L_22)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_25); String_t* L_26 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralC8AF2BF24633B03752832E2B88FEEAA0E0308892, L_22, /*hidden argument*/NULL); ManifestBuilder_ManifestError_mA178FBE087E34A3CC07873D32896191BF7C74A20(__this, L_26, (bool)0, /*hidden argument*/NULL); } IL_007d: { Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_27 = __this->get_opcodeTab_0(); int32_t L_28 = ___value1; String_t* L_29 = ___name0; NullCheck(L_27); Dictionary_2_set_Item_m031E42C2E9C7C3EA36FF7FD2E6155B07C5BD268C(L_27, L_28, L_29, /*hidden argument*/Dictionary_2_set_Item_m031E42C2E9C7C3EA36FF7FD2E6155B07C5BD268C_RuntimeMethod_var); return; } } // System.Void System.Diagnostics.Tracing.ManifestBuilder::AddTask(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ManifestBuilder_AddTask_m27FA79B8634C16C8D2EA5068AFB937EC3DEA4282 (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, String_t* ___name0, int32_t ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ManifestBuilder_AddTask_m27FA79B8634C16C8D2EA5068AFB937EC3DEA4282_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { int32_t L_0 = __this->get_flags_9(); if (!((int32_t)((int32_t)L_0&(int32_t)1))) { goto IL_0084; } } { int32_t L_1 = ___value1; if ((((int32_t)L_1) <= ((int32_t)0))) { goto IL_0016; } } { int32_t L_2 = ___value1; if ((((int32_t)L_2) < ((int32_t)((int32_t)65535)))) { goto IL_003a; } } IL_0016: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = L_3; String_t* L_5 = ___name0; NullCheck(L_4); ArrayElementTypeCheck (L_4, L_5); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_5); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = L_4; int32_t L_7 = ___value1; int32_t L_8 = L_7; RuntimeObject * L_9 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_8); NullCheck(L_6); ArrayElementTypeCheck (L_6, L_9); (L_6)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_9); String_t* L_10 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralF153A28687D6800CAAD6007F5537CB4C0AC0B90B, L_6, /*hidden argument*/NULL); ManifestBuilder_ManifestError_mA178FBE087E34A3CC07873D32896191BF7C74A20(__this, L_10, (bool)0, /*hidden argument*/NULL); } IL_003a: { Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_11 = __this->get_taskTab_1(); if (!L_11) { goto IL_0084; } } { Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_12 = __this->get_taskTab_1(); int32_t L_13 = ___value1; NullCheck(L_12); bool L_14 = Dictionary_2_TryGetValue_m581BE284F430A27B34743D8438ADB091C70000FD(L_12, L_13, (String_t**)(&V_0), /*hidden argument*/Dictionary_2_TryGetValue_m581BE284F430A27B34743D8438ADB091C70000FD_RuntimeMethod_var); if (!L_14) { goto IL_0084; } } { String_t* L_15 = ___name0; String_t* L_16 = V_0; NullCheck(L_15); bool L_17 = String_Equals_mB42D01789A129C548840C18E9065ACF9412F1F84(L_15, L_16, 4, /*hidden argument*/NULL); if (L_17) { goto IL_0084; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_18 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)3); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_19 = L_18; String_t* L_20 = ___name0; NullCheck(L_19); ArrayElementTypeCheck (L_19, L_20); (L_19)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_20); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_21 = L_19; String_t* L_22 = V_0; NullCheck(L_21); ArrayElementTypeCheck (L_21, L_22); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_22); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_23 = L_21; int32_t L_24 = ___value1; int32_t L_25 = L_24; RuntimeObject * L_26 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_25); NullCheck(L_23); ArrayElementTypeCheck (L_23, L_26); (L_23)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_26); String_t* L_27 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteral196D67E00943D635E0EC2857FAE0B96FDF3C801D, L_23, /*hidden argument*/NULL); ManifestBuilder_ManifestError_mA178FBE087E34A3CC07873D32896191BF7C74A20(__this, L_27, (bool)0, /*hidden argument*/NULL); } IL_0084: { Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_28 = __this->get_taskTab_1(); if (L_28) { goto IL_0097; } } { Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_29 = (Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C *)il2cpp_codegen_object_new(Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C_il2cpp_TypeInfo_var); Dictionary_2__ctor_m6C6B59C12BD62E890CCF5AF0366E3DA0F29ADE6C(L_29, /*hidden argument*/Dictionary_2__ctor_m6C6B59C12BD62E890CCF5AF0366E3DA0F29ADE6C_RuntimeMethod_var); __this->set_taskTab_1(L_29); } IL_0097: { Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_30 = __this->get_taskTab_1(); int32_t L_31 = ___value1; String_t* L_32 = ___name0; NullCheck(L_30); Dictionary_2_set_Item_m031E42C2E9C7C3EA36FF7FD2E6155B07C5BD268C(L_30, L_31, L_32, /*hidden argument*/Dictionary_2_set_Item_m031E42C2E9C7C3EA36FF7FD2E6155B07C5BD268C_RuntimeMethod_var); return; } } // System.Void System.Diagnostics.Tracing.ManifestBuilder::AddKeyword(System.String,System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ManifestBuilder_AddKeyword_m40B31162FE9759417693A96A346D03759AE5F79A (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, String_t* ___name0, uint64_t ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ManifestBuilder_AddKeyword_m40B31162FE9759417693A96A346D03759AE5F79A_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { uint64_t L_0 = ___value1; uint64_t L_1 = ___value1; if (!((int64_t)((int64_t)L_0&(int64_t)((int64_t)il2cpp_codegen_subtract((int64_t)L_1, (int64_t)(((int64_t)((int64_t)1)))))))) { goto IL_0041; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = L_2; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_4 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL); String_t* L_5 = UInt64_ToString_mF6F94603E535C161BBD87AC747A1F403C274E8CD((uint64_t*)(&___value1), _stringLiteral11F6AD8EC52A2984ABAAFD7C3B516503785C2072, L_4, /*hidden argument*/NULL); String_t* L_6 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteral1A349DCC540A3978584510D982075F838B17CD6D, L_5, /*hidden argument*/NULL); NullCheck(L_3); ArrayElementTypeCheck (L_3, L_6); (L_3)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_6); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_7 = L_3; String_t* L_8 = ___name0; NullCheck(L_7); ArrayElementTypeCheck (L_7, L_8); (L_7)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_8); String_t* L_9 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteral491831D06619E7C160397FC825EBD1514A126B20, L_7, /*hidden argument*/NULL); ManifestBuilder_ManifestError_mA178FBE087E34A3CC07873D32896191BF7C74A20(__this, L_9, (bool)1, /*hidden argument*/NULL); } IL_0041: { int32_t L_10 = __this->get_flags_9(); if (!((int32_t)((int32_t)L_10&(int32_t)1))) { goto IL_0100; } } { uint64_t L_11 = ___value1; if ((!(((uint64_t)L_11) >= ((uint64_t)((int64_t)17592186044416LL))))) { goto IL_00a1; } } { String_t* L_12 = ___name0; NullCheck(L_12); bool L_13 = String_StartsWith_m844A95C9A205A0F951B0C45634E0C222E73D0B49(L_12, _stringLiteralF7F1997C6CD1AA051279675742272A956E7DB628, 4, /*hidden argument*/NULL); if (L_13) { goto IL_00a1; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_14 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_15 = L_14; String_t* L_16 = ___name0; NullCheck(L_15); ArrayElementTypeCheck (L_15, L_16); (L_15)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_16); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_17 = L_15; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_18 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL); String_t* L_19 = UInt64_ToString_mF6F94603E535C161BBD87AC747A1F403C274E8CD((uint64_t*)(&___value1), _stringLiteral11F6AD8EC52A2984ABAAFD7C3B516503785C2072, L_18, /*hidden argument*/NULL); String_t* L_20 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteral1A349DCC540A3978584510D982075F838B17CD6D, L_19, /*hidden argument*/NULL); NullCheck(L_17); ArrayElementTypeCheck (L_17, L_20); (L_17)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_20); String_t* L_21 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteral54D418B5B42E9B96FD52173E32F2031D880B8C46, L_17, /*hidden argument*/NULL); ManifestBuilder_ManifestError_mA178FBE087E34A3CC07873D32896191BF7C74A20(__this, L_21, (bool)0, /*hidden argument*/NULL); } IL_00a1: { Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 * L_22 = __this->get_keywordTab_2(); if (!L_22) { goto IL_0100; } } { Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 * L_23 = __this->get_keywordTab_2(); uint64_t L_24 = ___value1; NullCheck(L_23); bool L_25 = Dictionary_2_TryGetValue_m77A3B26E0EDFCCEDB1FCBB4ABEF7C47F146296A8(L_23, L_24, (String_t**)(&V_0), /*hidden argument*/Dictionary_2_TryGetValue_m77A3B26E0EDFCCEDB1FCBB4ABEF7C47F146296A8_RuntimeMethod_var); if (!L_25) { goto IL_0100; } } { String_t* L_26 = ___name0; String_t* L_27 = V_0; NullCheck(L_26); bool L_28 = String_Equals_mB42D01789A129C548840C18E9065ACF9412F1F84(L_26, L_27, 4, /*hidden argument*/NULL); if (L_28) { goto IL_0100; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_29 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)3); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_30 = L_29; String_t* L_31 = ___name0; NullCheck(L_30); ArrayElementTypeCheck (L_30, L_31); (L_30)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_31); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_32 = L_30; String_t* L_33 = V_0; NullCheck(L_32); ArrayElementTypeCheck (L_32, L_33); (L_32)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_33); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_34 = L_32; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_35 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL); String_t* L_36 = UInt64_ToString_mF6F94603E535C161BBD87AC747A1F403C274E8CD((uint64_t*)(&___value1), _stringLiteral11F6AD8EC52A2984ABAAFD7C3B516503785C2072, L_35, /*hidden argument*/NULL); String_t* L_37 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteral1A349DCC540A3978584510D982075F838B17CD6D, L_36, /*hidden argument*/NULL); NullCheck(L_34); ArrayElementTypeCheck (L_34, L_37); (L_34)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_37); String_t* L_38 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralAF2B0CF212656E3065ABF0952C35E2535C594035, L_34, /*hidden argument*/NULL); ManifestBuilder_ManifestError_mA178FBE087E34A3CC07873D32896191BF7C74A20(__this, L_38, (bool)0, /*hidden argument*/NULL); } IL_0100: { Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 * L_39 = __this->get_keywordTab_2(); if (L_39) { goto IL_0113; } } { Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 * L_40 = (Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 *)il2cpp_codegen_object_new(Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833_il2cpp_TypeInfo_var); Dictionary_2__ctor_m5C88DEF6F44E0685CA2079AA411B600A8734505A(L_40, /*hidden argument*/Dictionary_2__ctor_m5C88DEF6F44E0685CA2079AA411B600A8734505A_RuntimeMethod_var); __this->set_keywordTab_2(L_40); } IL_0113: { Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 * L_41 = __this->get_keywordTab_2(); uint64_t L_42 = ___value1; String_t* L_43 = ___name0; NullCheck(L_41); Dictionary_2_set_Item_m99E7F592C4AA8A81755705784131ED187F20ECC0(L_41, L_42, L_43, /*hidden argument*/Dictionary_2_set_Item_m99E7F592C4AA8A81755705784131ED187F20ECC0_RuntimeMethod_var); return; } } // System.Void System.Diagnostics.Tracing.ManifestBuilder::StartEvent(System.String,System.Diagnostics.Tracing.EventAttribute) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ManifestBuilder_StartEvent_m20757C6BE1E0E1F3B9AB3CB1674567A8B56E183E (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, String_t* ___eventName0, EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1 * ___eventAttribute1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ManifestBuilder_StartEvent_m20757C6BE1E0E1F3B9AB3CB1674567A8B56E183E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___eventName0; __this->set_eventName_12(L_0); __this->set_numParams_13(0); __this->set_byteArrArgIndices_14((List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 *)NULL); StringBuilder_t * L_1 = __this->get_events_6(); NullCheck(L_1); StringBuilder_t * L_2 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_1, _stringLiteral6E73877D3AA13493BA01F49A10B5A30CE83306E5, /*hidden argument*/NULL); NullCheck(L_2); StringBuilder_t * L_3 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_2, _stringLiteral39436FAE619E1025F8D6B16E87866B2D0A206B84, /*hidden argument*/NULL); EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1 * L_4 = ___eventAttribute1; NullCheck(L_4); int32_t L_5 = EventAttribute_get_EventId_mECBD6F6FA850319FF22D8C98CD56AFC44A786557_inline(L_4, /*hidden argument*/NULL); NullCheck(L_3); StringBuilder_t * L_6 = StringBuilder_Append_m85874CFF9E4B152DB2A91936C6F2CA3E9B1EFF84(L_3, L_5, /*hidden argument*/NULL); NullCheck(L_6); StringBuilder_t * L_7 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_6, _stringLiteral2ACE62C1BEFA19E3EA37DD52BE9F6D508C5163E6, /*hidden argument*/NULL); NullCheck(L_7); StringBuilder_t * L_8 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_7, _stringLiteral00E9885F5602769A313CB71E70C3C23739621EAB, /*hidden argument*/NULL); EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1 * L_9 = ___eventAttribute1; NullCheck(L_9); uint8_t L_10 = EventAttribute_get_Version_m3AAD912A9FC7924161D37BD19D89ECBA5BDD0CF6_inline(L_9, /*hidden argument*/NULL); NullCheck(L_8); StringBuilder_t * L_11 = StringBuilder_Append_m4B3D765122247E2EBDA4E3870A86C26DCCCC8717(L_8, L_10, /*hidden argument*/NULL); NullCheck(L_11); StringBuilder_t * L_12 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_11, _stringLiteral2ACE62C1BEFA19E3EA37DD52BE9F6D508C5163E6, /*hidden argument*/NULL); NullCheck(L_12); StringBuilder_t * L_13 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_12, _stringLiteral960922F9F8E21682ABFD2C7FBBD3F8CBC3CEA2B0, /*hidden argument*/NULL); EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1 * L_14 = ___eventAttribute1; NullCheck(L_14); int32_t L_15 = EventAttribute_get_Level_mB5C7FA65BD79AA55FB614D04B573187E715081EA_inline(L_14, /*hidden argument*/NULL); String_t* L_16 = ManifestBuilder_GetLevelName_mDE24AE4C28BD5EF3FE4D29D3731F19B050C6D1E2(L_15, /*hidden argument*/NULL); NullCheck(L_13); StringBuilder_t * L_17 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_13, L_16, /*hidden argument*/NULL); NullCheck(L_17); StringBuilder_t * L_18 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_17, _stringLiteral2ACE62C1BEFA19E3EA37DD52BE9F6D508C5163E6, /*hidden argument*/NULL); NullCheck(L_18); StringBuilder_t * L_19 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_18, _stringLiteralE19A13294CD96A9A0821CDA57FD3346B2CDFFB6C, /*hidden argument*/NULL); String_t* L_20 = ___eventName0; NullCheck(L_19); StringBuilder_t * L_21 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_19, L_20, /*hidden argument*/NULL); NullCheck(L_21); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_21, _stringLiteral2ACE62C1BEFA19E3EA37DD52BE9F6D508C5163E6, /*hidden argument*/NULL); StringBuilder_t * L_22 = __this->get_events_6(); String_t* L_23 = ___eventName0; EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1 * L_24 = ___eventAttribute1; NullCheck(L_24); String_t* L_25 = EventAttribute_get_Message_m058E0091B7D3211698644AC7149075C9355DD519_inline(L_24, /*hidden argument*/NULL); ManifestBuilder_WriteMessageAttrib_m41F740A687F6D00B1D52FDA78B5D22052B587027(__this, L_22, _stringLiteral5006ED0248A019713B762563076292379DAF07B4, L_23, L_25, /*hidden argument*/NULL); EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1 * L_26 = ___eventAttribute1; NullCheck(L_26); int64_t L_27 = EventAttribute_get_Keywords_m6889779A5A55DB96A591BF26676DFCDDD0520142_inline(L_26, /*hidden argument*/NULL); if (!L_27) { goto IL_00ef; } } { StringBuilder_t * L_28 = __this->get_events_6(); NullCheck(L_28); StringBuilder_t * L_29 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_28, _stringLiteral31655E4E40C7340D7574D81061F79456A829DEF2, /*hidden argument*/NULL); EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1 * L_30 = ___eventAttribute1; NullCheck(L_30); int64_t L_31 = EventAttribute_get_Keywords_m6889779A5A55DB96A591BF26676DFCDDD0520142_inline(L_30, /*hidden argument*/NULL); String_t* L_32 = ___eventName0; String_t* L_33 = ManifestBuilder_GetKeywords_m5EA6BEBFD8B95C29E7079DF929E551442315D3B0(__this, L_31, L_32, /*hidden argument*/NULL); NullCheck(L_29); StringBuilder_t * L_34 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_29, L_33, /*hidden argument*/NULL); NullCheck(L_34); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_34, _stringLiteral2ACE62C1BEFA19E3EA37DD52BE9F6D508C5163E6, /*hidden argument*/NULL); } IL_00ef: { EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1 * L_35 = ___eventAttribute1; NullCheck(L_35); int32_t L_36 = EventAttribute_get_Opcode_m2D6D1FA345ABB33FEB10D4A9C0878CCB5C811712_inline(L_35, /*hidden argument*/NULL); if (!L_36) { goto IL_0124; } } { StringBuilder_t * L_37 = __this->get_events_6(); NullCheck(L_37); StringBuilder_t * L_38 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_37, _stringLiteral71B0805D942E320B28CD4E33784092B71CF4914F, /*hidden argument*/NULL); EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1 * L_39 = ___eventAttribute1; NullCheck(L_39); int32_t L_40 = EventAttribute_get_Opcode_m2D6D1FA345ABB33FEB10D4A9C0878CCB5C811712_inline(L_39, /*hidden argument*/NULL); String_t* L_41 = ___eventName0; String_t* L_42 = ManifestBuilder_GetOpcodeName_m612EBC12C1DB95126B4335BDE9AB4EF9671CDA59(__this, L_40, L_41, /*hidden argument*/NULL); NullCheck(L_38); StringBuilder_t * L_43 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_38, L_42, /*hidden argument*/NULL); NullCheck(L_43); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_43, _stringLiteral2ACE62C1BEFA19E3EA37DD52BE9F6D508C5163E6, /*hidden argument*/NULL); } IL_0124: { EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1 * L_44 = ___eventAttribute1; NullCheck(L_44); int32_t L_45 = EventAttribute_get_Task_m670824C9F357501D5AEB3051330FBDE3DEBFA7A3_inline(L_44, /*hidden argument*/NULL); if (!L_45) { goto IL_0159; } } { StringBuilder_t * L_46 = __this->get_events_6(); NullCheck(L_46); StringBuilder_t * L_47 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_46, _stringLiteral4A13CBBE581E26FF56A2C1CFF69DF36A497F2D9B, /*hidden argument*/NULL); EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1 * L_48 = ___eventAttribute1; NullCheck(L_48); int32_t L_49 = EventAttribute_get_Task_m670824C9F357501D5AEB3051330FBDE3DEBFA7A3_inline(L_48, /*hidden argument*/NULL); String_t* L_50 = ___eventName0; String_t* L_51 = ManifestBuilder_GetTaskName_mA4295AA0FF9A15046B6C696F6C33265BA44CC104(__this, L_49, L_50, /*hidden argument*/NULL); NullCheck(L_47); StringBuilder_t * L_52 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_47, L_51, /*hidden argument*/NULL); NullCheck(L_52); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_52, _stringLiteral2ACE62C1BEFA19E3EA37DD52BE9F6D508C5163E6, /*hidden argument*/NULL); } IL_0159: { return; } } // System.Void System.Diagnostics.Tracing.ManifestBuilder::AddEventParameter(System.Type,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ManifestBuilder_AddEventParameter_m53C32DDB5EB3C924364BB80E0E0492E0E06CC46E (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, Type_t * ___type0, String_t* ___name1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ManifestBuilder_AddEventParameter_m53C32DDB5EB3C924364BB80E0E0492E0E06CC46E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->get_numParams_13(); if (L_0) { goto IL_0033; } } { StringBuilder_t * L_1 = __this->get_templates_7(); NullCheck(L_1); StringBuilder_t * L_2 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_1, _stringLiteralF157520F6E4410E060D49EA7EA8D45E29708266E, /*hidden argument*/NULL); String_t* L_3 = __this->get_eventName_12(); NullCheck(L_2); StringBuilder_t * L_4 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_2, L_3, /*hidden argument*/NULL); NullCheck(L_4); StringBuilder_t * L_5 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_4, _stringLiteralEC018D9B2AE22D92E0692846B79930726940CF87, /*hidden argument*/NULL); NullCheck(L_5); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_5, /*hidden argument*/NULL); } IL_0033: { Type_t * L_6 = ___type0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_7 = { reinterpret_cast<intptr_t> (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_8 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_7, /*hidden argument*/NULL); bool L_9 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_6, L_8, /*hidden argument*/NULL); if (!L_9) { goto IL_009e; } } { List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * L_10 = __this->get_byteArrArgIndices_14(); if (L_10) { goto IL_0059; } } { List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * L_11 = (List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 *)il2cpp_codegen_object_new(List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226_il2cpp_TypeInfo_var); List_1__ctor_m020F9255F34CF1C83F40396FACCAB453009967BC(L_11, 4, /*hidden argument*/List_1__ctor_m020F9255F34CF1C83F40396FACCAB453009967BC_RuntimeMethod_var); __this->set_byteArrArgIndices_14(L_11); } IL_0059: { List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * L_12 = __this->get_byteArrArgIndices_14(); int32_t L_13 = __this->get_numParams_13(); NullCheck(L_12); List_1_Add_m50C0D1F69B2EF31137658E2F052EBBAC7BF82771(L_12, L_13, /*hidden argument*/List_1_Add_m50C0D1F69B2EF31137658E2F052EBBAC7BF82771_RuntimeMethod_var); int32_t L_14 = __this->get_numParams_13(); __this->set_numParams_13(((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1))); StringBuilder_t * L_15 = __this->get_templates_7(); NullCheck(L_15); StringBuilder_t * L_16 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_15, _stringLiteralA2622C5B77AF10A7543E35E480A93137184C63B2, /*hidden argument*/NULL); String_t* L_17 = ___name1; NullCheck(L_16); StringBuilder_t * L_18 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_16, L_17, /*hidden argument*/NULL); NullCheck(L_18); StringBuilder_t * L_19 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_18, _stringLiteral770BCC70D6014E87ECE237202D721242936CA178, /*hidden argument*/NULL); NullCheck(L_19); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_19, /*hidden argument*/NULL); } IL_009e: { int32_t L_20 = __this->get_numParams_13(); __this->set_numParams_13(((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1))); StringBuilder_t * L_21 = __this->get_templates_7(); NullCheck(L_21); StringBuilder_t * L_22 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_21, _stringLiteralA2622C5B77AF10A7543E35E480A93137184C63B2, /*hidden argument*/NULL); String_t* L_23 = ___name1; NullCheck(L_22); StringBuilder_t * L_24 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_22, L_23, /*hidden argument*/NULL); NullCheck(L_24); StringBuilder_t * L_25 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_24, _stringLiteralD9FBDDF2CBB921BE69D65F49DDB93CB5E87CC4B4, /*hidden argument*/NULL); Type_t * L_26 = ___type0; String_t* L_27 = ManifestBuilder_GetTypeName_m4148EBA98880502C3C7836AB3A99230DEC3AB71C(__this, L_26, /*hidden argument*/NULL); NullCheck(L_25); StringBuilder_t * L_28 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_25, L_27, /*hidden argument*/NULL); NullCheck(L_28); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_28, _stringLiteral2ACE62C1BEFA19E3EA37DD52BE9F6D508C5163E6, /*hidden argument*/NULL); Type_t * L_29 = ___type0; NullCheck(L_29); bool L_30 = Type_get_IsArray_m0B4E20F93B1B34C0B5C4B089F543D1AA338DC9FE(L_29, /*hidden argument*/NULL); if (L_30) { goto IL_00f3; } } { Type_t * L_31 = ___type0; NullCheck(L_31); bool L_32 = Type_get_IsPointer_mF823CB662C6A04674589640771E6AD6B71093E57(L_31, /*hidden argument*/NULL); if (!L_32) { goto IL_012b; } } IL_00f3: { Type_t * L_33 = ___type0; NullCheck(L_33); Type_t * L_34 = VirtFuncInvoker0< Type_t * >::Invoke(97 /* System.Type System.Type::GetElementType() */, L_33); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_35 = { reinterpret_cast<intptr_t> (Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_36 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_35, /*hidden argument*/NULL); bool L_37 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_34, L_36, /*hidden argument*/NULL); if (!L_37) { goto IL_012b; } } { StringBuilder_t * L_38 = __this->get_templates_7(); NullCheck(L_38); StringBuilder_t * L_39 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_38, _stringLiteral3DDA0092F70DE993E51460CD2CDDDCB041FDE82E, /*hidden argument*/NULL); String_t* L_40 = ___name1; NullCheck(L_39); StringBuilder_t * L_41 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_39, L_40, /*hidden argument*/NULL); NullCheck(L_41); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_41, _stringLiteral0B0263D53F1F71417596898D686DD5AF8B90FE9E, /*hidden argument*/NULL); } IL_012b: { Type_t * L_42 = ___type0; bool L_43 = ReflectionExtensions_IsEnum_m2930BB5E455993D6A599EA4F61DFB9859099EDA6(L_42, /*hidden argument*/NULL); if (!L_43) { goto IL_01c2; } } { Type_t * L_44 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); Type_t * L_45 = Enum_GetUnderlyingType_m0715B4E60E6909F03FF7302B6E20B1AB88DA84B1(L_44, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_46 = { reinterpret_cast<intptr_t> (UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_47 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_46, /*hidden argument*/NULL); bool L_48 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_45, L_47, /*hidden argument*/NULL); if (!L_48) { goto IL_01c2; } } { Type_t * L_49 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); Type_t * L_50 = Enum_GetUnderlyingType_m0715B4E60E6909F03FF7302B6E20B1AB88DA84B1(L_49, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_51 = { reinterpret_cast<intptr_t> (Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_52 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_51, /*hidden argument*/NULL); bool L_53 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_50, L_52, /*hidden argument*/NULL); if (!L_53) { goto IL_01c2; } } { StringBuilder_t * L_54 = __this->get_templates_7(); NullCheck(L_54); StringBuilder_t * L_55 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_54, _stringLiteralF22E0B86040D26623EC71DB229693B313EEFB5B7, /*hidden argument*/NULL); Type_t * L_56 = ___type0; NullCheck(L_56); String_t* L_57 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_56); NullCheck(L_55); StringBuilder_t * L_58 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_55, L_57, /*hidden argument*/NULL); NullCheck(L_58); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_58, _stringLiteral2ACE62C1BEFA19E3EA37DD52BE9F6D508C5163E6, /*hidden argument*/NULL); Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A * L_59 = __this->get_mapsTab_3(); if (L_59) { goto IL_019d; } } { Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A * L_60 = (Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A *)il2cpp_codegen_object_new(Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A_il2cpp_TypeInfo_var); Dictionary_2__ctor_m028A8C29837E90F8FCF51F91433AAE6A27BB29A2(L_60, /*hidden argument*/Dictionary_2__ctor_m028A8C29837E90F8FCF51F91433AAE6A27BB29A2_RuntimeMethod_var); __this->set_mapsTab_3(L_60); } IL_019d: { Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A * L_61 = __this->get_mapsTab_3(); Type_t * L_62 = ___type0; NullCheck(L_62); String_t* L_63 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_62); NullCheck(L_61); bool L_64 = Dictionary_2_ContainsKey_m5F4C008599642405E5984D9D35D89E51612D9FAF(L_61, L_63, /*hidden argument*/Dictionary_2_ContainsKey_m5F4C008599642405E5984D9D35D89E51612D9FAF_RuntimeMethod_var); if (L_64) { goto IL_01c2; } } { Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A * L_65 = __this->get_mapsTab_3(); Type_t * L_66 = ___type0; NullCheck(L_66); String_t* L_67 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_66); Type_t * L_68 = ___type0; NullCheck(L_65); Dictionary_2_Add_m7ECEB69F45361CF1DD0E053D2BC7F30CCB5478CA(L_65, L_67, L_68, /*hidden argument*/Dictionary_2_Add_m7ECEB69F45361CF1DD0E053D2BC7F30CCB5478CA_RuntimeMethod_var); } IL_01c2: { StringBuilder_t * L_69 = __this->get_templates_7(); NullCheck(L_69); StringBuilder_t * L_70 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_69, _stringLiteral537FA6E787490E9ECBA018A19D88D636EEE975E6, /*hidden argument*/NULL); NullCheck(L_70); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_70, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.ManifestBuilder::EndEvent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ManifestBuilder_EndEvent_m95778E3FF0E7DA01DD15D5B3EFBE13A0AB208F6C (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ManifestBuilder_EndEvent_m95778E3FF0E7DA01DD15D5B3EFBE13A0AB208F6C_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { int32_t L_0 = __this->get_numParams_13(); if ((((int32_t)L_0) <= ((int32_t)0))) { goto IL_0045; } } { StringBuilder_t * L_1 = __this->get_templates_7(); NullCheck(L_1); StringBuilder_t * L_2 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_1, _stringLiteralF127B44E6D56B2F84FFDB105466CF4BAAABAB2DE, /*hidden argument*/NULL); NullCheck(L_2); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_2, /*hidden argument*/NULL); StringBuilder_t * L_3 = __this->get_events_6(); NullCheck(L_3); StringBuilder_t * L_4 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_3, _stringLiteral786CA434663C378B4905D10A07443F2672AFD85C, /*hidden argument*/NULL); String_t* L_5 = __this->get_eventName_12(); NullCheck(L_4); StringBuilder_t * L_6 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_4, L_5, /*hidden argument*/NULL); NullCheck(L_6); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_6, _stringLiteral263A6F6E0C50EF5F5EA93F74510351119E77A374, /*hidden argument*/NULL); } IL_0045: { StringBuilder_t * L_7 = __this->get_events_6(); NullCheck(L_7); StringBuilder_t * L_8 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_7, _stringLiteral537FA6E787490E9ECBA018A19D88D636EEE975E6, /*hidden argument*/NULL); NullCheck(L_8); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_8, /*hidden argument*/NULL); List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * L_9 = __this->get_byteArrArgIndices_14(); if (!L_9) { goto IL_007a; } } { Dictionary_2_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28 * L_10 = __this->get_perEventByteArrayArgIndices_11(); String_t* L_11 = __this->get_eventName_12(); List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * L_12 = __this->get_byteArrArgIndices_14(); NullCheck(L_10); Dictionary_2_set_Item_m7948EED55902B8130637D4107ED348F2146E18B9(L_10, L_11, L_12, /*hidden argument*/Dictionary_2_set_Item_m7948EED55902B8130637D4107ED348F2146E18B9_RuntimeMethod_var); } IL_007a: { Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_13 = __this->get_stringTab_4(); String_t* L_14 = __this->get_eventName_12(); String_t* L_15 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteralC03DF71F362B020D7ECA0433A7EAEDE62B82ABB5, L_14, /*hidden argument*/NULL); NullCheck(L_13); bool L_16 = Dictionary_2_TryGetValue_mACE6F295B868D8DD552A8F7D4ABA375F843BB13B(L_13, L_15, (String_t**)(&V_0), /*hidden argument*/Dictionary_2_TryGetValue_mACE6F295B868D8DD552A8F7D4ABA375F843BB13B_RuntimeMethod_var); if (!L_16) { goto IL_00c3; } } { String_t* L_17 = V_0; String_t* L_18 = __this->get_eventName_12(); String_t* L_19 = ManifestBuilder_TranslateToManifestConvention_m100A461415FF81C8254B2E763B5F45132A49D85C(__this, L_17, L_18, /*hidden argument*/NULL); V_0 = L_19; Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_20 = __this->get_stringTab_4(); String_t* L_21 = __this->get_eventName_12(); String_t* L_22 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteralC03DF71F362B020D7ECA0433A7EAEDE62B82ABB5, L_21, /*hidden argument*/NULL); String_t* L_23 = V_0; NullCheck(L_20); Dictionary_2_set_Item_m597918251624A4BF29104324490143CFCA659FAD(L_20, L_22, L_23, /*hidden argument*/Dictionary_2_set_Item_m597918251624A4BF29104324490143CFCA659FAD_RuntimeMethod_var); } IL_00c3: { __this->set_eventName_12((String_t*)NULL); __this->set_numParams_13(0); __this->set_byteArrArgIndices_14((List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 *)NULL); return; } } // System.Byte[] System.Diagnostics.Tracing.ManifestBuilder::CreateManifest() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ManifestBuilder_CreateManifest_mDD01686B4C7D615B86ACBA648988B5903FBB67E7 (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, const RuntimeMethod* method) { String_t* V_0 = NULL; { String_t* L_0 = ManifestBuilder_CreateManifestString_m345D8445BF70DD3AE849513454D09A710CB99D5F(__this, /*hidden argument*/NULL); V_0 = L_0; Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_1 = Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9(/*hidden argument*/NULL); String_t* L_2 = V_0; NullCheck(L_1); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = VirtFuncInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, String_t* >::Invoke(15 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_1, L_2); return L_3; } } // System.Collections.Generic.IList`1<System.String> System.Diagnostics.Tracing.ManifestBuilder::get_Errors() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ManifestBuilder_get_Errors_m38AD987BCFCAC441E35B1407D0E6E07C42AB822E (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, const RuntimeMethod* method) { { RuntimeObject* L_0 = __this->get_errors_10(); return L_0; } } // System.Void System.Diagnostics.Tracing.ManifestBuilder::ManifestError(System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ManifestBuilder_ManifestError_mA178FBE087E34A3CC07873D32896191BF7C74A20 (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, String_t* ___msg0, bool ___runtimeCritical1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ManifestBuilder_ManifestError_mA178FBE087E34A3CC07873D32896191BF7C74A20_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->get_flags_9(); if (!((int32_t)((int32_t)L_0&(int32_t)1))) { goto IL_0017; } } { RuntimeObject* L_1 = __this->get_errors_10(); String_t* L_2 = ___msg0; NullCheck(L_1); InterfaceActionInvoker1< String_t* >::Invoke(2 /* System.Void System.Collections.Generic.ICollection`1<System.String>::Add(T) */, ICollection_1_t2E51991ADA605DB75870908AF6D7C3093DC3FCBA_il2cpp_TypeInfo_var, L_1, L_2); return; } IL_0017: { bool L_3 = ___runtimeCritical1; if (!L_3) { goto IL_0021; } } { String_t* L_4 = ___msg0; ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_5 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_5, L_4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, ManifestBuilder_ManifestError_mA178FBE087E34A3CC07873D32896191BF7C74A20_RuntimeMethod_var); } IL_0021: { return; } } // System.String System.Diagnostics.Tracing.ManifestBuilder::CreateManifestString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ManifestBuilder_CreateManifestString_m345D8445BF70DD3AE849513454D09A710CB99D5F (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ManifestBuilder_CreateManifestString_m345D8445BF70DD3AE849513454D09A710CB99D5F_MetadataUsageId); s_Il2CppMethodInitialized = true; } List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 * V_0 = NULL; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* V_1 = NULL; Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 V_2; memset((&V_2), 0, sizeof(V_2)); int32_t V_3 = 0; Enumerator_tABA216358668DD188BBA6A59F0C67AE9AF312CD4 V_4; memset((&V_4), 0, sizeof(V_4)); Type_t * V_5 = NULL; bool V_6 = false; String_t* V_7 = NULL; FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* V_8 = NULL; int32_t V_9 = 0; FieldInfo_t * V_10 = NULL; RuntimeObject * V_11 = NULL; int64_t V_12 = 0; int32_t V_13 = 0; Enumerator_t46B8FA0EA6058B0B5871CE816B84FA8AAF77208B V_14; memset((&V_14), 0, sizeof(V_14)); uint64_t V_15 = 0; Enumerator_tFAF40259E587A0C56311F14FEBDCF69C3916B5A9 V_16; memset((&V_16), 0, sizeof(V_16)); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * V_17 = NULL; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* V_18 = NULL; String_t* V_19 = NULL; String_t* V_20 = 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) * 5); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); String_t* G_B14_0 = NULL; { Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_0 = __this->get_taskTab_1(); if (!L_0) { goto IL_00ca; } } { StringBuilder_t * L_1 = __this->get_sb_5(); NullCheck(L_1); StringBuilder_t * L_2 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_1, _stringLiteralFC288D7B83A87B0DDC24679D162D7350601C984D, /*hidden argument*/NULL); NullCheck(L_2); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_2, /*hidden argument*/NULL); Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_3 = __this->get_taskTab_1(); NullCheck(L_3); KeyCollection_t2F25BAF319A40DA5241F076B74BB90B72F16822F * L_4 = Dictionary_2_get_Keys_m7B7C3AFFC85AC47452A738673E646AA602D63CA1(L_3, /*hidden argument*/Dictionary_2_get_Keys_m7B7C3AFFC85AC47452A738673E646AA602D63CA1_RuntimeMethod_var); List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * L_5 = (List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 *)il2cpp_codegen_object_new(List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226_il2cpp_TypeInfo_var); List_1__ctor_m262B3A833A8A33F720DDF70DABD4C455423A6797(L_5, L_4, /*hidden argument*/List_1__ctor_m262B3A833A8A33F720DDF70DABD4C455423A6797_RuntimeMethod_var); List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * L_6 = L_5; NullCheck(L_6); List_1_Sort_m723A6BEBAB430277CD79C8BD7D63DEF94E0BBB0A(L_6, /*hidden argument*/List_1_Sort_m723A6BEBAB430277CD79C8BD7D63DEF94E0BBB0A_RuntimeMethod_var); NullCheck(L_6); Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 L_7 = List_1_GetEnumerator_mE721B3C5E137DCDB408BE05CA472EECBAAAA418A(L_6, /*hidden argument*/List_1_GetEnumerator_mE721B3C5E137DCDB408BE05CA472EECBAAAA418A_RuntimeMethod_var); V_2 = L_7; } IL_003d: try { // begin try (depth: 1) { goto IL_009b; } IL_003f: { int32_t L_8 = Enumerator_get_Current_m219EC3BCCD8CF3A474AD0C4DBA55EB9B74C9F89C_inline((Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 *)(&V_2), /*hidden argument*/Enumerator_get_Current_m219EC3BCCD8CF3A474AD0C4DBA55EB9B74C9F89C_RuntimeMethod_var); V_3 = L_8; StringBuilder_t * L_9 = __this->get_sb_5(); NullCheck(L_9); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_9, _stringLiteral99A83968733ADFF557210E1C8B53ACC558341FB8, /*hidden argument*/NULL); StringBuilder_t * L_10 = __this->get_sb_5(); Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_11 = __this->get_taskTab_1(); int32_t L_12 = V_3; NullCheck(L_11); String_t* L_13 = Dictionary_2_get_Item_m832206501573309C2C9C1E4F96AAC39AACE24906(L_11, L_12, /*hidden argument*/Dictionary_2_get_Item_m832206501573309C2C9C1E4F96AAC39AACE24906_RuntimeMethod_var); ManifestBuilder_WriteNameAndMessageAttribs_m444B282AD88FA3A63618C9E361B3B084642889D8(__this, L_10, _stringLiteral7FBB727DB4B2B6715B092505673CB5922A0D63A8, L_13, /*hidden argument*/NULL); StringBuilder_t * L_14 = __this->get_sb_5(); NullCheck(L_14); StringBuilder_t * L_15 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_14, _stringLiteral39436FAE619E1025F8D6B16E87866B2D0A206B84, /*hidden argument*/NULL); int32_t L_16 = V_3; NullCheck(L_15); StringBuilder_t * L_17 = StringBuilder_Append_m85874CFF9E4B152DB2A91936C6F2CA3E9B1EFF84(L_15, L_16, /*hidden argument*/NULL); NullCheck(L_17); StringBuilder_t * L_18 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_17, _stringLiteral36E743E4B92054AB6F0DA52D2B5F50ADE4B8D257, /*hidden argument*/NULL); NullCheck(L_18); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_18, /*hidden argument*/NULL); } IL_009b: { bool L_19 = Enumerator_MoveNext_m42C746E84C832B62E93536A47B4086F3A3AC6609((Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 *)(&V_2), /*hidden argument*/Enumerator_MoveNext_m42C746E84C832B62E93536A47B4086F3A3AC6609_RuntimeMethod_var); if (L_19) { goto IL_003f; } } IL_00a4: { IL2CPP_LEAVE(0xB4, FINALLY_00a6); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00a6; } FINALLY_00a6: { // begin finally (depth: 1) Enumerator_Dispose_m902D0B2B4B4B589E6F3653D9CDB38E0AA97EBCF9((Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 *)(&V_2), /*hidden argument*/Enumerator_Dispose_m902D0B2B4B4B589E6F3653D9CDB38E0AA97EBCF9_RuntimeMethod_var); IL2CPP_END_FINALLY(166) } // end finally (depth: 1) IL2CPP_CLEANUP(166) { IL2CPP_JUMP_TBL(0xB4, IL_00b4) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_00b4: { StringBuilder_t * L_20 = __this->get_sb_5(); NullCheck(L_20); StringBuilder_t * L_21 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_20, _stringLiteralCD6B5E37A480F90D8313A8EBA22F2DBEE9A15F7B, /*hidden argument*/NULL); NullCheck(L_21); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_21, /*hidden argument*/NULL); } IL_00ca: { Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A * L_22 = __this->get_mapsTab_3(); if (!L_22) { goto IL_02bd; } } { StringBuilder_t * L_23 = __this->get_sb_5(); NullCheck(L_23); StringBuilder_t * L_24 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_23, _stringLiteralD4D60962C564FF4E5AB47355C2F68221D614AFC0, /*hidden argument*/NULL); NullCheck(L_24); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_24, /*hidden argument*/NULL); Dictionary_2_t2DB4209C32F7303EA559E23BF9E6AEAE8F21001A * L_25 = __this->get_mapsTab_3(); NullCheck(L_25); ValueCollection_t7916CDE541FFBF8945E39B059894001AE50AD9CC * L_26 = Dictionary_2_get_Values_m4326450E83510370C04304A1B988C2C1223470D5(L_25, /*hidden argument*/Dictionary_2_get_Values_m4326450E83510370C04304A1B988C2C1223470D5_RuntimeMethod_var); NullCheck(L_26); Enumerator_tABA216358668DD188BBA6A59F0C67AE9AF312CD4 L_27 = ValueCollection_GetEnumerator_m4BF64721E0542BF1C48C497E3420E59565496D51(L_26, /*hidden argument*/ValueCollection_GetEnumerator_m4BF64721E0542BF1C48C497E3420E59565496D51_RuntimeMethod_var); V_4 = L_27; } IL_00fd: try { // begin try (depth: 1) { goto IL_028b; } IL_0102: { Type_t * L_28 = Enumerator_get_Current_m5CFE9565387CC3F8012BF6E529BF77223AEE8326_inline((Enumerator_tABA216358668DD188BBA6A59F0C67AE9AF312CD4 *)(&V_4), /*hidden argument*/Enumerator_get_Current_m5CFE9565387CC3F8012BF6E529BF77223AEE8326_RuntimeMethod_var); V_5 = L_28; Type_t * L_29 = V_5; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_30 = { reinterpret_cast<intptr_t> (FlagsAttribute_t7FB7BEFA2E1F2C6E3362A5996E82697475FFE867_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_31 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_30, /*hidden argument*/NULL); int32_t L_32 = __this->get_flags_9(); IL2CPP_RUNTIME_CLASS_INIT(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB_il2cpp_TypeInfo_var); Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_33 = EventSource_GetCustomAttributeHelper_m0071006CDD204BE00B7EFEA9F5E52D087AF1F7D7(L_29, L_31, L_32, /*hidden argument*/NULL); V_6 = (bool)((!(((RuntimeObject*)(Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 *)L_33) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0); bool L_34 = V_6; if (L_34) { goto IL_0132; } } IL_012b: { G_B14_0 = _stringLiteral3818FC9AE3DDA60E826D9B14657F088FB5F30552; goto IL_0137; } IL_0132: { G_B14_0 = _stringLiteral855DCB454D8D2C61BA069AEC5ADB73CCA1157E46; } IL_0137: { V_7 = G_B14_0; StringBuilder_t * L_35 = __this->get_sb_5(); NullCheck(L_35); StringBuilder_t * L_36 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_35, _stringLiteral246E6F26840D821990AE19D45FDE49C40A6F43E2, /*hidden argument*/NULL); String_t* L_37 = V_7; NullCheck(L_36); StringBuilder_t * L_38 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_36, L_37, /*hidden argument*/NULL); NullCheck(L_38); StringBuilder_t * L_39 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_38, _stringLiteral6A5E638295EEC62AA4D935BF2B39E5AF8987E272, /*hidden argument*/NULL); Type_t * L_40 = V_5; NullCheck(L_40); String_t* L_41 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_40); NullCheck(L_39); StringBuilder_t * L_42 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_39, L_41, /*hidden argument*/NULL); NullCheck(L_42); StringBuilder_t * L_43 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_42, _stringLiteral28F19568A74E0032FBC866433CFF499CE8C2BCC1, /*hidden argument*/NULL); NullCheck(L_43); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_43, /*hidden argument*/NULL); Type_t * L_44 = V_5; NullCheck(L_44); FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* L_45 = VirtFuncInvoker1< FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE*, int32_t >::Invoke(43 /* System.Reflection.FieldInfo[] System.Type::GetFields(System.Reflection.BindingFlags) */, L_44, ((int32_t)26)); V_8 = L_45; V_9 = 0; goto IL_0259; } IL_0189: { FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* L_46 = V_8; int32_t L_47 = V_9; NullCheck(L_46); int32_t L_48 = L_47; FieldInfo_t * L_49 = (L_46)->GetAt(static_cast<il2cpp_array_size_t>(L_48)); V_10 = L_49; FieldInfo_t * L_50 = V_10; NullCheck(L_50); RuntimeObject * L_51 = VirtFuncInvoker0< RuntimeObject * >::Invoke(28 /* System.Object System.Reflection.FieldInfo::GetRawConstantValue() */, L_50); V_11 = L_51; RuntimeObject * L_52 = V_11; if (!L_52) { goto IL_0253; } } IL_01a0: { RuntimeObject * L_53 = V_11; if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_53, Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var))) { goto IL_01b5; } } IL_01a9: { RuntimeObject * L_54 = V_11; V_12 = (((int64_t)((int64_t)((*(int32_t*)((int32_t*)UnBox(L_54, Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var))))))); goto IL_01ca; } IL_01b5: { RuntimeObject * L_55 = V_11; if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_55, Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_il2cpp_TypeInfo_var))) { goto IL_0253; } } IL_01c1: { RuntimeObject * L_56 = V_11; V_12 = ((*(int64_t*)((int64_t*)UnBox(L_56, Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_il2cpp_TypeInfo_var)))); } IL_01ca: { bool L_57 = V_6; if (!L_57) { goto IL_01dc; } } IL_01ce: { int64_t L_58 = V_12; int64_t L_59 = V_12; if (((int64_t)((int64_t)L_58&(int64_t)((int64_t)il2cpp_codegen_subtract((int64_t)L_59, (int64_t)(((int64_t)((int64_t)1)))))))) { goto IL_0253; } } IL_01d8: { int64_t L_60 = V_12; if (!L_60) { goto IL_0253; } } IL_01dc: { StringBuilder_t * L_61 = __this->get_sb_5(); NullCheck(L_61); StringBuilder_t * L_62 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_61, _stringLiteralD9907347838493529221F1324618B317C4C431B3, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_63 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); String_t* L_64 = Int64_ToString_mB73201579D1D4BC868EC9BC901B2812AC4B90517((int64_t*)(&V_12), _stringLiteral11F6AD8EC52A2984ABAAFD7C3B516503785C2072, L_63, /*hidden argument*/NULL); NullCheck(L_62); StringBuilder_t * L_65 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_62, L_64, /*hidden argument*/NULL); NullCheck(L_65); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_65, _stringLiteral2ACE62C1BEFA19E3EA37DD52BE9F6D508C5163E6, /*hidden argument*/NULL); StringBuilder_t * L_66 = __this->get_sb_5(); Type_t * L_67 = V_5; NullCheck(L_67); String_t* L_68 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_67); FieldInfo_t * L_69 = V_10; NullCheck(L_69); String_t* L_70 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_69); String_t* L_71 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(L_68, _stringLiteral3A52CE780950D4D969792A2559CD519D7EE8C727, L_70, /*hidden argument*/NULL); FieldInfo_t * L_72 = V_10; NullCheck(L_72); String_t* L_73 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_72); ManifestBuilder_WriteMessageAttrib_m41F740A687F6D00B1D52FDA78B5D22052B587027(__this, L_66, _stringLiteral37745ED7A0F005FB14522C5CC7C1BA3D9E0DF579, L_71, L_73, /*hidden argument*/NULL); StringBuilder_t * L_74 = __this->get_sb_5(); NullCheck(L_74); StringBuilder_t * L_75 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_74, _stringLiteral537FA6E787490E9ECBA018A19D88D636EEE975E6, /*hidden argument*/NULL); NullCheck(L_75); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_75, /*hidden argument*/NULL); } IL_0253: { int32_t L_76 = V_9; V_9 = ((int32_t)il2cpp_codegen_add((int32_t)L_76, (int32_t)1)); } IL_0259: { int32_t L_77 = V_9; FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* L_78 = V_8; NullCheck(L_78); if ((((int32_t)L_77) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_78)->max_length))))))) { goto IL_0189; } } IL_0264: { StringBuilder_t * L_79 = __this->get_sb_5(); NullCheck(L_79); StringBuilder_t * L_80 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_79, _stringLiteral29E08777F0011BC04150872BBFFF5534D39661D5, /*hidden argument*/NULL); String_t* L_81 = V_7; NullCheck(L_80); StringBuilder_t * L_82 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_80, L_81, /*hidden argument*/NULL); NullCheck(L_82); StringBuilder_t * L_83 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_82, _stringLiteral091385BE99B45F459A231582D583EC9F3FA3D194, /*hidden argument*/NULL); NullCheck(L_83); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_83, /*hidden argument*/NULL); } IL_028b: { bool L_84 = Enumerator_MoveNext_m80DDFE666F71F21BC6B8437E64F6D18DF9D7F695((Enumerator_tABA216358668DD188BBA6A59F0C67AE9AF312CD4 *)(&V_4), /*hidden argument*/Enumerator_MoveNext_m80DDFE666F71F21BC6B8437E64F6D18DF9D7F695_RuntimeMethod_var); if (L_84) { goto IL_0102; } } IL_0297: { IL2CPP_LEAVE(0x2A7, FINALLY_0299); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0299; } FINALLY_0299: { // begin finally (depth: 1) Enumerator_Dispose_mD561B0A07FD84F60ECE232D9CAF7A6101C84485B((Enumerator_tABA216358668DD188BBA6A59F0C67AE9AF312CD4 *)(&V_4), /*hidden argument*/Enumerator_Dispose_mD561B0A07FD84F60ECE232D9CAF7A6101C84485B_RuntimeMethod_var); IL2CPP_END_FINALLY(665) } // end finally (depth: 1) IL2CPP_CLEANUP(665) { IL2CPP_JUMP_TBL(0x2A7, IL_02a7) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_02a7: { StringBuilder_t * L_85 = __this->get_sb_5(); NullCheck(L_85); StringBuilder_t * L_86 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_85, _stringLiteralD374C5B32FDB6AB9A377C21A1496F0AE025350E2, /*hidden argument*/NULL); NullCheck(L_86); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_86, /*hidden argument*/NULL); } IL_02bd: { StringBuilder_t * L_87 = __this->get_sb_5(); NullCheck(L_87); StringBuilder_t * L_88 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_87, _stringLiteral0BC766E82DC8732F2E4596DFFB3069663F7E71C6, /*hidden argument*/NULL); NullCheck(L_88); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_88, /*hidden argument*/NULL); Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_89 = __this->get_opcodeTab_0(); NullCheck(L_89); KeyCollection_t2F25BAF319A40DA5241F076B74BB90B72F16822F * L_90 = Dictionary_2_get_Keys_m7B7C3AFFC85AC47452A738673E646AA602D63CA1(L_89, /*hidden argument*/Dictionary_2_get_Keys_m7B7C3AFFC85AC47452A738673E646AA602D63CA1_RuntimeMethod_var); List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * L_91 = (List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 *)il2cpp_codegen_object_new(List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226_il2cpp_TypeInfo_var); List_1__ctor_m262B3A833A8A33F720DDF70DABD4C455423A6797(L_91, L_90, /*hidden argument*/List_1__ctor_m262B3A833A8A33F720DDF70DABD4C455423A6797_RuntimeMethod_var); List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * L_92 = L_91; NullCheck(L_92); List_1_Sort_m723A6BEBAB430277CD79C8BD7D63DEF94E0BBB0A(L_92, /*hidden argument*/List_1_Sort_m723A6BEBAB430277CD79C8BD7D63DEF94E0BBB0A_RuntimeMethod_var); NullCheck(L_92); Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 L_93 = List_1_GetEnumerator_mE721B3C5E137DCDB408BE05CA472EECBAAAA418A(L_92, /*hidden argument*/List_1_GetEnumerator_mE721B3C5E137DCDB408BE05CA472EECBAAAA418A_RuntimeMethod_var); V_2 = L_93; } IL_02ef: try { // begin try (depth: 1) { goto IL_0350; } IL_02f1: { int32_t L_94 = Enumerator_get_Current_m219EC3BCCD8CF3A474AD0C4DBA55EB9B74C9F89C_inline((Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 *)(&V_2), /*hidden argument*/Enumerator_get_Current_m219EC3BCCD8CF3A474AD0C4DBA55EB9B74C9F89C_RuntimeMethod_var); V_13 = L_94; StringBuilder_t * L_95 = __this->get_sb_5(); NullCheck(L_95); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_95, _stringLiteral75EA75BBC43C03B2DD69090F5F554278D5BA0FFF, /*hidden argument*/NULL); StringBuilder_t * L_96 = __this->get_sb_5(); Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_97 = __this->get_opcodeTab_0(); int32_t L_98 = V_13; NullCheck(L_97); String_t* L_99 = Dictionary_2_get_Item_m832206501573309C2C9C1E4F96AAC39AACE24906(L_97, L_98, /*hidden argument*/Dictionary_2_get_Item_m832206501573309C2C9C1E4F96AAC39AACE24906_RuntimeMethod_var); ManifestBuilder_WriteNameAndMessageAttribs_m444B282AD88FA3A63618C9E361B3B084642889D8(__this, L_96, _stringLiteralC6C4B89B8CCF0B9BD80A8AFD68F7708852262CAC, L_99, /*hidden argument*/NULL); StringBuilder_t * L_100 = __this->get_sb_5(); NullCheck(L_100); StringBuilder_t * L_101 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_100, _stringLiteral39436FAE619E1025F8D6B16E87866B2D0A206B84, /*hidden argument*/NULL); int32_t L_102 = V_13; NullCheck(L_101); StringBuilder_t * L_103 = StringBuilder_Append_m85874CFF9E4B152DB2A91936C6F2CA3E9B1EFF84(L_101, L_102, /*hidden argument*/NULL); NullCheck(L_103); StringBuilder_t * L_104 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_103, _stringLiteral36E743E4B92054AB6F0DA52D2B5F50ADE4B8D257, /*hidden argument*/NULL); NullCheck(L_104); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_104, /*hidden argument*/NULL); } IL_0350: { bool L_105 = Enumerator_MoveNext_m42C746E84C832B62E93536A47B4086F3A3AC6609((Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 *)(&V_2), /*hidden argument*/Enumerator_MoveNext_m42C746E84C832B62E93536A47B4086F3A3AC6609_RuntimeMethod_var); if (L_105) { goto IL_02f1; } } IL_0359: { IL2CPP_LEAVE(0x369, FINALLY_035b); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_035b; } FINALLY_035b: { // begin finally (depth: 1) Enumerator_Dispose_m902D0B2B4B4B589E6F3653D9CDB38E0AA97EBCF9((Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 *)(&V_2), /*hidden argument*/Enumerator_Dispose_m902D0B2B4B4B589E6F3653D9CDB38E0AA97EBCF9_RuntimeMethod_var); IL2CPP_END_FINALLY(859) } // end finally (depth: 1) IL2CPP_CLEANUP(859) { IL2CPP_JUMP_TBL(0x369, IL_0369) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0369: { StringBuilder_t * L_106 = __this->get_sb_5(); NullCheck(L_106); StringBuilder_t * L_107 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_106, _stringLiteral3FCE8FCB8E68DF5EB7FDC8994A85BB862F91A267, /*hidden argument*/NULL); NullCheck(L_107); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_107, /*hidden argument*/NULL); Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 * L_108 = __this->get_keywordTab_2(); if (!L_108) { goto IL_045c; } } { StringBuilder_t * L_109 = __this->get_sb_5(); NullCheck(L_109); StringBuilder_t * L_110 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_109, _stringLiteral6487A22F4D04C78C7FCE5351001A23F780A2376D, /*hidden argument*/NULL); NullCheck(L_110); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_110, /*hidden argument*/NULL); Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 * L_111 = __this->get_keywordTab_2(); NullCheck(L_111); KeyCollection_t03F00DD1AC4F92F5138CAB2CC1235582FD0B8B1D * L_112 = Dictionary_2_get_Keys_mC8A65C37A45462D5A68C0266A0CD49B92D4DDC41(L_111, /*hidden argument*/Dictionary_2_get_Keys_mC8A65C37A45462D5A68C0266A0CD49B92D4DDC41_RuntimeMethod_var); List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8 * L_113 = (List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8 *)il2cpp_codegen_object_new(List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8_il2cpp_TypeInfo_var); List_1__ctor_m70ED87E74F77E9BA83922D9D503C21E2F1F3B20F(L_113, L_112, /*hidden argument*/List_1__ctor_m70ED87E74F77E9BA83922D9D503C21E2F1F3B20F_RuntimeMethod_var); List_1_t48CD17D5BA5410E17340B1CF898DAF8467E082E8 * L_114 = L_113; NullCheck(L_114); List_1_Sort_m9EC38ED6BC1D49988744517F589D90B3106537B8(L_114, /*hidden argument*/List_1_Sort_m9EC38ED6BC1D49988744517F589D90B3106537B8_RuntimeMethod_var); NullCheck(L_114); Enumerator_t46B8FA0EA6058B0B5871CE816B84FA8AAF77208B L_115 = List_1_GetEnumerator_m648284040ECC710040C8DE7B08CC0795512F92F7(L_114, /*hidden argument*/List_1_GetEnumerator_m648284040ECC710040C8DE7B08CC0795512F92F7_RuntimeMethod_var); V_14 = L_115; } IL_03bd: try { // begin try (depth: 1) { goto IL_042d; } IL_03bf: { uint64_t L_116 = Enumerator_get_Current_m7E3BB9CBEBA4C07616DE07B4857E30FD01D97267_inline((Enumerator_t46B8FA0EA6058B0B5871CE816B84FA8AAF77208B *)(&V_14), /*hidden argument*/Enumerator_get_Current_m7E3BB9CBEBA4C07616DE07B4857E30FD01D97267_RuntimeMethod_var); V_15 = L_116; StringBuilder_t * L_117 = __this->get_sb_5(); NullCheck(L_117); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_117, _stringLiteralD414CE398A897E5D390F2C8E42E198F74FC13AA9, /*hidden argument*/NULL); StringBuilder_t * L_118 = __this->get_sb_5(); Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 * L_119 = __this->get_keywordTab_2(); uint64_t L_120 = V_15; NullCheck(L_119); String_t* L_121 = Dictionary_2_get_Item_mD6D7D7470E8BA9FF2800804F740501BB3A0A3EB6(L_119, L_120, /*hidden argument*/Dictionary_2_get_Item_mD6D7D7470E8BA9FF2800804F740501BB3A0A3EB6_RuntimeMethod_var); ManifestBuilder_WriteNameAndMessageAttribs_m444B282AD88FA3A63618C9E361B3B084642889D8(__this, L_118, _stringLiteralA43AA2B3CCE8548368BBD79297BC5714364EA31A, L_121, /*hidden argument*/NULL); StringBuilder_t * L_122 = __this->get_sb_5(); NullCheck(L_122); StringBuilder_t * L_123 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_122, _stringLiteralDC7F6C369E736C6A7FA89F29B4BCEA35B31E7D49, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_124 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); String_t* L_125 = UInt64_ToString_mF6F94603E535C161BBD87AC747A1F403C274E8CD((uint64_t*)(&V_15), _stringLiteral11F6AD8EC52A2984ABAAFD7C3B516503785C2072, L_124, /*hidden argument*/NULL); NullCheck(L_123); StringBuilder_t * L_126 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_123, L_125, /*hidden argument*/NULL); NullCheck(L_126); StringBuilder_t * L_127 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_126, _stringLiteral36E743E4B92054AB6F0DA52D2B5F50ADE4B8D257, /*hidden argument*/NULL); NullCheck(L_127); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_127, /*hidden argument*/NULL); } IL_042d: { bool L_128 = Enumerator_MoveNext_m99D84216FD83EC374968B5CAEE8F276D2CDFBB34((Enumerator_t46B8FA0EA6058B0B5871CE816B84FA8AAF77208B *)(&V_14), /*hidden argument*/Enumerator_MoveNext_m99D84216FD83EC374968B5CAEE8F276D2CDFBB34_RuntimeMethod_var); if (L_128) { goto IL_03bf; } } IL_0436: { IL2CPP_LEAVE(0x446, FINALLY_0438); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0438; } FINALLY_0438: { // begin finally (depth: 1) Enumerator_Dispose_m97BA3C80D3997BCF6307DC3D96E2EBC4BEAA1FCE((Enumerator_t46B8FA0EA6058B0B5871CE816B84FA8AAF77208B *)(&V_14), /*hidden argument*/Enumerator_Dispose_m97BA3C80D3997BCF6307DC3D96E2EBC4BEAA1FCE_RuntimeMethod_var); IL2CPP_END_FINALLY(1080) } // end finally (depth: 1) IL2CPP_CLEANUP(1080) { IL2CPP_JUMP_TBL(0x446, IL_0446) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0446: { StringBuilder_t * L_129 = __this->get_sb_5(); NullCheck(L_129); StringBuilder_t * L_130 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_129, _stringLiteral4413EC32E60779835B3DAF7E5B512339751AC6EC, /*hidden argument*/NULL); NullCheck(L_130); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_130, /*hidden argument*/NULL); } IL_045c: { StringBuilder_t * L_131 = __this->get_sb_5(); NullCheck(L_131); StringBuilder_t * L_132 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_131, _stringLiteralDE44976BA6EF44944D75FEF09EA6237C375988CC, /*hidden argument*/NULL); NullCheck(L_132); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_132, /*hidden argument*/NULL); StringBuilder_t * L_133 = __this->get_sb_5(); StringBuilder_t * L_134 = __this->get_events_6(); NullCheck(L_133); StringBuilder_Append_mA1A063A1388A21C8EA011DBA7FC98C24C3EE3D65(L_133, L_134, /*hidden argument*/NULL); StringBuilder_t * L_135 = __this->get_sb_5(); NullCheck(L_135); StringBuilder_t * L_136 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_135, _stringLiteral127CEF0DEDB05FE8497C9C46AEC0AA3FBFF45D64, /*hidden argument*/NULL); NullCheck(L_136); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_136, /*hidden argument*/NULL); StringBuilder_t * L_137 = __this->get_sb_5(); NullCheck(L_137); StringBuilder_t * L_138 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_137, _stringLiteral5D62DB9F1221432B4705D0AA11A52FAB86E72F72, /*hidden argument*/NULL); NullCheck(L_138); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_138, /*hidden argument*/NULL); StringBuilder_t * L_139 = __this->get_templates_7(); NullCheck(L_139); int32_t L_140 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_139, /*hidden argument*/NULL); if ((((int32_t)L_140) <= ((int32_t)0))) { goto IL_04d2; } } { StringBuilder_t * L_141 = __this->get_sb_5(); StringBuilder_t * L_142 = __this->get_templates_7(); NullCheck(L_141); StringBuilder_Append_mA1A063A1388A21C8EA011DBA7FC98C24C3EE3D65(L_141, L_142, /*hidden argument*/NULL); goto IL_04e8; } IL_04d2: { StringBuilder_t * L_143 = __this->get_sb_5(); NullCheck(L_143); StringBuilder_t * L_144 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_143, _stringLiteralCBB9EF8F60C063233AE07733AA2EEB5BAC42813F, /*hidden argument*/NULL); NullCheck(L_144); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_144, /*hidden argument*/NULL); } IL_04e8: { StringBuilder_t * L_145 = __this->get_sb_5(); NullCheck(L_145); StringBuilder_t * L_146 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_145, _stringLiteralBCE467B40131291712BF0D977BF396E4DE31975E, /*hidden argument*/NULL); NullCheck(L_146); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_146, /*hidden argument*/NULL); StringBuilder_t * L_147 = __this->get_sb_5(); NullCheck(L_147); StringBuilder_t * L_148 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_147, _stringLiteral4A0B9F9010B567B650A074217E5FD09037275F29, /*hidden argument*/NULL); NullCheck(L_148); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_148, /*hidden argument*/NULL); StringBuilder_t * L_149 = __this->get_sb_5(); NullCheck(L_149); StringBuilder_t * L_150 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_149, _stringLiteral8A3D3E1BBAE5638D4FAC221C64332EF3B633E689, /*hidden argument*/NULL); NullCheck(L_150); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_150, /*hidden argument*/NULL); StringBuilder_t * L_151 = __this->get_sb_5(); NullCheck(L_151); StringBuilder_t * L_152 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_151, _stringLiteral2A650D754943CF220D5227594CAA19A8331C7A8B, /*hidden argument*/NULL); NullCheck(L_152); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_152, /*hidden argument*/NULL); StringBuilder_t * L_153 = __this->get_sb_5(); NullCheck(L_153); StringBuilder_t * L_154 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_153, _stringLiteralD13D71939A7725E8BBC03792041441B834A48F4F, /*hidden argument*/NULL); NullCheck(L_154); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_154, /*hidden argument*/NULL); V_0 = (List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 *)NULL; ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF * L_155 = __this->get_resources_8(); if (!L_155) { goto IL_0578; } } { int32_t L_156 = __this->get_flags_9(); if (!((int32_t)((int32_t)L_156&(int32_t)2))) { goto IL_0578; } } { ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF * L_157 = __this->get_resources_8(); List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 * L_158 = ManifestBuilder_GetSupportedCultures_mA8CBFCA3BDA40C88141E2DBC6F44186D0355BDFF(L_157, /*hidden argument*/NULL); V_0 = L_158; goto IL_0589; } IL_0578: { List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 * L_159 = (List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 *)il2cpp_codegen_object_new(List_1_t74F59DD36FAE0CFB087612565C42CAD359647832_il2cpp_TypeInfo_var); List_1__ctor_m13F938AD3F5447299ACE26EDDE5881D92FD230F7(L_159, /*hidden argument*/List_1__ctor_m13F938AD3F5447299ACE26EDDE5881D92FD230F7_RuntimeMethod_var); V_0 = L_159; List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 * L_160 = V_0; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_161 = CultureInfo_get_CurrentUICulture_mE132DCAF12CBF24E1FC0AF90BB6F33739F416487(/*hidden argument*/NULL); NullCheck(L_160); List_1_Add_m14F9260F6416415635961F291F3DE17A7031B928(L_160, L_161, /*hidden argument*/List_1_Add_m14F9260F6416415635961F291F3DE17A7031B928_RuntimeMethod_var); } IL_0589: { Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_162 = __this->get_stringTab_4(); NullCheck(L_162); KeyCollection_tC73654392B284B89334464107B696C9BD89776D9 * L_163 = Dictionary_2_get_Keys_mD09E59E7F822DA9EF3E9C8F013A6A92FC513E2EF(L_162, /*hidden argument*/Dictionary_2_get_Keys_mD09E59E7F822DA9EF3E9C8F013A6A92FC513E2EF_RuntimeMethod_var); NullCheck(L_163); int32_t L_164 = KeyCollection_get_Count_m9CE16805B512F963A724719B26A34799FFBA6083(L_163, /*hidden argument*/KeyCollection_get_Count_m9CE16805B512F963A724719B26A34799FFBA6083_RuntimeMethod_var); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_165 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)L_164); V_1 = L_165; Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_166 = __this->get_stringTab_4(); NullCheck(L_166); KeyCollection_tC73654392B284B89334464107B696C9BD89776D9 * L_167 = Dictionary_2_get_Keys_mD09E59E7F822DA9EF3E9C8F013A6A92FC513E2EF(L_166, /*hidden argument*/Dictionary_2_get_Keys_mD09E59E7F822DA9EF3E9C8F013A6A92FC513E2EF_RuntimeMethod_var); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_168 = V_1; NullCheck(L_167); KeyCollection_CopyTo_m26883818AD58E396524E6D7D7312AB0BCEEFE1CD(L_167, L_168, 0, /*hidden argument*/KeyCollection_CopyTo_m26883818AD58E396524E6D7D7312AB0BCEEFE1CD_RuntimeMethod_var); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_169 = V_1; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_170 = V_1; NullCheck(L_170); Comparer_1_tC8913CC0230510AB5B82485EAEF003DA0F4B9903 * L_171 = Comparer_1_get_Default_m5C03A395556B2D119E9A28F161C86E4B45946CD8(/*hidden argument*/Comparer_1_get_Default_m5C03A395556B2D119E9A28F161C86E4B45946CD8_RuntimeMethod_var); Comparer_1_tC8913CC0230510AB5B82485EAEF003DA0F4B9903 * L_172 = L_171; Comparison_1_tB59BE4B966B2646664AB777129F0D33B1AAA0E71 * L_173 = (Comparison_1_tB59BE4B966B2646664AB777129F0D33B1AAA0E71 *)il2cpp_codegen_object_new(Comparison_1_tB59BE4B966B2646664AB777129F0D33B1AAA0E71_il2cpp_TypeInfo_var); Comparison_1__ctor_m5E87814961C75D756B2DD39DFD4D893FA66D0127(L_173, L_172, (intptr_t)((intptr_t)GetVirtualMethodInfo(L_172, 6)), /*hidden argument*/Comparison_1__ctor_m5E87814961C75D756B2DD39DFD4D893FA66D0127_RuntimeMethod_var); ArraySortHelper_1_IntrospectiveSort_m1D4EC0AAC55CE220F789DD1BA1DA53566D253562(L_169, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_170)->max_length)))), L_173, /*hidden argument*/ArraySortHelper_1_IntrospectiveSort_m1D4EC0AAC55CE220F789DD1BA1DA53566D253562_RuntimeMethod_var); List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 * L_174 = V_0; NullCheck(L_174); Enumerator_tFAF40259E587A0C56311F14FEBDCF69C3916B5A9 L_175 = List_1_GetEnumerator_m3B7E28F98490CDAA255460E968EDF0A09147CE56(L_174, /*hidden argument*/List_1_GetEnumerator_m3B7E28F98490CDAA255460E968EDF0A09147CE56_RuntimeMethod_var); V_16 = L_175; } IL_05d4: try { // begin try (depth: 1) { goto IL_06b2; } IL_05d9: { CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_176 = Enumerator_get_Current_m21261DFF80ABB45B33C47E3DDE689068ACA20224_inline((Enumerator_tFAF40259E587A0C56311F14FEBDCF69C3916B5A9 *)(&V_16), /*hidden argument*/Enumerator_get_Current_m21261DFF80ABB45B33C47E3DDE689068ACA20224_RuntimeMethod_var); V_17 = L_176; StringBuilder_t * L_177 = __this->get_sb_5(); NullCheck(L_177); StringBuilder_t * L_178 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_177, _stringLiteralB58F6A540CFAC225528E9A1911C79E6FB7C59D11, /*hidden argument*/NULL); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_179 = V_17; NullCheck(L_179); String_t* L_180 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Globalization.CultureInfo::get_Name() */, L_179); NullCheck(L_178); StringBuilder_t * L_181 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_178, L_180, /*hidden argument*/NULL); NullCheck(L_181); StringBuilder_t * L_182 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_181, _stringLiteral28F19568A74E0032FBC866433CFF499CE8C2BCC1, /*hidden argument*/NULL); NullCheck(L_182); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_182, /*hidden argument*/NULL); StringBuilder_t * L_183 = __this->get_sb_5(); NullCheck(L_183); StringBuilder_t * L_184 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_183, _stringLiteral802D7D2166FA45354A05B0C0A5AD3C91B046F81E, /*hidden argument*/NULL); NullCheck(L_184); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_184, /*hidden argument*/NULL); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_185 = V_1; V_18 = L_185; V_9 = 0; goto IL_067e; } IL_062c: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_186 = V_18; int32_t L_187 = V_9; NullCheck(L_186); int32_t L_188 = L_187; String_t* L_189 = (L_186)->GetAt(static_cast<il2cpp_array_size_t>(L_188)); V_19 = L_189; String_t* L_190 = V_19; CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_191 = V_17; String_t* L_192 = ManifestBuilder_GetLocalizedMessage_mCB29634920B7747BA68803A846811B46A1538C66(__this, L_190, L_191, (bool)1, /*hidden argument*/NULL); V_20 = L_192; StringBuilder_t * L_193 = __this->get_sb_5(); NullCheck(L_193); StringBuilder_t * L_194 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_193, _stringLiteral8FDB330FBE0032F38CF465E208ABC5438BC1C01C, /*hidden argument*/NULL); String_t* L_195 = V_19; NullCheck(L_194); StringBuilder_t * L_196 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_194, L_195, /*hidden argument*/NULL); NullCheck(L_196); StringBuilder_t * L_197 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_196, _stringLiteral84CE8379C5F1EA339C5FB691E5BB4A06E10DC5FD, /*hidden argument*/NULL); String_t* L_198 = V_20; NullCheck(L_197); StringBuilder_t * L_199 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_197, L_198, /*hidden argument*/NULL); NullCheck(L_199); StringBuilder_t * L_200 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_199, _stringLiteral36E743E4B92054AB6F0DA52D2B5F50ADE4B8D257, /*hidden argument*/NULL); NullCheck(L_200); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_200, /*hidden argument*/NULL); int32_t L_201 = V_9; V_9 = ((int32_t)il2cpp_codegen_add((int32_t)L_201, (int32_t)1)); } IL_067e: { int32_t L_202 = V_9; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_203 = V_18; NullCheck(L_203); if ((((int32_t)L_202) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_203)->max_length))))))) { goto IL_062c; } } IL_0686: { StringBuilder_t * L_204 = __this->get_sb_5(); NullCheck(L_204); StringBuilder_t * L_205 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_204, _stringLiteralA0BBE710D1F301E54FA309EBEACF48130A9ECD04, /*hidden argument*/NULL); NullCheck(L_205); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_205, /*hidden argument*/NULL); StringBuilder_t * L_206 = __this->get_sb_5(); NullCheck(L_206); StringBuilder_t * L_207 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_206, _stringLiteralFC8E1F22C45AAC5385026D543B9E31E719C612D8, /*hidden argument*/NULL); NullCheck(L_207); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_207, /*hidden argument*/NULL); } IL_06b2: { bool L_208 = Enumerator_MoveNext_m7126593F0EC448BE693A0DB2D4ED1C94D18A65C6((Enumerator_tFAF40259E587A0C56311F14FEBDCF69C3916B5A9 *)(&V_16), /*hidden argument*/Enumerator_MoveNext_m7126593F0EC448BE693A0DB2D4ED1C94D18A65C6_RuntimeMethod_var); if (L_208) { goto IL_05d9; } } IL_06be: { IL2CPP_LEAVE(0x6CE, FINALLY_06c0); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_06c0; } FINALLY_06c0: { // begin finally (depth: 1) Enumerator_Dispose_m4F87E65CA1AC8F4D475B132D5AE6731193513B03((Enumerator_tFAF40259E587A0C56311F14FEBDCF69C3916B5A9 *)(&V_16), /*hidden argument*/Enumerator_Dispose_m4F87E65CA1AC8F4D475B132D5AE6731193513B03_RuntimeMethod_var); IL2CPP_END_FINALLY(1728) } // end finally (depth: 1) IL2CPP_CLEANUP(1728) { IL2CPP_JUMP_TBL(0x6CE, IL_06ce) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_06ce: { StringBuilder_t * L_209 = __this->get_sb_5(); NullCheck(L_209); StringBuilder_t * L_210 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_209, _stringLiteral48F5015F1ACFAB8D3581489DA0BBF59992135C3E, /*hidden argument*/NULL); NullCheck(L_210); StringBuilder_AppendLine_mB5B3F68726B05CD404C8C8D8F5A3D2A58FF16BB9(L_210, /*hidden argument*/NULL); StringBuilder_t * L_211 = __this->get_sb_5(); NullCheck(L_211); StringBuilder_AppendLine_mA2F79A5F2CAA91B9F7917C0EB2B381357A395609(L_211, _stringLiteralEE685442D8365096427B877EAA72FAE0ACF0E4AD, /*hidden argument*/NULL); StringBuilder_t * L_212 = __this->get_sb_5(); NullCheck(L_212); String_t* L_213 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_212); return L_213; } } // System.Void System.Diagnostics.Tracing.ManifestBuilder::WriteNameAndMessageAttribs(System.Text.StringBuilder,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ManifestBuilder_WriteNameAndMessageAttribs_m444B282AD88FA3A63618C9E361B3B084642889D8 (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, StringBuilder_t * ___stringBuilder0, String_t* ___elementName1, String_t* ___name2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ManifestBuilder_WriteNameAndMessageAttribs_m444B282AD88FA3A63618C9E361B3B084642889D8_MetadataUsageId); s_Il2CppMethodInitialized = true; } { StringBuilder_t * L_0 = ___stringBuilder0; NullCheck(L_0); StringBuilder_t * L_1 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_0, _stringLiteral6A5E638295EEC62AA4D935BF2B39E5AF8987E272, /*hidden argument*/NULL); String_t* L_2 = ___name2; NullCheck(L_1); StringBuilder_t * L_3 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_1, L_2, /*hidden argument*/NULL); NullCheck(L_3); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_3, _stringLiteral2ACE62C1BEFA19E3EA37DD52BE9F6D508C5163E6, /*hidden argument*/NULL); StringBuilder_t * L_4 = __this->get_sb_5(); String_t* L_5 = ___elementName1; String_t* L_6 = ___name2; String_t* L_7 = ___name2; ManifestBuilder_WriteMessageAttrib_m41F740A687F6D00B1D52FDA78B5D22052B587027(__this, L_4, L_5, L_6, L_7, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.ManifestBuilder::WriteMessageAttrib(System.Text.StringBuilder,System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ManifestBuilder_WriteMessageAttrib_m41F740A687F6D00B1D52FDA78B5D22052B587027 (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, StringBuilder_t * ___stringBuilder0, String_t* ___elementName1, String_t* ___name2, String_t* ___value3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ManifestBuilder_WriteMessageAttrib_m41F740A687F6D00B1D52FDA78B5D22052B587027_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; String_t* V_1 = NULL; String_t* V_2 = NULL; { String_t* L_0 = ___elementName1; String_t* L_1 = ___name2; String_t* L_2 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(L_0, _stringLiteral53A0ACFAD59379B3E050338BF9F23CFC172EE787, L_1, /*hidden argument*/NULL); V_0 = L_2; ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF * L_3 = __this->get_resources_8(); if (!L_3) { goto IL_002d; } } { ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF * L_4 = __this->get_resources_8(); String_t* L_5 = V_0; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_6 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); NullCheck(L_4); String_t* L_7 = VirtFuncInvoker2< String_t*, String_t*, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * >::Invoke(8 /* System.String System.Resources.ResourceManager::GetString(System.String,System.Globalization.CultureInfo) */, L_4, L_5, L_6); V_2 = L_7; String_t* L_8 = V_2; if (!L_8) { goto IL_002d; } } { String_t* L_9 = V_2; ___value3 = L_9; } IL_002d: { String_t* L_10 = ___value3; if (L_10) { goto IL_0032; } } { return; } IL_0032: { StringBuilder_t * L_11 = ___stringBuilder0; NullCheck(L_11); StringBuilder_t * L_12 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_11, _stringLiteral2FFC4249B83F05632C45203CCA17BE1CE49D7495, /*hidden argument*/NULL); String_t* L_13 = V_0; NullCheck(L_12); StringBuilder_t * L_14 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_12, L_13, /*hidden argument*/NULL); NullCheck(L_14); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_14, _stringLiteral1931755CE670F9620F26153490F473D6268A1311, /*hidden argument*/NULL); Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_15 = __this->get_stringTab_4(); String_t* L_16 = V_0; NullCheck(L_15); bool L_17 = Dictionary_2_TryGetValue_mACE6F295B868D8DD552A8F7D4ABA375F843BB13B(L_15, L_16, (String_t**)(&V_1), /*hidden argument*/Dictionary_2_TryGetValue_mACE6F295B868D8DD552A8F7D4ABA375F843BB13B_RuntimeMethod_var); if (!L_17) { goto IL_0084; } } { String_t* L_18 = V_1; String_t* L_19 = ___value3; NullCheck(L_18); bool L_20 = String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1(L_18, L_19, /*hidden argument*/NULL); if (L_20) { goto IL_0084; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_21 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_22 = L_21; String_t* L_23 = V_0; NullCheck(L_22); ArrayElementTypeCheck (L_22, L_23); (L_22)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_23); String_t* L_24 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteral413C755FA98C7F9008ECA6BE63D35368C4A1514F, L_22, /*hidden argument*/NULL); ManifestBuilder_ManifestError_mA178FBE087E34A3CC07873D32896191BF7C74A20(__this, L_24, (bool)1, /*hidden argument*/NULL); return; } IL_0084: { Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_25 = __this->get_stringTab_4(); String_t* L_26 = V_0; String_t* L_27 = ___value3; NullCheck(L_25); Dictionary_2_set_Item_m597918251624A4BF29104324490143CFCA659FAD(L_25, L_26, L_27, /*hidden argument*/Dictionary_2_set_Item_m597918251624A4BF29104324490143CFCA659FAD_RuntimeMethod_var); return; } } // System.String System.Diagnostics.Tracing.ManifestBuilder::GetLocalizedMessage(System.String,System.Globalization.CultureInfo,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ManifestBuilder_GetLocalizedMessage_mCB29634920B7747BA68803A846811B46A1538C66 (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, String_t* ___key0, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___ci1, bool ___etwFormat2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ManifestBuilder_GetLocalizedMessage_mCB29634920B7747BA68803A846811B46A1538C66_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; String_t* V_1 = NULL; String_t* V_2 = NULL; { V_0 = (String_t*)NULL; ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF * L_0 = __this->get_resources_8(); if (!L_0) { goto IL_0047; } } { ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF * L_1 = __this->get_resources_8(); String_t* L_2 = ___key0; CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_3 = ___ci1; NullCheck(L_1); String_t* L_4 = VirtFuncInvoker2< String_t*, String_t*, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * >::Invoke(8 /* System.String System.Resources.ResourceManager::GetString(System.String,System.Globalization.CultureInfo) */, L_1, L_2, L_3); V_1 = L_4; String_t* L_5 = V_1; if (!L_5) { goto IL_0047; } } { String_t* L_6 = V_1; V_0 = L_6; bool L_7 = ___etwFormat2; if (!L_7) { goto IL_0047; } } { String_t* L_8 = ___key0; NullCheck(L_8); bool L_9 = String_StartsWith_m7D468FB7C801D9C2DBEEEEC86F8BA8F4EC3243C1(L_8, _stringLiteralC03DF71F362B020D7ECA0433A7EAEDE62B82ABB5, /*hidden argument*/NULL); if (!L_9) { goto IL_0047; } } { String_t* L_10 = ___key0; NullCheck(_stringLiteralC03DF71F362B020D7ECA0433A7EAEDE62B82ABB5); int32_t L_11 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(_stringLiteralC03DF71F362B020D7ECA0433A7EAEDE62B82ABB5, /*hidden argument*/NULL); NullCheck(L_10); String_t* L_12 = String_Substring_m2C4AFF5E79DD8BADFD2DFBCF156BF728FBB8E1AE(L_10, L_11, /*hidden argument*/NULL); V_2 = L_12; String_t* L_13 = V_0; String_t* L_14 = V_2; String_t* L_15 = ManifestBuilder_TranslateToManifestConvention_m100A461415FF81C8254B2E763B5F45132A49D85C(__this, L_13, L_14, /*hidden argument*/NULL); V_0 = L_15; } IL_0047: { bool L_16 = ___etwFormat2; if (!L_16) { goto IL_005c; } } { String_t* L_17 = V_0; if (L_17) { goto IL_005c; } } { Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_18 = __this->get_stringTab_4(); String_t* L_19 = ___key0; NullCheck(L_18); Dictionary_2_TryGetValue_mACE6F295B868D8DD552A8F7D4ABA375F843BB13B(L_18, L_19, (String_t**)(&V_0), /*hidden argument*/Dictionary_2_TryGetValue_mACE6F295B868D8DD552A8F7D4ABA375F843BB13B_RuntimeMethod_var); } IL_005c: { String_t* L_20 = V_0; return L_20; } } // System.Collections.Generic.List`1<System.Globalization.CultureInfo> System.Diagnostics.Tracing.ManifestBuilder::GetSupportedCultures(System.Resources.ResourceManager) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 * ManifestBuilder_GetSupportedCultures_mA8CBFCA3BDA40C88141E2DBC6F44186D0355BDFF (ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF * ___resources0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ManifestBuilder_GetSupportedCultures_mA8CBFCA3BDA40C88141E2DBC6F44186D0355BDFF_MetadataUsageId); s_Il2CppMethodInitialized = true; } List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 * V_0 = NULL; CultureInfoU5BU5D_t5ABD12F26C65E5F6F3E7916401EAA322BA2BDF31* V_1 = NULL; int32_t V_2 = 0; CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * V_3 = NULL; { List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 * L_0 = (List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 *)il2cpp_codegen_object_new(List_1_t74F59DD36FAE0CFB087612565C42CAD359647832_il2cpp_TypeInfo_var); List_1__ctor_m13F938AD3F5447299ACE26EDDE5881D92FD230F7(L_0, /*hidden argument*/List_1__ctor_m13F938AD3F5447299ACE26EDDE5881D92FD230F7_RuntimeMethod_var); V_0 = L_0; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfoU5BU5D_t5ABD12F26C65E5F6F3E7916401EAA322BA2BDF31* L_1 = CultureInfo_GetCultures_mF06FF1D19C1F6626A89ECAEEC152194FEE7EDEC6(2, /*hidden argument*/NULL); V_1 = L_1; V_2 = 0; goto IL_002b; } IL_0011: { CultureInfoU5BU5D_t5ABD12F26C65E5F6F3E7916401EAA322BA2BDF31* L_2 = V_1; int32_t L_3 = V_2; NullCheck(L_2); int32_t L_4 = L_3; CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4)); V_3 = L_5; ResourceManager_t966CE0B6B59F36DD8797BDC20B5EEFACE0A883FF * L_6 = ___resources0; CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_7 = V_3; NullCheck(L_6); ResourceSet_t10641C682C1DFE03D88203324E6C4846273AF3EE * L_8 = VirtFuncInvoker3< ResourceSet_t10641C682C1DFE03D88203324E6C4846273AF3EE *, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F *, bool, bool >::Invoke(6 /* System.Resources.ResourceSet System.Resources.ResourceManager::GetResourceSet(System.Globalization.CultureInfo,System.Boolean,System.Boolean) */, L_6, L_7, (bool)1, (bool)0); if (!L_8) { goto IL_0027; } } { List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 * L_9 = V_0; CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_10 = V_3; NullCheck(L_9); List_1_Add_m14F9260F6416415635961F291F3DE17A7031B928(L_9, L_10, /*hidden argument*/List_1_Add_m14F9260F6416415635961F291F3DE17A7031B928_RuntimeMethod_var); } IL_0027: { int32_t L_11 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)); } IL_002b: { int32_t L_12 = V_2; CultureInfoU5BU5D_t5ABD12F26C65E5F6F3E7916401EAA322BA2BDF31* L_13 = V_1; NullCheck(L_13); if ((((int32_t)L_12) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_13)->max_length))))))) { goto IL_0011; } } { List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 * L_14 = V_0; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_15 = CultureInfo_get_CurrentUICulture_mE132DCAF12CBF24E1FC0AF90BB6F33739F416487(/*hidden argument*/NULL); NullCheck(L_14); bool L_16 = List_1_Contains_m01102404F7F955992DC1CD877656AFE304FF7DFF(L_14, L_15, /*hidden argument*/List_1_Contains_m01102404F7F955992DC1CD877656AFE304FF7DFF_RuntimeMethod_var); if (L_16) { goto IL_004a; } } { List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 * L_17 = V_0; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_18 = CultureInfo_get_CurrentUICulture_mE132DCAF12CBF24E1FC0AF90BB6F33739F416487(/*hidden argument*/NULL); NullCheck(L_17); List_1_Insert_m1E03FC53B36149C842A2684B9A3D7791714F8E11(L_17, 0, L_18, /*hidden argument*/List_1_Insert_m1E03FC53B36149C842A2684B9A3D7791714F8E11_RuntimeMethod_var); } IL_004a: { List_1_t74F59DD36FAE0CFB087612565C42CAD359647832 * L_19 = V_0; return L_19; } } // System.String System.Diagnostics.Tracing.ManifestBuilder::GetLevelName(System.Diagnostics.Tracing.EventLevel) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ManifestBuilder_GetLevelName_mDE24AE4C28BD5EF3FE4D29D3731F19B050C6D1E2 (int32_t ___level0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ManifestBuilder_GetLevelName_mDE24AE4C28BD5EF3FE4D29D3731F19B050C6D1E2_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* G_B3_0 = NULL; { int32_t L_0 = ___level0; if ((((int32_t)L_0) >= ((int32_t)((int32_t)16)))) { goto IL_000c; } } { G_B3_0 = _stringLiteralCEBF554E26A3CEE7CC46716C76105474CD19B3E4; goto IL_0011; } IL_000c: { G_B3_0 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709; } IL_0011: { RuntimeObject * L_1 = Box(EventLevel_t647BA4EA78B2B108075D614A19C8C2204644790E_il2cpp_TypeInfo_var, (&___level0)); NullCheck(L_1); String_t* L_2 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_1); ___level0 = *(int32_t*)UnBox(L_1); String_t* L_3 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(G_B3_0, L_2, /*hidden argument*/NULL); return L_3; } } // System.String System.Diagnostics.Tracing.ManifestBuilder::GetTaskName(System.Diagnostics.Tracing.EventTask,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ManifestBuilder_GetTaskName_mA4295AA0FF9A15046B6C696F6C33265BA44CC104 (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, int32_t ___task0, String_t* ___eventName1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ManifestBuilder_GetTaskName_mA4295AA0FF9A15046B6C696F6C33265BA44CC104_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; String_t* V_1 = NULL; { int32_t L_0 = ___task0; if (L_0) { goto IL_0009; } } { return _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709; } IL_0009: { Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_1 = __this->get_taskTab_1(); if (L_1) { goto IL_001c; } } { Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_2 = (Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C *)il2cpp_codegen_object_new(Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C_il2cpp_TypeInfo_var); Dictionary_2__ctor_m6C6B59C12BD62E890CCF5AF0366E3DA0F29ADE6C(L_2, /*hidden argument*/Dictionary_2__ctor_m6C6B59C12BD62E890CCF5AF0366E3DA0F29ADE6C_RuntimeMethod_var); __this->set_taskTab_1(L_2); } IL_001c: { Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_3 = __this->get_taskTab_1(); int32_t L_4 = ___task0; NullCheck(L_3); bool L_5 = Dictionary_2_TryGetValue_m581BE284F430A27B34743D8438ADB091C70000FD(L_3, L_4, (String_t**)(&V_0), /*hidden argument*/Dictionary_2_TryGetValue_m581BE284F430A27B34743D8438ADB091C70000FD_RuntimeMethod_var); if (L_5) { goto IL_003d; } } { Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_6 = __this->get_taskTab_1(); int32_t L_7 = ___task0; String_t* L_8 = ___eventName1; String_t* L_9 = L_8; V_1 = L_9; NullCheck(L_6); Dictionary_2_set_Item_m031E42C2E9C7C3EA36FF7FD2E6155B07C5BD268C(L_6, L_7, L_9, /*hidden argument*/Dictionary_2_set_Item_m031E42C2E9C7C3EA36FF7FD2E6155B07C5BD268C_RuntimeMethod_var); String_t* L_10 = V_1; V_0 = L_10; } IL_003d: { String_t* L_11 = V_0; return L_11; } } // System.String System.Diagnostics.Tracing.ManifestBuilder::GetOpcodeName(System.Diagnostics.Tracing.EventOpcode,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ManifestBuilder_GetOpcodeName_m612EBC12C1DB95126B4335BDE9AB4EF9671CDA59 (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, int32_t ___opcode0, String_t* ___eventName1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ManifestBuilder_GetOpcodeName_m612EBC12C1DB95126B4335BDE9AB4EF9671CDA59_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { int32_t L_0 = ___opcode0; switch (L_0) { case 0: { goto IL_0038; } case 1: { goto IL_003e; } case 2: { goto IL_0044; } case 3: { goto IL_004a; } case 4: { goto IL_0050; } case 5: { goto IL_0056; } case 6: { goto IL_005c; } case 7: { goto IL_0062; } case 8: { goto IL_0068; } case 9: { goto IL_006e; } } } { int32_t L_1 = ___opcode0; if ((((int32_t)L_1) == ((int32_t)((int32_t)240)))) { goto IL_0074; } } { goto IL_007a; } IL_0038: { return _stringLiteral638518959E22A221840EC2702E630739E7C894A7; } IL_003e: { return _stringLiteral79B5F16116B55D562F8C8AAC5999A42980B75EF9; } IL_0044: { return _stringLiteralB3B32B341E40B76CC0EF6CAC3FFCE579FE71E2EB; } IL_004a: { return _stringLiteralCA551563A6650D643771A8BD5C569178A0E5DF92; } IL_0050: { return _stringLiteralF36D79A7BB78E70D214739C23AF51CC2649218FE; } IL_0056: { return _stringLiteralAD5B8BD8A78CB6141D85230014C26A676FF8027A; } IL_005c: { return _stringLiteral46FC8621F192530C562CAF208362AAC0952C6C2D; } IL_0062: { return _stringLiteral5B86F346A69763593C28460072B23948C6DEC48A; } IL_0068: { return _stringLiteral7484F2EE547B8EFBE7C40054E81DCCFDA1946FC2; } IL_006e: { return _stringLiteral131578187CBC956EA467DE57A93EE3388D7911FA; } IL_0074: { return _stringLiteral58198E1B107E9130D8D66259C1E5FDCA0B9AF5A0; } IL_007a: { Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_2 = __this->get_opcodeTab_0(); if (!L_2) { goto IL_0092; } } { Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_3 = __this->get_opcodeTab_0(); int32_t L_4 = ___opcode0; NullCheck(L_3); bool L_5 = Dictionary_2_TryGetValue_m581BE284F430A27B34743D8438ADB091C70000FD(L_3, L_4, (String_t**)(&V_0), /*hidden argument*/Dictionary_2_TryGetValue_m581BE284F430A27B34743D8438ADB091C70000FD_RuntimeMethod_var); if (L_5) { goto IL_00b8; } } IL_0092: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_7 = L_6; int32_t L_8 = ___opcode0; int32_t L_9 = L_8; RuntimeObject * L_10 = Box(EventOpcode_t52B1CBEC2A4C6FDDC00A61ECF12BF584A5146C44_il2cpp_TypeInfo_var, &L_9); NullCheck(L_7); ArrayElementTypeCheck (L_7, L_10); (L_7)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_10); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_11 = L_7; String_t* L_12 = ___eventName1; NullCheck(L_11); ArrayElementTypeCheck (L_11, L_12); (L_11)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_12); String_t* L_13 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteral726807A56BF9D4443B427982301C16E669EFB30A, L_11, /*hidden argument*/NULL); ManifestBuilder_ManifestError_mA178FBE087E34A3CC07873D32896191BF7C74A20(__this, L_13, (bool)1, /*hidden argument*/NULL); V_0 = (String_t*)NULL; } IL_00b8: { String_t* L_14 = V_0; return L_14; } } // System.String System.Diagnostics.Tracing.ManifestBuilder::GetKeywords(System.UInt64,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ManifestBuilder_GetKeywords_m5EA6BEBFD8B95C29E7079DF929E551442315D3B0 (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, uint64_t ___keywords0, String_t* ___eventName1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ManifestBuilder_GetKeywords_m5EA6BEBFD8B95C29E7079DF929E551442315D3B0_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; uint64_t V_1 = 0; String_t* V_2 = NULL; { V_0 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709; V_1 = (((int64_t)((int64_t)1))); goto IL_00ac; } IL_000e: { uint64_t L_0 = ___keywords0; uint64_t L_1 = V_1; if (!((int64_t)((int64_t)L_0&(int64_t)L_1))) { goto IL_00a8; } } { V_2 = (String_t*)NULL; Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 * L_2 = __this->get_keywordTab_2(); if (!L_2) { goto IL_0030; } } { Dictionary_2_tA0E200FAB662D54E654E440E09CBBCC17D831833 * L_3 = __this->get_keywordTab_2(); uint64_t L_4 = V_1; NullCheck(L_3); bool L_5 = Dictionary_2_TryGetValue_m77A3B26E0EDFCCEDB1FCBB4ABEF7C47F146296A8(L_3, L_4, (String_t**)(&V_2), /*hidden argument*/Dictionary_2_TryGetValue_m77A3B26E0EDFCCEDB1FCBB4ABEF7C47F146296A8_RuntimeMethod_var); if (L_5) { goto IL_0042; } } IL_0030: { uint64_t L_6 = V_1; if ((!(((uint64_t)L_6) >= ((uint64_t)((int64_t)281474976710656LL))))) { goto IL_0042; } } { String_t* L_7 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); V_2 = L_7; } IL_0042: { String_t* L_8 = V_2; if (L_8) { goto IL_0084; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_9 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_10 = L_9; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_11 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL); String_t* L_12 = UInt64_ToString_mF6F94603E535C161BBD87AC747A1F403C274E8CD((uint64_t*)(&V_1), _stringLiteral11F6AD8EC52A2984ABAAFD7C3B516503785C2072, L_11, /*hidden argument*/NULL); String_t* L_13 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteral1A349DCC540A3978584510D982075F838B17CD6D, L_12, /*hidden argument*/NULL); NullCheck(L_10); ArrayElementTypeCheck (L_10, L_13); (L_10)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_13); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_14 = L_10; String_t* L_15 = ___eventName1; NullCheck(L_14); ArrayElementTypeCheck (L_14, L_15); (L_14)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_15); String_t* L_16 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralCE7B9CC2EBDA4298D48848DB493F475D87267538, L_14, /*hidden argument*/NULL); ManifestBuilder_ManifestError_mA178FBE087E34A3CC07873D32896191BF7C74A20(__this, L_16, (bool)1, /*hidden argument*/NULL); String_t* L_17 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); V_2 = L_17; } IL_0084: { String_t* L_18 = V_0; NullCheck(L_18); int32_t L_19 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_18, /*hidden argument*/NULL); if (!L_19) { goto IL_00a0; } } { String_t* L_20 = V_2; NullCheck(L_20); int32_t L_21 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_20, /*hidden argument*/NULL); if (!L_21) { goto IL_00a0; } } { String_t* L_22 = V_0; String_t* L_23 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_22, _stringLiteralB858CB282617FB0956D960215C8E84D1CCF909C6, /*hidden argument*/NULL); V_0 = L_23; } IL_00a0: { String_t* L_24 = V_0; String_t* L_25 = V_2; String_t* L_26 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_24, L_25, /*hidden argument*/NULL); V_0 = L_26; } IL_00a8: { uint64_t L_27 = V_1; V_1 = ((int64_t)((int64_t)L_27<<(int32_t)1)); } IL_00ac: { uint64_t L_28 = V_1; if (L_28) { goto IL_000e; } } { String_t* L_29 = V_0; return L_29; } } // System.String System.Diagnostics.Tracing.ManifestBuilder::GetTypeName(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ManifestBuilder_GetTypeName_m4148EBA98880502C3C7836AB3A99230DEC3AB71C (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, Type_t * ___type0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ManifestBuilder_GetTypeName_m4148EBA98880502C3C7836AB3A99230DEC3AB71C_MetadataUsageId); s_Il2CppMethodInitialized = true; } FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* V_0 = NULL; int32_t V_1 = 0; { Type_t * L_0 = ___type0; bool L_1 = ReflectionExtensions_IsEnum_m2930BB5E455993D6A599EA4F61DFB9859099EDA6(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_002f; } } { Type_t * L_2 = ___type0; NullCheck(L_2); FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* L_3 = VirtFuncInvoker1< FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE*, int32_t >::Invoke(43 /* System.Reflection.FieldInfo[] System.Type::GetFields(System.Reflection.BindingFlags) */, L_2, ((int32_t)52)); V_0 = L_3; FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* L_4 = V_0; NullCheck(L_4); int32_t L_5 = 0; FieldInfo_t * L_6 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); NullCheck(L_6); Type_t * L_7 = VirtFuncInvoker0< Type_t * >::Invoke(18 /* System.Type System.Reflection.FieldInfo::get_FieldType() */, L_6); String_t* L_8 = ManifestBuilder_GetTypeName_m4148EBA98880502C3C7836AB3A99230DEC3AB71C(__this, L_7, /*hidden argument*/NULL); NullCheck(L_8); String_t* L_9 = String_Replace_m970DFB0A280952FA7D3BA20AB7A8FB9F80CF6470(L_8, _stringLiteralB62500F9D8FC0619B393A42DBEC55BB8483ABC57, _stringLiteralC9EE751B234DF9F0CB1CEF58C3AFAABDFB33981E, /*hidden argument*/NULL); return L_9; } IL_002f: { Type_t * L_10 = ___type0; int32_t L_11 = ReflectionExtensions_GetTypeCode_m55D509078B5566EA871D7C211EDE34AE45661BBD(L_10, /*hidden argument*/NULL); V_1 = L_11; int32_t L_12 = V_1; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)3))) { case 0: { goto IL_0080; } case 1: { goto IL_008c; } case 2: { goto IL_009e; } case 3: { goto IL_0086; } case 4: { goto IL_00a4; } case 5: { goto IL_008c; } case 6: { goto IL_00aa; } case 7: { goto IL_0092; } case 8: { goto IL_00b0; } case 9: { goto IL_0098; } case 10: { goto IL_00bc; } case 11: { goto IL_00c2; } case 12: { goto IL_00ce; } case 13: { goto IL_00c8; } case 14: { goto IL_00ce; } case 15: { goto IL_00b6; } } } { goto IL_00ce; } IL_0080: { return _stringLiteral520AC5A5E2EF375F995F93F5918F257B8FAF931D; } IL_0086: { return _stringLiteralBA607182F71CA659F7E8466B7873570E4FA6634B; } IL_008c: { return _stringLiteral14D5E1E4EC2C7FF41DD490D67B71A73D0E31EC7C; } IL_0092: { return _stringLiteral4ABDA3BCB98FB7AFAF8979248C36F08684C3BB8A; } IL_0098: { return _stringLiteralECDCCD0C81DE0F1EC6BDFC3DA95A27B4829ED79F; } IL_009e: { return _stringLiteral7E9E8E82E00EC8A8E359F0917FB928F553C24E27; } IL_00a4: { return _stringLiteral61E97FC629B02A33804B57C172EC3E592ED0AC45; } IL_00aa: { return _stringLiteral96E8AEE74A6EC7CE65523A64AD67939E0E62C9D9; } IL_00b0: { return _stringLiteral18446046809DCDB1419BD8EAE6DB7987B7EB8EC2; } IL_00b6: { return _stringLiteralE0754E6E0A769DC094BEE20EE9DBD4019B26EF24; } IL_00bc: { return _stringLiteralB36FB26CFC4E8B0E76B4BEA00718F8C941751224; } IL_00c2: { return _stringLiteral3166B69F57AF10EE9E8F5D547C4119925D426417; } IL_00c8: { return _stringLiteral06B20A4FFFD49C2B41EE9A25F542756DD8B7FA41; } IL_00ce: { Type_t * L_13 = ___type0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (Guid_t_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_14, /*hidden argument*/NULL); bool L_16 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_13, L_15, /*hidden argument*/NULL); if (!L_16) { goto IL_00e6; } } { return _stringLiteralECE29405C121243BF01F6D1D079D72CB8DF9CDD9; } IL_00e6: { Type_t * L_17 = ___type0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_18 = { reinterpret_cast<intptr_t> (IntPtr_t_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_19 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_18, /*hidden argument*/NULL); bool L_20 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_17, L_19, /*hidden argument*/NULL); if (!L_20) { goto IL_00fe; } } { return _stringLiteralAF349E9E9FCE74123ED62EF0042ACD5FFEB3DC9B; } IL_00fe: { Type_t * L_21 = ___type0; NullCheck(L_21); bool L_22 = Type_get_IsArray_m0B4E20F93B1B34C0B5C4B089F543D1AA338DC9FE(L_21, /*hidden argument*/NULL); if (L_22) { goto IL_010e; } } { Type_t * L_23 = ___type0; NullCheck(L_23); bool L_24 = Type_get_IsPointer_mF823CB662C6A04674589640771E6AD6B71093E57(L_23, /*hidden argument*/NULL); if (!L_24) { goto IL_012b; } } IL_010e: { Type_t * L_25 = ___type0; NullCheck(L_25); Type_t * L_26 = VirtFuncInvoker0< Type_t * >::Invoke(97 /* System.Type System.Type::GetElementType() */, L_25); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_27 = { reinterpret_cast<intptr_t> (Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_28 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_27, /*hidden argument*/NULL); bool L_29 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_26, L_28, /*hidden argument*/NULL); if (!L_29) { goto IL_012b; } } { return _stringLiteral9DA0D1E72ACE723870EBF4B28BFA1CCF33B6DDE9; } IL_012b: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_30 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_31 = L_30; Type_t * L_32 = ___type0; NullCheck(L_32); String_t* L_33 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_32); NullCheck(L_31); ArrayElementTypeCheck (L_31, L_33); (L_31)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_33); String_t* L_34 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteral64F61EC8D3BCC739D1468635A136D8F9A052B539, L_31, /*hidden argument*/NULL); ManifestBuilder_ManifestError_mA178FBE087E34A3CC07873D32896191BF7C74A20(__this, L_34, (bool)1, /*hidden argument*/NULL); String_t* L_35 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return L_35; } } // System.Void System.Diagnostics.Tracing.ManifestBuilder::UpdateStringBuilder(System.Text.StringBuilder&,System.String,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ManifestBuilder_UpdateStringBuilder_m1FFC9292B0D91B441594C31E4F3373062821782E (StringBuilder_t ** ___stringBuilder0, String_t* ___eventMessage1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ManifestBuilder_UpdateStringBuilder_m1FFC9292B0D91B441594C31E4F3373062821782E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { StringBuilder_t ** L_0 = ___stringBuilder0; StringBuilder_t * L_1 = *((StringBuilder_t **)L_0); if (L_1) { goto IL_000b; } } { StringBuilder_t ** L_2 = ___stringBuilder0; StringBuilder_t * L_3 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_3, /*hidden argument*/NULL); *((RuntimeObject **)L_2) = (RuntimeObject *)L_3; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_2, (void*)(RuntimeObject *)L_3); } IL_000b: { StringBuilder_t ** L_4 = ___stringBuilder0; StringBuilder_t * L_5 = *((StringBuilder_t **)L_4); String_t* L_6 = ___eventMessage1; int32_t L_7 = ___startIndex2; int32_t L_8 = ___count3; NullCheck(L_5); StringBuilder_Append_m9EB954E99DC99B8CC712ABB70EAA07616B841D46(L_5, L_6, L_7, L_8, /*hidden argument*/NULL); return; } } // System.String System.Diagnostics.Tracing.ManifestBuilder::TranslateToManifestConvention(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ManifestBuilder_TranslateToManifestConvention_m100A461415FF81C8254B2E763B5F45132A49D85C (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, String_t* ___eventMessage0, String_t* ___evtName1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ManifestBuilder_TranslateToManifestConvention_m100A461415FF81C8254B2E763B5F45132A49D85C_MetadataUsageId); s_Il2CppMethodInitialized = true; } U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * V_0 = NULL; int32_t V_1 = 0; U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * V_2 = NULL; int32_t V_3 = 0; int32_t V_4 = 0; int32_t V_5 = 0; int32_t V_6 = 0; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* V_7 = NULL; { U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_0 = (U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F *)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F_il2cpp_TypeInfo_var); U3CU3Ec__DisplayClass22_0__ctor_mDB74AD5BD6EEBA50B284AA8D1D62BD3A586A4050(L_0, /*hidden argument*/NULL); V_0 = L_0; U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_1 = V_0; String_t* L_2 = ___eventMessage0; NullCheck(L_1); L_1->set_eventMessage_1(L_2); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_3 = V_0; NullCheck(L_3); L_3->set_stringBuilder_0((StringBuilder_t *)NULL); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_4 = V_0; NullCheck(L_4); L_4->set_writtenSoFar_2(0); V_1 = (-1); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_5 = (U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A *)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A_il2cpp_TypeInfo_var); U3CU3Ec__DisplayClass22_1__ctor_mFB26E5BDCE1C37A03D22EAE3CB62B76C3D1FF818(L_5, /*hidden argument*/NULL); V_2 = L_5; U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_6 = V_2; U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_7 = V_0; NullCheck(L_6); L_6->set_CSU24U3CU3E8__locals1_1(L_7); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_8 = V_2; NullCheck(L_8); L_8->set_i_0(0); } IL_0031: { U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_9 = V_2; NullCheck(L_9); int32_t L_10 = L_9->get_i_0(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_11 = V_2; NullCheck(L_11); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_12 = L_11->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_12); String_t* L_13 = L_12->get_eventMessage_1(); NullCheck(L_13); int32_t L_14 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_13, /*hidden argument*/NULL); if ((((int32_t)L_10) < ((int32_t)L_14))) { goto IL_00ab; } } { U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_15 = V_2; NullCheck(L_15); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_16 = L_15->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_16); StringBuilder_t * L_17 = L_16->get_stringBuilder_0(); if (L_17) { goto IL_0062; } } { U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_18 = V_2; NullCheck(L_18); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_19 = L_18->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_19); String_t* L_20 = L_19->get_eventMessage_1(); return L_20; } IL_0062: { U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_21 = V_2; NullCheck(L_21); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_22 = L_21->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_22); StringBuilder_t ** L_23 = L_22->get_address_of_stringBuilder_0(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_24 = V_2; NullCheck(L_24); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_25 = L_24->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_25); String_t* L_26 = L_25->get_eventMessage_1(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_27 = V_2; NullCheck(L_27); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_28 = L_27->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_28); int32_t L_29 = L_28->get_writtenSoFar_2(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_30 = V_2; NullCheck(L_30); int32_t L_31 = L_30->get_i_0(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_32 = V_2; NullCheck(L_32); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_33 = L_32->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_33); int32_t L_34 = L_33->get_writtenSoFar_2(); ManifestBuilder_UpdateStringBuilder_m1FFC9292B0D91B441594C31E4F3373062821782E((StringBuilder_t **)L_23, L_26, L_29, ((int32_t)il2cpp_codegen_subtract((int32_t)L_31, (int32_t)L_34)), /*hidden argument*/NULL); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_35 = V_2; NullCheck(L_35); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_36 = L_35->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_36); StringBuilder_t * L_37 = L_36->get_stringBuilder_0(); NullCheck(L_37); String_t* L_38 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_37); return L_38; } IL_00ab: { U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_39 = V_2; NullCheck(L_39); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_40 = L_39->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_40); String_t* L_41 = L_40->get_eventMessage_1(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_42 = V_2; NullCheck(L_42); int32_t L_43 = L_42->get_i_0(); NullCheck(L_41); Il2CppChar L_44 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_41, L_43, /*hidden argument*/NULL); if ((!(((uint32_t)L_44) == ((uint32_t)((int32_t)37))))) { goto IL_0139; } } { U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_45 = V_2; NullCheck(L_45); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_46 = L_45->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_46); StringBuilder_t ** L_47 = L_46->get_address_of_stringBuilder_0(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_48 = V_2; NullCheck(L_48); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_49 = L_48->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_49); String_t* L_50 = L_49->get_eventMessage_1(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_51 = V_2; NullCheck(L_51); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_52 = L_51->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_52); int32_t L_53 = L_52->get_writtenSoFar_2(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_54 = V_2; NullCheck(L_54); int32_t L_55 = L_54->get_i_0(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_56 = V_2; NullCheck(L_56); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_57 = L_56->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_57); int32_t L_58 = L_57->get_writtenSoFar_2(); ManifestBuilder_UpdateStringBuilder_m1FFC9292B0D91B441594C31E4F3373062821782E((StringBuilder_t **)L_47, L_50, L_53, ((int32_t)il2cpp_codegen_subtract((int32_t)L_55, (int32_t)L_58)), /*hidden argument*/NULL); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_59 = V_2; NullCheck(L_59); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_60 = L_59->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_60); StringBuilder_t * L_61 = L_60->get_stringBuilder_0(); NullCheck(L_61); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_61, _stringLiteralE11557A88106E7FE5BB613921C6F637BCCD31989, /*hidden argument*/NULL); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_62 = V_2; NullCheck(L_62); int32_t L_63 = L_62->get_i_0(); V_3 = L_63; U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_64 = V_2; int32_t L_65 = V_3; NullCheck(L_64); L_64->set_i_0(((int32_t)il2cpp_codegen_add((int32_t)L_65, (int32_t)1))); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_66 = V_2; NullCheck(L_66); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_67 = L_66->get_CSU24U3CU3E8__locals1_1(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_68 = V_2; NullCheck(L_68); int32_t L_69 = L_68->get_i_0(); NullCheck(L_67); L_67->set_writtenSoFar_2(L_69); goto IL_0031; } IL_0139: { U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_70 = V_2; NullCheck(L_70); int32_t L_71 = L_70->get_i_0(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_72 = V_2; NullCheck(L_72); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_73 = L_72->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_73); String_t* L_74 = L_73->get_eventMessage_1(); NullCheck(L_74); int32_t L_75 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_74, /*hidden argument*/NULL); if ((((int32_t)L_71) >= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_75, (int32_t)1))))) { goto IL_025d; } } { U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_76 = V_2; NullCheck(L_76); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_77 = L_76->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_77); String_t* L_78 = L_77->get_eventMessage_1(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_79 = V_2; NullCheck(L_79); int32_t L_80 = L_79->get_i_0(); NullCheck(L_78); Il2CppChar L_81 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_78, L_80, /*hidden argument*/NULL); if ((!(((uint32_t)L_81) == ((uint32_t)((int32_t)123))))) { goto IL_018c; } } { U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_82 = V_2; NullCheck(L_82); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_83 = L_82->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_83); String_t* L_84 = L_83->get_eventMessage_1(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_85 = V_2; NullCheck(L_85); int32_t L_86 = L_85->get_i_0(); NullCheck(L_84); Il2CppChar L_87 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_84, ((int32_t)il2cpp_codegen_add((int32_t)L_86, (int32_t)1)), /*hidden argument*/NULL); if ((((int32_t)L_87) == ((int32_t)((int32_t)123)))) { goto IL_01c8; } } IL_018c: { U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_88 = V_2; NullCheck(L_88); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_89 = L_88->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_89); String_t* L_90 = L_89->get_eventMessage_1(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_91 = V_2; NullCheck(L_91); int32_t L_92 = L_91->get_i_0(); NullCheck(L_90); Il2CppChar L_93 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_90, L_92, /*hidden argument*/NULL); if ((!(((uint32_t)L_93) == ((uint32_t)((int32_t)125))))) { goto IL_025d; } } { U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_94 = V_2; NullCheck(L_94); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_95 = L_94->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_95); String_t* L_96 = L_95->get_eventMessage_1(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_97 = V_2; NullCheck(L_97); int32_t L_98 = L_97->get_i_0(); NullCheck(L_96); Il2CppChar L_99 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_96, ((int32_t)il2cpp_codegen_add((int32_t)L_98, (int32_t)1)), /*hidden argument*/NULL); if ((!(((uint32_t)L_99) == ((uint32_t)((int32_t)125))))) { goto IL_025d; } } IL_01c8: { U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_100 = V_2; NullCheck(L_100); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_101 = L_100->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_101); StringBuilder_t ** L_102 = L_101->get_address_of_stringBuilder_0(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_103 = V_2; NullCheck(L_103); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_104 = L_103->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_104); String_t* L_105 = L_104->get_eventMessage_1(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_106 = V_2; NullCheck(L_106); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_107 = L_106->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_107); int32_t L_108 = L_107->get_writtenSoFar_2(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_109 = V_2; NullCheck(L_109); int32_t L_110 = L_109->get_i_0(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_111 = V_2; NullCheck(L_111); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_112 = L_111->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_112); int32_t L_113 = L_112->get_writtenSoFar_2(); ManifestBuilder_UpdateStringBuilder_m1FFC9292B0D91B441594C31E4F3373062821782E((StringBuilder_t **)L_102, L_105, L_108, ((int32_t)il2cpp_codegen_subtract((int32_t)L_110, (int32_t)L_113)), /*hidden argument*/NULL); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_114 = V_2; NullCheck(L_114); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_115 = L_114->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_115); StringBuilder_t * L_116 = L_115->get_stringBuilder_0(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_117 = V_2; NullCheck(L_117); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_118 = L_117->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_118); String_t* L_119 = L_118->get_eventMessage_1(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_120 = V_2; NullCheck(L_120); int32_t L_121 = L_120->get_i_0(); NullCheck(L_119); Il2CppChar L_122 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_119, L_121, /*hidden argument*/NULL); NullCheck(L_116); StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_116, L_122, /*hidden argument*/NULL); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_123 = V_2; NullCheck(L_123); int32_t L_124 = L_123->get_i_0(); V_3 = L_124; U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_125 = V_2; int32_t L_126 = V_3; NullCheck(L_125); L_125->set_i_0(((int32_t)il2cpp_codegen_add((int32_t)L_126, (int32_t)1))); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_127 = V_2; NullCheck(L_127); int32_t L_128 = L_127->get_i_0(); V_3 = L_128; U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_129 = V_2; int32_t L_130 = V_3; NullCheck(L_129); L_129->set_i_0(((int32_t)il2cpp_codegen_add((int32_t)L_130, (int32_t)1))); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_131 = V_2; NullCheck(L_131); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_132 = L_131->get_CSU24U3CU3E8__locals1_1(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_133 = V_2; NullCheck(L_133); int32_t L_134 = L_133->get_i_0(); NullCheck(L_132); L_132->set_writtenSoFar_2(L_134); goto IL_0031; } IL_025d: { U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_135 = V_2; NullCheck(L_135); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_136 = L_135->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_136); String_t* L_137 = L_136->get_eventMessage_1(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_138 = V_2; NullCheck(L_138); int32_t L_139 = L_138->get_i_0(); NullCheck(L_137); Il2CppChar L_140 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_137, L_139, /*hidden argument*/NULL); if ((!(((uint32_t)L_140) == ((uint32_t)((int32_t)123))))) { goto IL_043a; } } { U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_141 = V_2; NullCheck(L_141); int32_t L_142 = L_141->get_i_0(); V_4 = L_142; U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_143 = V_2; NullCheck(L_143); int32_t L_144 = L_143->get_i_0(); V_3 = L_144; U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_145 = V_2; int32_t L_146 = V_3; NullCheck(L_145); L_145->set_i_0(((int32_t)il2cpp_codegen_add((int32_t)L_146, (int32_t)1))); V_5 = 0; goto IL_02c8; } IL_0297: { int32_t L_147 = V_5; U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_148 = V_2; NullCheck(L_148); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_149 = L_148->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_149); String_t* L_150 = L_149->get_eventMessage_1(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_151 = V_2; NullCheck(L_151); int32_t L_152 = L_151->get_i_0(); NullCheck(L_150); Il2CppChar L_153 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_150, L_152, /*hidden argument*/NULL); V_5 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_147, (int32_t)((int32_t)10))), (int32_t)L_153)), (int32_t)((int32_t)48))); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_154 = V_2; NullCheck(L_154); int32_t L_155 = L_154->get_i_0(); V_3 = L_155; U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_156 = V_2; int32_t L_157 = V_3; NullCheck(L_156); L_156->set_i_0(((int32_t)il2cpp_codegen_add((int32_t)L_157, (int32_t)1))); } IL_02c8: { U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_158 = V_2; NullCheck(L_158); int32_t L_159 = L_158->get_i_0(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_160 = V_2; NullCheck(L_160); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_161 = L_160->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_161); String_t* L_162 = L_161->get_eventMessage_1(); NullCheck(L_162); int32_t L_163 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_162, /*hidden argument*/NULL); if ((((int32_t)L_159) >= ((int32_t)L_163))) { goto IL_02fd; } } { U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_164 = V_2; NullCheck(L_164); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_165 = L_164->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_165); String_t* L_166 = L_165->get_eventMessage_1(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_167 = V_2; NullCheck(L_167); int32_t L_168 = L_167->get_i_0(); NullCheck(L_166); Il2CppChar L_169 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_166, L_168, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); bool L_170 = Char_IsDigit_m29508E0B60DAE54350BDC3DED0D42895DBA4087E(L_169, /*hidden argument*/NULL); if (L_170) { goto IL_0297; } } IL_02fd: { U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_171 = V_2; NullCheck(L_171); int32_t L_172 = L_171->get_i_0(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_173 = V_2; NullCheck(L_173); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_174 = L_173->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_174); String_t* L_175 = L_174->get_eventMessage_1(); NullCheck(L_175); int32_t L_176 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_175, /*hidden argument*/NULL); if ((((int32_t)L_172) >= ((int32_t)L_176))) { goto IL_040c; } } { U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_177 = V_2; NullCheck(L_177); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_178 = L_177->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_178); String_t* L_179 = L_178->get_eventMessage_1(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_180 = V_2; NullCheck(L_180); int32_t L_181 = L_180->get_i_0(); NullCheck(L_179); Il2CppChar L_182 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_179, L_181, /*hidden argument*/NULL); if ((!(((uint32_t)L_182) == ((uint32_t)((int32_t)125))))) { goto IL_040c; } } { U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_183 = V_2; NullCheck(L_183); int32_t L_184 = L_183->get_i_0(); V_3 = L_184; U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_185 = V_2; int32_t L_186 = V_3; NullCheck(L_185); L_185->set_i_0(((int32_t)il2cpp_codegen_add((int32_t)L_186, (int32_t)1))); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_187 = V_2; NullCheck(L_187); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_188 = L_187->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_188); StringBuilder_t ** L_189 = L_188->get_address_of_stringBuilder_0(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_190 = V_2; NullCheck(L_190); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_191 = L_190->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_191); String_t* L_192 = L_191->get_eventMessage_1(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_193 = V_2; NullCheck(L_193); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_194 = L_193->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_194); int32_t L_195 = L_194->get_writtenSoFar_2(); int32_t L_196 = V_4; U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_197 = V_2; NullCheck(L_197); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_198 = L_197->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_198); int32_t L_199 = L_198->get_writtenSoFar_2(); ManifestBuilder_UpdateStringBuilder_m1FFC9292B0D91B441594C31E4F3373062821782E((StringBuilder_t **)L_189, L_192, L_195, ((int32_t)il2cpp_codegen_subtract((int32_t)L_196, (int32_t)L_199)), /*hidden argument*/NULL); int32_t L_200 = V_5; String_t* L_201 = ___evtName1; int32_t L_202 = ManifestBuilder_TranslateIndexToManifestConvention_m5856C01D23838CEF6101AE630F3010A7D3222049(__this, L_200, L_201, /*hidden argument*/NULL); V_6 = L_202; U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_203 = V_2; NullCheck(L_203); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_204 = L_203->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_204); StringBuilder_t * L_205 = L_204->get_stringBuilder_0(); NullCheck(L_205); StringBuilder_t * L_206 = StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_205, ((int32_t)37), /*hidden argument*/NULL); int32_t L_207 = V_6; NullCheck(L_206); StringBuilder_Append_m85874CFF9E4B152DB2A91936C6F2CA3E9B1EFF84(L_206, L_207, /*hidden argument*/NULL); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_208 = V_2; NullCheck(L_208); int32_t L_209 = L_208->get_i_0(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_210 = V_2; NullCheck(L_210); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_211 = L_210->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_211); String_t* L_212 = L_211->get_eventMessage_1(); NullCheck(L_212); int32_t L_213 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_212, /*hidden argument*/NULL); if ((((int32_t)L_209) >= ((int32_t)L_213))) { goto IL_03f6; } } { U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_214 = V_2; NullCheck(L_214); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_215 = L_214->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_215); String_t* L_216 = L_215->get_eventMessage_1(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_217 = V_2; NullCheck(L_217); int32_t L_218 = L_217->get_i_0(); NullCheck(L_216); Il2CppChar L_219 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_216, L_218, /*hidden argument*/NULL); if ((!(((uint32_t)L_219) == ((uint32_t)((int32_t)33))))) { goto IL_03f6; } } { U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_220 = V_2; NullCheck(L_220); int32_t L_221 = L_220->get_i_0(); V_3 = L_221; U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_222 = V_2; int32_t L_223 = V_3; NullCheck(L_222); L_222->set_i_0(((int32_t)il2cpp_codegen_add((int32_t)L_223, (int32_t)1))); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_224 = V_2; NullCheck(L_224); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_225 = L_224->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_225); StringBuilder_t * L_226 = L_225->get_stringBuilder_0(); NullCheck(L_226); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_226, _stringLiteral69766F02FB09CD43FABB15BE9645941918840347, /*hidden argument*/NULL); } IL_03f6: { U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_227 = V_2; NullCheck(L_227); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_228 = L_227->get_CSU24U3CU3E8__locals1_1(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_229 = V_2; NullCheck(L_229); int32_t L_230 = L_229->get_i_0(); NullCheck(L_228); L_228->set_writtenSoFar_2(L_230); goto IL_0031; } IL_040c: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_231 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_232 = L_231; String_t* L_233 = ___evtName1; NullCheck(L_232); ArrayElementTypeCheck (L_232, L_233); (L_232)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_233); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_234 = L_232; U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_235 = V_2; NullCheck(L_235); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_236 = L_235->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_236); String_t* L_237 = L_236->get_eventMessage_1(); NullCheck(L_234); ArrayElementTypeCheck (L_234, L_237); (L_234)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_237); String_t* L_238 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralA6468CA2C2E3400246432BD38A3C2294225B56C4, L_234, /*hidden argument*/NULL); ManifestBuilder_ManifestError_mA178FBE087E34A3CC07873D32896191BF7C74A20(__this, L_238, (bool)0, /*hidden argument*/NULL); goto IL_0031; } IL_043a: { U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_239 = V_2; NullCheck(L_239); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_240 = L_239->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_240); String_t* L_241 = L_240->get_eventMessage_1(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_242 = V_2; NullCheck(L_242); int32_t L_243 = L_242->get_i_0(); NullCheck(L_241); Il2CppChar L_244 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_241, L_243, /*hidden argument*/NULL); NullCheck(_stringLiteral71624042BEF5F488D5BEAA76BC5A6C3A9CBE9C6C); int32_t L_245 = String_IndexOf_m2909B8CF585E1BD0C81E11ACA2F48012156FD5BD(_stringLiteral71624042BEF5F488D5BEAA76BC5A6C3A9CBE9C6C, L_244, /*hidden argument*/NULL); int32_t L_246 = L_245; V_1 = L_246; if ((((int32_t)L_246) < ((int32_t)0))) { goto IL_04d7; } } { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_247 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)8); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_248 = L_247; NullCheck(L_248); ArrayElementTypeCheck (L_248, _stringLiteral54F697A1FF421E46F37022813A88D0937A82090C); (L_248)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral54F697A1FF421E46F37022813A88D0937A82090C); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_249 = L_248; NullCheck(L_249); ArrayElementTypeCheck (L_249, _stringLiteral5D2C1A80D8C17E5A143AEE09C29A86838F18AB02); (L_249)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral5D2C1A80D8C17E5A143AEE09C29A86838F18AB02); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_250 = L_249; NullCheck(L_250); ArrayElementTypeCheck (L_250, _stringLiteral03C7B3D3B9655EACE132158A150DCD952FEB9A0A); (L_250)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral03C7B3D3B9655EACE132158A150DCD952FEB9A0A); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_251 = L_250; NullCheck(L_251); ArrayElementTypeCheck (L_251, _stringLiteral95521D9D0C3E39CEABCC90300C04F03585598066); (L_251)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral95521D9D0C3E39CEABCC90300C04F03585598066); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_252 = L_251; NullCheck(L_252); ArrayElementTypeCheck (L_252, _stringLiteralE2BBF209AE0E6210387A30E3ED477444BDA8FE6E); (L_252)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteralE2BBF209AE0E6210387A30E3ED477444BDA8FE6E); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_253 = L_252; NullCheck(L_253); ArrayElementTypeCheck (L_253, _stringLiteralE0449BCC02B4D56EA752E24FA6B74C2D983079DF); (L_253)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteralE0449BCC02B4D56EA752E24FA6B74C2D983079DF); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_254 = L_253; NullCheck(L_254); ArrayElementTypeCheck (L_254, _stringLiteral6A8782AC6930324B63BDBC0E169B6EB20FF08F4A); (L_254)->SetAt(static_cast<il2cpp_array_size_t>(6), (String_t*)_stringLiteral6A8782AC6930324B63BDBC0E169B6EB20FF08F4A); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_255 = L_254; NullCheck(L_255); ArrayElementTypeCheck (L_255, _stringLiteral28F18631B86EA95E69CA85CC2051B3920DBF0CB9); (L_255)->SetAt(static_cast<il2cpp_array_size_t>(7), (String_t*)_stringLiteral28F18631B86EA95E69CA85CC2051B3920DBF0CB9); V_7 = L_255; U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_256 = V_2; Action_2_tF9B5B4903EBDF1C9EC5FD39E96DE7A6A35B21C81 * L_257 = (Action_2_tF9B5B4903EBDF1C9EC5FD39E96DE7A6A35B21C81 *)il2cpp_codegen_object_new(Action_2_tF9B5B4903EBDF1C9EC5FD39E96DE7A6A35B21C81_il2cpp_TypeInfo_var); Action_2__ctor_m92817F0253F68C636ECB18A4FE259FC9634986F2(L_257, L_256, (intptr_t)((intptr_t)U3CU3Ec__DisplayClass22_1_U3CTranslateToManifestConventionU3Eb__0_m739A6DC3C33A8D6A6F9FD0CEFAD75723E53E6372_RuntimeMethod_var), /*hidden argument*/Action_2__ctor_m92817F0253F68C636ECB18A4FE259FC9634986F2_RuntimeMethod_var); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_258 = V_2; NullCheck(L_258); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_259 = L_258->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_259); String_t* L_260 = L_259->get_eventMessage_1(); U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_261 = V_2; NullCheck(L_261); int32_t L_262 = L_261->get_i_0(); NullCheck(L_260); Il2CppChar L_263 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_260, L_262, /*hidden argument*/NULL); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_264 = V_7; int32_t L_265 = V_1; NullCheck(L_264); int32_t L_266 = L_265; String_t* L_267 = (L_264)->GetAt(static_cast<il2cpp_array_size_t>(L_266)); NullCheck(L_257); Action_2_Invoke_m1B0DC3EC2F46E68A1692C2DB2E2EDAEB5ABC9FE0(L_257, L_263, L_267, /*hidden argument*/Action_2_Invoke_m1B0DC3EC2F46E68A1692C2DB2E2EDAEB5ABC9FE0_RuntimeMethod_var); goto IL_0031; } IL_04d7: { U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_268 = V_2; NullCheck(L_268); int32_t L_269 = L_268->get_i_0(); V_3 = L_269; U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * L_270 = V_2; int32_t L_271 = V_3; NullCheck(L_270); L_270->set_i_0(((int32_t)il2cpp_codegen_add((int32_t)L_271, (int32_t)1))); goto IL_0031; } } // System.Int32 System.Diagnostics.Tracing.ManifestBuilder::TranslateIndexToManifestConvention(System.Int32,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ManifestBuilder_TranslateIndexToManifestConvention_m5856C01D23838CEF6101AE630F3010A7D3222049 (ManifestBuilder_t6C6D19F4605FBB0F1E11B6143457A3AE4D01E450 * __this, int32_t ___idx0, String_t* ___evtName1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ManifestBuilder_TranslateIndexToManifestConvention_m5856C01D23838CEF6101AE630F3010A7D3222049_MetadataUsageId); s_Il2CppMethodInitialized = true; } List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * V_0 = NULL; Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 V_1; memset((&V_1), 0, sizeof(V_1)); int32_t V_2 = 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); { Dictionary_2_t946D91DD7ED0F46C8AAC4DF282D8C9A48EA5FE28 * L_0 = __this->get_perEventByteArrayArgIndices_11(); String_t* L_1 = ___evtName1; NullCheck(L_0); bool L_2 = Dictionary_2_TryGetValue_m29B8CACD7AEA9C8C02F46E3FFDFEA3EC78871182(L_0, L_1, (List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 **)(&V_0), /*hidden argument*/Dictionary_2_TryGetValue_m29B8CACD7AEA9C8C02F46E3FFDFEA3EC78871182_RuntimeMethod_var); if (!L_2) { goto IL_0043; } } { List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * L_3 = V_0; NullCheck(L_3); Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 L_4 = List_1_GetEnumerator_mE721B3C5E137DCDB408BE05CA472EECBAAAA418A(L_3, /*hidden argument*/List_1_GetEnumerator_mE721B3C5E137DCDB408BE05CA472EECBAAAA418A_RuntimeMethod_var); V_1 = L_4; } IL_0017: try { // begin try (depth: 1) { goto IL_002a; } IL_0019: { int32_t L_5 = Enumerator_get_Current_m219EC3BCCD8CF3A474AD0C4DBA55EB9B74C9F89C_inline((Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 *)(&V_1), /*hidden argument*/Enumerator_get_Current_m219EC3BCCD8CF3A474AD0C4DBA55EB9B74C9F89C_RuntimeMethod_var); V_2 = L_5; int32_t L_6 = ___idx0; int32_t L_7 = V_2; if ((((int32_t)L_6) < ((int32_t)L_7))) { goto IL_0033; } } IL_0025: { int32_t L_8 = ___idx0; ___idx0 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1)); } IL_002a: { bool L_9 = Enumerator_MoveNext_m42C746E84C832B62E93536A47B4086F3A3AC6609((Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 *)(&V_1), /*hidden argument*/Enumerator_MoveNext_m42C746E84C832B62E93536A47B4086F3A3AC6609_RuntimeMethod_var); if (L_9) { goto IL_0019; } } IL_0033: { IL2CPP_LEAVE(0x43, FINALLY_0035); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0035; } FINALLY_0035: { // begin finally (depth: 1) Enumerator_Dispose_m902D0B2B4B4B589E6F3653D9CDB38E0AA97EBCF9((Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 *)(&V_1), /*hidden argument*/Enumerator_Dispose_m902D0B2B4B4B589E6F3653D9CDB38E0AA97EBCF9_RuntimeMethod_var); IL2CPP_END_FINALLY(53) } // end finally (depth: 1) IL2CPP_CLEANUP(53) { IL2CPP_JUMP_TBL(0x43, IL_0043) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0043: { int32_t L_10 = ___idx0; return ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1)); } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.ManifestBuilder_<>c__DisplayClass22_0::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass22_0__ctor_mDB74AD5BD6EEBA50B284AA8D1D62BD3A586A4050 (U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * __this, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.ManifestBuilder_<>c__DisplayClass22_1::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass22_1__ctor_mFB26E5BDCE1C37A03D22EAE3CB62B76C3D1FF818 (U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * __this, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.ManifestBuilder_<>c__DisplayClass22_1::<TranslateToManifestConvention>b__0(System.Char,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass22_1_U3CTranslateToManifestConventionU3Eb__0_m739A6DC3C33A8D6A6F9FD0CEFAD75723E53E6372 (U3CU3Ec__DisplayClass22_1_t9EFC4E12CB6A5AFCFAA8DF97DAF677DABCFD822A * __this, Il2CppChar ___ch0, String_t* ___escape1, const RuntimeMethod* method) { int32_t V_0 = 0; { U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_0 = __this->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_0); StringBuilder_t ** L_1 = L_0->get_address_of_stringBuilder_0(); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_2 = __this->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_2); String_t* L_3 = L_2->get_eventMessage_1(); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_4 = __this->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_4); int32_t L_5 = L_4->get_writtenSoFar_2(); int32_t L_6 = __this->get_i_0(); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_7 = __this->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_7); int32_t L_8 = L_7->get_writtenSoFar_2(); ManifestBuilder_UpdateStringBuilder_m1FFC9292B0D91B441594C31E4F3373062821782E((StringBuilder_t **)L_1, L_3, L_5, ((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)L_8)), /*hidden argument*/NULL); int32_t L_9 = __this->get_i_0(); V_0 = L_9; int32_t L_10 = V_0; __this->set_i_0(((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1))); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_11 = __this->get_CSU24U3CU3E8__locals1_1(); NullCheck(L_11); StringBuilder_t * L_12 = L_11->get_stringBuilder_0(); String_t* L_13 = ___escape1; NullCheck(L_12); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_12, L_13, /*hidden argument*/NULL); U3CU3Ec__DisplayClass22_0_tA2045B4BE2E2BB2CEEE4E98A8A727A0B0BBB474F * L_14 = __this->get_CSU24U3CU3E8__locals1_1(); int32_t L_15 = __this->get_i_0(); NullCheck(L_14); L_14->set_writtenSoFar_2(L_15); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.NameInfo::ReserveEventIDsBelow(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NameInfo_ReserveEventIDsBelow_m4297DAD11F30051AC636093AB42E31178C0A08F8 (int32_t ___eventId0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (NameInfo_ReserveEventIDsBelow_m4297DAD11F30051AC636093AB42E31178C0A08F8_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; IL_0000: { IL2CPP_RUNTIME_CLASS_INIT(NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C_il2cpp_TypeInfo_var); int32_t L_0 = ((NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C_StaticFields*)il2cpp_codegen_static_fields_for(NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C_il2cpp_TypeInfo_var))->get_lastIdentity_0(); V_0 = L_0; int32_t L_1 = ((NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C_StaticFields*)il2cpp_codegen_static_fields_for(NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C_il2cpp_TypeInfo_var))->get_lastIdentity_0(); int32_t L_2 = ___eventId0; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((int32_t)L_1&(int32_t)((int32_t)-16777216))), (int32_t)L_2)); int32_t L_3 = V_1; int32_t L_4 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var); int32_t L_5 = Math_Max_mA99E48BB021F2E4B62D4EA9F52EA6928EED618A2(L_3, L_4, /*hidden argument*/NULL); V_1 = L_5; int32_t L_6 = V_1; int32_t L_7 = V_0; int32_t L_8 = Interlocked_CompareExchange_mD830160E95D6C589AD31EE9DC8D19BD4A8DCDC03((int32_t*)(((NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C_StaticFields*)il2cpp_codegen_static_fields_for(NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C_il2cpp_TypeInfo_var))->get_address_of_lastIdentity_0()), L_6, L_7, /*hidden argument*/NULL); int32_t L_9 = V_0; if ((!(((uint32_t)L_8) == ((uint32_t)L_9)))) { goto IL_0000; } } { return; } } // System.Void System.Diagnostics.Tracing.NameInfo::.ctor(System.String,System.Diagnostics.Tracing.EventTags,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NameInfo__ctor_m697D2AEA8E68842A940310E3B874709CAA86F4DE (NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C * __this, String_t* ___name0, int32_t ___tags1, int32_t ___typeMetadataSize2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (NameInfo__ctor_m697D2AEA8E68842A940310E3B874709CAA86F4DE_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { ConcurrentSetItem_2__ctor_mB1DADD36C8ECA3425C54CAD44C159215B831EA1F(__this, /*hidden argument*/ConcurrentSetItem_2__ctor_mB1DADD36C8ECA3425C54CAD44C159215B831EA1F_RuntimeMethod_var); String_t* L_0 = ___name0; __this->set_name_1(L_0); int32_t L_1 = ___tags1; __this->set_tags_2(((int32_t)((int32_t)L_1&(int32_t)((int32_t)268435455)))); IL2CPP_RUNTIME_CLASS_INIT(NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C_il2cpp_TypeInfo_var); int32_t L_2 = Interlocked_Increment_mB6D391197444B8BFD30BAE1EDCF1A255CD2F292F((int32_t*)(((NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C_StaticFields*)il2cpp_codegen_static_fields_for(NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C_il2cpp_TypeInfo_var))->get_address_of_lastIdentity_0()), /*hidden argument*/NULL); __this->set_identity_3(L_2); V_0 = 0; int32_t L_3 = __this->get_tags_2(); IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); Statics_EncodeTags_m23393859C6E4565A03D11540CE8A133DBCC5A453(L_3, (int32_t*)(&V_0), (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL, /*hidden argument*/NULL); String_t* L_4 = ___name0; int32_t L_5 = V_0; int32_t L_6 = ___typeMetadataSize2; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = Statics_MetadataForString_m53EAC9E9AD6BA8CB18BB3ABE008C4D5D2725C34D(L_4, L_5, 0, L_6, /*hidden argument*/NULL); __this->set_nameMetadata_4(L_7); V_0 = 2; int32_t L_8 = __this->get_tags_2(); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = __this->get_nameMetadata_4(); Statics_EncodeTags_m23393859C6E4565A03D11540CE8A133DBCC5A453(L_8, (int32_t*)(&V_0), L_9, /*hidden argument*/NULL); return; } } // System.Int32 System.Diagnostics.Tracing.NameInfo::Compare(System.Diagnostics.Tracing.NameInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NameInfo_Compare_mCC500203B3DEC807707E1F33478C330DDE2CA2B8 (NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C * __this, NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C * ___other0, const RuntimeMethod* method) { { NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C * L_0 = ___other0; NullCheck(L_0); String_t* L_1 = L_0->get_name_1(); NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C * L_2 = ___other0; NullCheck(L_2); int32_t L_3 = L_2->get_tags_2(); int32_t L_4 = NameInfo_Compare_m2053E0E1B730AF1E06588A1F974A5F2798381BFE(__this, L_1, L_3, /*hidden argument*/NULL); return L_4; } } // System.Int32 System.Diagnostics.Tracing.NameInfo::Compare(System.Collections.Generic.KeyValuePair`2<System.String,System.Diagnostics.Tracing.EventTags>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NameInfo_Compare_mDB4FA5A8A0E1F394F654232DC46455389AE14866 (NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C * __this, KeyValuePair_2_tC5E97F5FFE30651DD75FE9EC048400D9A5C57C74 ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (NameInfo_Compare_mDB4FA5A8A0E1F394F654232DC46455389AE14866_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = KeyValuePair_2_get_Key_m40CE9E116FF11AC137531058313C7D97F73A2FAB_inline((KeyValuePair_2_tC5E97F5FFE30651DD75FE9EC048400D9A5C57C74 *)(&___key0), /*hidden argument*/KeyValuePair_2_get_Key_m40CE9E116FF11AC137531058313C7D97F73A2FAB_RuntimeMethod_var); int32_t L_1 = KeyValuePair_2_get_Value_mD3D1B9E4CED325BD1E37559B03C8F1DBD33594C3_inline((KeyValuePair_2_tC5E97F5FFE30651DD75FE9EC048400D9A5C57C74 *)(&___key0), /*hidden argument*/KeyValuePair_2_get_Value_mD3D1B9E4CED325BD1E37559B03C8F1DBD33594C3_RuntimeMethod_var); int32_t L_2 = NameInfo_Compare_m2053E0E1B730AF1E06588A1F974A5F2798381BFE(__this, L_0, ((int32_t)((int32_t)L_1&(int32_t)((int32_t)268435455))), /*hidden argument*/NULL); return L_2; } } // System.Int32 System.Diagnostics.Tracing.NameInfo::Compare(System.String,System.Diagnostics.Tracing.EventTags) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NameInfo_Compare_m2053E0E1B730AF1E06588A1F974A5F2798381BFE (NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C * __this, String_t* ___otherName0, int32_t ___otherTags1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (NameInfo_Compare_m2053E0E1B730AF1E06588A1F974A5F2798381BFE_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t G_B5_0 = 0; { IL2CPP_RUNTIME_CLASS_INIT(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_il2cpp_TypeInfo_var); StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * L_0 = StringComparer_get_Ordinal_m1F38FBAB170DF80D33FE2A849D30FF2E314D9FDB_inline(/*hidden argument*/NULL); String_t* L_1 = __this->get_name_1(); String_t* L_2 = ___otherName0; NullCheck(L_0); int32_t L_3 = VirtFuncInvoker2< int32_t, String_t*, String_t* >::Invoke(10 /* System.Int32 System.StringComparer::Compare(System.String,System.String) */, L_0, L_1, L_2); V_0 = L_3; int32_t L_4 = V_0; if (L_4) { goto IL_002c; } } { int32_t L_5 = __this->get_tags_2(); int32_t L_6 = ___otherTags1; if ((((int32_t)L_5) == ((int32_t)L_6))) { goto IL_002c; } } { int32_t L_7 = __this->get_tags_2(); int32_t L_8 = ___otherTags1; if ((((int32_t)L_7) < ((int32_t)L_8))) { goto IL_002a; } } { G_B5_0 = 1; goto IL_002b; } IL_002a: { G_B5_0 = (-1); } IL_002b: { V_0 = G_B5_0; } IL_002c: { int32_t L_9 = V_0; return L_9; } } // System.Void System.Diagnostics.Tracing.NameInfo::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NameInfo__cctor_mF76CED99F534FF64631F0C781DCE8EF39C1CB2D9 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (NameInfo__cctor_mF76CED99F534FF64631F0C781DCE8EF39C1CB2D9_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ((NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C_StaticFields*)il2cpp_codegen_static_fields_for(NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C_il2cpp_TypeInfo_var))->set_lastIdentity_0(((int32_t)184549376)); 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.Diagnostics.Tracing.NonEventAttribute::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NonEventAttribute__ctor_m11EB423FA0331D5ACEA383A7D8C27148C58219DB (NonEventAttribute_tEFC3FBCB594E618AF8214093944F2AC045497726 * __this, const RuntimeMethod* method) { { Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.PropertyAnalysis::.ctor(System.String,System.Reflection.MethodInfo,System.Diagnostics.Tracing.TraceLoggingTypeInfo,System.Diagnostics.Tracing.EventFieldAttribute) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyAnalysis__ctor_m29B134F54408C609851A5B14D437079EE8F999BC (PropertyAnalysis_t3DC0F773245CD968BED647345E53535D422CF46A * __this, String_t* ___name0, MethodInfo_t * ___getterInfo1, TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * ___typeInfo2, EventFieldAttribute_tCD8E252D7D673724F2980B794282B715E16A675C * ___fieldAttribute3, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); String_t* L_0 = ___name0; __this->set_name_0(L_0); MethodInfo_t * L_1 = ___getterInfo1; __this->set_getterInfo_1(L_1); TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_2 = ___typeInfo2; __this->set_typeInfo_2(L_2); EventFieldAttribute_tCD8E252D7D673724F2980B794282B715E16A675C * L_3 = ___fieldAttribute3; __this->set_fieldAttribute_3(L_3); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.SByteArrayTypeInfo::WriteMetadata(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,System.Diagnostics.Tracing.EventFieldFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SByteArrayTypeInfo_WriteMetadata_m6237C70B7EACAD7382CD1A48D48423B416B9304E (SByteArrayTypeInfo_t4885ED20686CCAD72DF0C2423CAF5CDA3F5591C6 * __this, TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * ___collector0, String_t* ___name1, int32_t ___format2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SByteArrayTypeInfo_WriteMetadata_m6237C70B7EACAD7382CD1A48D48423B416B9304E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_0 = ___collector0; String_t* L_1 = ___name1; int32_t L_2 = ___format2; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_3 = Statics_Format8_m1C71026EA0BAB2008E3F0DC1889869CEE6D3822D(L_2, 3, /*hidden argument*/NULL); NullCheck(L_0); TraceLoggingMetadataCollector_AddArray_m9074593EAE95D13523B4F7CF7FB94019CF49F406(L_0, L_1, L_3, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.SByteArrayTypeInfo::WriteData(System.Diagnostics.Tracing.TraceLoggingDataCollector,System.SByte[]&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SByteArrayTypeInfo_WriteData_m91EC7DD3F438D469AD2B240D6274E333490BDC73 (SByteArrayTypeInfo_t4885ED20686CCAD72DF0C2423CAF5CDA3F5591C6 * __this, TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * ___collector0, SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889** ___value1, const RuntimeMethod* method) { { TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * L_0 = ___collector0; SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889** L_1 = ___value1; SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889* L_2 = *((SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889**)L_1); NullCheck(L_0); TraceLoggingDataCollector_AddArray_m08BD4382BDFEBD4587DB60C10562B8F2E537D989(L_0, L_2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.SByteArrayTypeInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SByteArrayTypeInfo__ctor_m574A695A8BC3854E038875B5EDA049ADCE1121BA (SByteArrayTypeInfo_t4885ED20686CCAD72DF0C2423CAF5CDA3F5591C6 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SByteArrayTypeInfo__ctor_m574A695A8BC3854E038875B5EDA049ADCE1121BA_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingTypeInfo_1__ctor_mE1849D434DA715B1474C48419E3B750A0400F7EE(__this, /*hidden argument*/TraceLoggingTypeInfo_1__ctor_mE1849D434DA715B1474C48419E3B750A0400F7EE_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.SByteTypeInfo::WriteMetadata(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,System.Diagnostics.Tracing.EventFieldFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SByteTypeInfo_WriteMetadata_m24B4DA25B413E4BA4D6FD966ABF071A984598BA1 (SByteTypeInfo_tA76D79A20B5AA0947AC807DEEADDB557BFB14A4C * __this, TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * ___collector0, String_t* ___name1, int32_t ___format2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SByteTypeInfo_WriteMetadata_m24B4DA25B413E4BA4D6FD966ABF071A984598BA1_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_0 = ___collector0; String_t* L_1 = ___name1; int32_t L_2 = ___format2; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_3 = Statics_Format8_m1C71026EA0BAB2008E3F0DC1889869CEE6D3822D(L_2, 3, /*hidden argument*/NULL); NullCheck(L_0); TraceLoggingMetadataCollector_AddScalar_m136E01C1CEEFA221D5F78507069DFE8590CC15FB(L_0, L_1, L_3, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.SByteTypeInfo::WriteData(System.Diagnostics.Tracing.TraceLoggingDataCollector,System.SByte&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SByteTypeInfo_WriteData_mA12BDABEED30E261A0EE2232E414574DDC243B4B (SByteTypeInfo_tA76D79A20B5AA0947AC807DEEADDB557BFB14A4C * __this, TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * ___collector0, int8_t* ___value1, const RuntimeMethod* method) { { TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * L_0 = ___collector0; int8_t* L_1 = ___value1; int32_t L_2 = *((int8_t*)L_1); NullCheck(L_0); TraceLoggingDataCollector_AddScalar_m19856EAB8A7B3627A41A2D0BC36E9561E3B8361D(L_0, (int8_t)L_2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.SByteTypeInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SByteTypeInfo__ctor_mE051EE1E75CBE7BF5D6F0DEBCD1B2EC3B55DD89E (SByteTypeInfo_tA76D79A20B5AA0947AC807DEEADDB557BFB14A4C * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SByteTypeInfo__ctor_mE051EE1E75CBE7BF5D6F0DEBCD1B2EC3B55DD89E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingTypeInfo_1__ctor_mB444AA3C7505EF658C4A9D495C286724373DC704(__this, /*hidden argument*/TraceLoggingTypeInfo_1__ctor_mB444AA3C7505EF658C4A9D495C286724373DC704_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.SessionMask::.ctor(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SessionMask__ctor_mF0381B32D172407AD80049857433DAA4206268EB (SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE * __this, uint32_t ___mask0, const RuntimeMethod* method) { { uint32_t L_0 = ___mask0; __this->set_m_mask_0(((int32_t)((int32_t)L_0&(int32_t)((int32_t)15)))); return; } } IL2CPP_EXTERN_C void SessionMask__ctor_mF0381B32D172407AD80049857433DAA4206268EB_AdjustorThunk (RuntimeObject * __this, uint32_t ___mask0, const RuntimeMethod* method) { SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE * _thisAdjusted = reinterpret_cast<SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE *>(__this + 1); SessionMask__ctor_mF0381B32D172407AD80049857433DAA4206268EB(_thisAdjusted, ___mask0, method); } // System.Boolean System.Diagnostics.Tracing.SessionMask::IsEqualOrSupersetOf(System.Diagnostics.Tracing.SessionMask) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SessionMask_IsEqualOrSupersetOf_m59465BC65F95147CEC04D7C88FE57B2A8328BCAD (SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE * __this, SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE ___m0, const RuntimeMethod* method) { { uint32_t L_0 = __this->get_m_mask_0(); SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE L_1 = ___m0; uint32_t L_2 = L_1.get_m_mask_0(); uint32_t L_3 = __this->get_m_mask_0(); return (bool)((((int32_t)((int32_t)((int32_t)L_0|(int32_t)L_2))) == ((int32_t)L_3))? 1 : 0); } } IL2CPP_EXTERN_C bool SessionMask_IsEqualOrSupersetOf_m59465BC65F95147CEC04D7C88FE57B2A8328BCAD_AdjustorThunk (RuntimeObject * __this, SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE ___m0, const RuntimeMethod* method) { SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE * _thisAdjusted = reinterpret_cast<SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE *>(__this + 1); return SessionMask_IsEqualOrSupersetOf_m59465BC65F95147CEC04D7C88FE57B2A8328BCAD(_thisAdjusted, ___m0, method); } // System.Diagnostics.Tracing.SessionMask System.Diagnostics.Tracing.SessionMask::get_All() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE SessionMask_get_All_m496B5178F530B5516652F0F33CEF01BC9E3DD7B4 (const RuntimeMethod* method) { { SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE L_0; memset((&L_0), 0, sizeof(L_0)); SessionMask__ctor_mF0381B32D172407AD80049857433DAA4206268EB((&L_0), ((int32_t)15), /*hidden argument*/NULL); return L_0; } } // System.Diagnostics.Tracing.SessionMask System.Diagnostics.Tracing.SessionMask::FromId(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE SessionMask_FromId_m4766E347B5F280891336E8B9B70BD9F4EBD686CC (int32_t ___perEventSourceSessionId0, const RuntimeMethod* method) { { int32_t L_0 = ___perEventSourceSessionId0; SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE L_1; memset((&L_1), 0, sizeof(L_1)); SessionMask__ctor_mF0381B32D172407AD80049857433DAA4206268EB((&L_1), ((int32_t)((int32_t)1<<(int32_t)((int32_t)((int32_t)L_0&(int32_t)((int32_t)31))))), /*hidden argument*/NULL); return L_1; } } // System.UInt64 System.Diagnostics.Tracing.SessionMask::ToEventKeywords() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t SessionMask_ToEventKeywords_m0A85046D77F1C6AA244EB74A812E52C8059B77B8 (SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE * __this, const RuntimeMethod* method) { { uint32_t L_0 = __this->get_m_mask_0(); return ((int64_t)((int64_t)(((int64_t)((uint64_t)L_0)))<<(int32_t)((int32_t)44))); } } IL2CPP_EXTERN_C uint64_t SessionMask_ToEventKeywords_m0A85046D77F1C6AA244EB74A812E52C8059B77B8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE * _thisAdjusted = reinterpret_cast<SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE *>(__this + 1); return SessionMask_ToEventKeywords_m0A85046D77F1C6AA244EB74A812E52C8059B77B8(_thisAdjusted, method); } // System.Diagnostics.Tracing.SessionMask System.Diagnostics.Tracing.SessionMask::FromEventKeywords(System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE SessionMask_FromEventKeywords_m90707FEE5D3E1D84057394FAE517EF6B1696D701 (uint64_t ___m0, const RuntimeMethod* method) { { uint64_t L_0 = ___m0; SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE L_1; memset((&L_1), 0, sizeof(L_1)); SessionMask__ctor_mF0381B32D172407AD80049857433DAA4206268EB((&L_1), (((int32_t)((uint32_t)((int64_t)((uint64_t)L_0>>((int32_t)44)))))), /*hidden argument*/NULL); return L_1; } } // System.Boolean System.Diagnostics.Tracing.SessionMask::get_Item(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SessionMask_get_Item_mB7D297B67C35C99EB2FCBA1CC0EECC6BFB8D2E3A (SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE * __this, int32_t ___perEventSourceSessionId0, const RuntimeMethod* method) { { uint32_t L_0 = __this->get_m_mask_0(); int32_t L_1 = ___perEventSourceSessionId0; return (bool)((!(((uint64_t)((int64_t)((int64_t)(((int64_t)((uint64_t)L_0)))&(int64_t)(((int64_t)((int64_t)((int32_t)((int32_t)1<<(int32_t)((int32_t)((int32_t)L_1&(int32_t)((int32_t)31))))))))))) <= ((uint64_t)(((int64_t)((int64_t)0))))))? 1 : 0); } } IL2CPP_EXTERN_C bool SessionMask_get_Item_mB7D297B67C35C99EB2FCBA1CC0EECC6BFB8D2E3A_AdjustorThunk (RuntimeObject * __this, int32_t ___perEventSourceSessionId0, const RuntimeMethod* method) { SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE * _thisAdjusted = reinterpret_cast<SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE *>(__this + 1); return SessionMask_get_Item_mB7D297B67C35C99EB2FCBA1CC0EECC6BFB8D2E3A(_thisAdjusted, ___perEventSourceSessionId0, method); } // System.Void System.Diagnostics.Tracing.SessionMask::set_Item(System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SessionMask_set_Item_m0C2E974F91F0702A8D534619C30AEA4195D7D628 (SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE * __this, int32_t ___perEventSourceSessionId0, bool ___value1, const RuntimeMethod* method) { { bool L_0 = ___value1; if (!L_0) { goto IL_0017; } } { uint32_t L_1 = __this->get_m_mask_0(); int32_t L_2 = ___perEventSourceSessionId0; __this->set_m_mask_0(((int32_t)((int32_t)L_1|(int32_t)((int32_t)((int32_t)1<<(int32_t)((int32_t)((int32_t)L_2&(int32_t)((int32_t)31)))))))); return; } IL_0017: { uint32_t L_3 = __this->get_m_mask_0(); int32_t L_4 = ___perEventSourceSessionId0; __this->set_m_mask_0(((int32_t)((int32_t)L_3&(int32_t)((~((int32_t)((int32_t)1<<(int32_t)((int32_t)((int32_t)L_4&(int32_t)((int32_t)31)))))))))); return; } } IL2CPP_EXTERN_C void SessionMask_set_Item_m0C2E974F91F0702A8D534619C30AEA4195D7D628_AdjustorThunk (RuntimeObject * __this, int32_t ___perEventSourceSessionId0, bool ___value1, const RuntimeMethod* method) { SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE * _thisAdjusted = reinterpret_cast<SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE *>(__this + 1); SessionMask_set_Item_m0C2E974F91F0702A8D534619C30AEA4195D7D628(_thisAdjusted, ___perEventSourceSessionId0, ___value1, method); } // System.UInt64 System.Diagnostics.Tracing.SessionMask::op_Explicit(System.Diagnostics.Tracing.SessionMask) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t SessionMask_op_Explicit_m62151A83BD15863B4E030D07FB7621C2540A3CF7 (SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE ___m0, const RuntimeMethod* method) { { SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE L_0 = ___m0; uint32_t L_1 = L_0.get_m_mask_0(); return (((int64_t)((uint64_t)L_1))); } } // System.UInt32 System.Diagnostics.Tracing.SessionMask::op_Explicit(System.Diagnostics.Tracing.SessionMask) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t SessionMask_op_Explicit_m0098B07CE617722AD1EA9DF898D6539A0EEE19EE (SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE ___m0, const RuntimeMethod* method) { { SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE L_0 = ___m0; uint32_t L_1 = L_0.get_m_mask_0(); return L_1; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.SingleArrayTypeInfo::WriteMetadata(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,System.Diagnostics.Tracing.EventFieldFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SingleArrayTypeInfo_WriteMetadata_mE32CCB89C827B4652F6841A68F358FE77EAF96B9 (SingleArrayTypeInfo_t7D009CA00E2BC30821D9DADDDAD26C88484BD239 * __this, TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * ___collector0, String_t* ___name1, int32_t ___format2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SingleArrayTypeInfo_WriteMetadata_mE32CCB89C827B4652F6841A68F358FE77EAF96B9_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_0 = ___collector0; String_t* L_1 = ___name1; int32_t L_2 = ___format2; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_3 = Statics_Format32_mA958A8DDBBC7C05DD61B456C4835D04C34B508A4(L_2, ((int32_t)11), /*hidden argument*/NULL); NullCheck(L_0); TraceLoggingMetadataCollector_AddArray_m9074593EAE95D13523B4F7CF7FB94019CF49F406(L_0, L_1, L_3, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.SingleArrayTypeInfo::WriteData(System.Diagnostics.Tracing.TraceLoggingDataCollector,System.Single[]&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SingleArrayTypeInfo_WriteData_m9D1BDFF577F65CAEEAA39E2C630280F3E9B9A306 (SingleArrayTypeInfo_t7D009CA00E2BC30821D9DADDDAD26C88484BD239 * __this, TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * ___collector0, SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5** ___value1, const RuntimeMethod* method) { { TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * L_0 = ___collector0; SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5** L_1 = ___value1; SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* L_2 = *((SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5**)L_1); NullCheck(L_0); TraceLoggingDataCollector_AddArray_m76E2D1994E47488488F231C51F7133FD0E76C143(L_0, L_2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.SingleArrayTypeInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SingleArrayTypeInfo__ctor_m9897E1859A9FBE59C35E997146A165465927226F (SingleArrayTypeInfo_t7D009CA00E2BC30821D9DADDDAD26C88484BD239 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SingleArrayTypeInfo__ctor_m9897E1859A9FBE59C35E997146A165465927226F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingTypeInfo_1__ctor_mEFF9B2B6B6635C693E8C279AE02E8953ECB7EDDA(__this, /*hidden argument*/TraceLoggingTypeInfo_1__ctor_mEFF9B2B6B6635C693E8C279AE02E8953ECB7EDDA_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.SingleTypeInfo::WriteMetadata(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,System.Diagnostics.Tracing.EventFieldFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SingleTypeInfo_WriteMetadata_m79E35F64478C4ADEEAFFDE24311D0D30EFFBF4EF (SingleTypeInfo_tE256251DAD6B7FADC6378A7963F2C480467C31E8 * __this, TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * ___collector0, String_t* ___name1, int32_t ___format2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SingleTypeInfo_WriteMetadata_m79E35F64478C4ADEEAFFDE24311D0D30EFFBF4EF_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_0 = ___collector0; String_t* L_1 = ___name1; int32_t L_2 = ___format2; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_3 = Statics_Format32_mA958A8DDBBC7C05DD61B456C4835D04C34B508A4(L_2, ((int32_t)11), /*hidden argument*/NULL); NullCheck(L_0); TraceLoggingMetadataCollector_AddScalar_m136E01C1CEEFA221D5F78507069DFE8590CC15FB(L_0, L_1, L_3, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.SingleTypeInfo::WriteData(System.Diagnostics.Tracing.TraceLoggingDataCollector,System.Single&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SingleTypeInfo_WriteData_m6AB20CFEE17FABDF830351986D1873B6271A32B9 (SingleTypeInfo_tE256251DAD6B7FADC6378A7963F2C480467C31E8 * __this, TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * ___collector0, float* ___value1, const RuntimeMethod* method) { { TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * L_0 = ___collector0; float* L_1 = ___value1; float L_2 = *((float*)L_1); NullCheck(L_0); TraceLoggingDataCollector_AddScalar_m3277CF920B647C5CCC7B425A9743D1D9E766FC31(L_0, L_2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.SingleTypeInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SingleTypeInfo__ctor_mA5EBEEF7D8FA70CC36839D33FFEE1E92B36733C4 (SingleTypeInfo_tE256251DAD6B7FADC6378A7963F2C480467C31E8 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SingleTypeInfo__ctor_mA5EBEEF7D8FA70CC36839D33FFEE1E92B36733C4_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingTypeInfo_1__ctor_mE657899584504CCB3DEE1E1E6B1B6BE1D4F9A182(__this, /*hidden argument*/TraceLoggingTypeInfo_1__ctor_mE657899584504CCB3DEE1E1E6B1B6BE1D4F9A182_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Byte[] System.Diagnostics.Tracing.Statics::MetadataForString(System.String,System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* Statics_MetadataForString_m53EAC9E9AD6BA8CB18BB3ABE008C4D5D2725C34D (String_t* ___name0, int32_t ___prefixSize1, int32_t ___suffixSize2, int32_t ___additionalSize3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Statics_MetadataForString_m53EAC9E9AD6BA8CB18BB3ABE008C4D5D2725C34D_MetadataUsageId); s_Il2CppMethodInitialized = true; } ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL; uint16_t V_1 = 0; { String_t* L_0 = ___name0; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); Statics_CheckName_m001904DCAB16ACBA3DB970F2497D6032BBE26EDE(L_0, /*hidden argument*/NULL); Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_1 = Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9(/*hidden argument*/NULL); String_t* L_2 = ___name0; NullCheck(L_1); int32_t L_3 = VirtFuncInvoker1< int32_t, String_t* >::Invoke(9 /* System.Int32 System.Text.Encoding::GetByteCount(System.String) */, L_1, L_2); int32_t L_4 = ___prefixSize1; int32_t L_5 = ___suffixSize2; int32_t L_6 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)3)), (int32_t)L_4)), (int32_t)L_5)); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)L_6); V_0 = L_7; int32_t L_8 = ___additionalSize3; if (((int64_t)L_6 + (int64_t)L_8 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_6 + (int64_t)L_8 > (int64_t)kIl2CppInt32Max)) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, Statics_MetadataForString_m53EAC9E9AD6BA8CB18BB3ABE008C4D5D2725C34D_RuntimeMethod_var); if ((int64_t)(((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)L_8))) > 65535LL) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, Statics_MetadataForString_m53EAC9E9AD6BA8CB18BB3ABE008C4D5D2725C34D_RuntimeMethod_var); V_1 = (((uint16_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)L_8))))); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = V_0; uint16_t L_10 = V_1; NullCheck(L_9); (L_9)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)(((int32_t)((uint8_t)L_10)))); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_11 = V_0; uint16_t L_12 = V_1; NullCheck(L_11); (L_11)->SetAt(static_cast<il2cpp_array_size_t>(1), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_12>>(int32_t)8)))))); Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_13 = Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9(/*hidden argument*/NULL); String_t* L_14 = ___name0; String_t* L_15 = ___name0; NullCheck(L_15); int32_t L_16 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_15, /*hidden argument*/NULL); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_17 = V_0; int32_t L_18 = ___prefixSize1; NullCheck(L_13); VirtFuncInvoker5< int32_t, String_t*, int32_t, int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t >::Invoke(16 /* System.Int32 System.Text.Encoding::GetBytes(System.String,System.Int32,System.Int32,System.Byte[],System.Int32) */, L_13, L_14, 0, L_16, L_17, ((int32_t)il2cpp_codegen_add((int32_t)2, (int32_t)L_18))); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_19 = V_0; return L_19; } } // System.Void System.Diagnostics.Tracing.Statics::EncodeTags(System.Int32,System.Int32&,System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Statics_EncodeTags_m23393859C6E4565A03D11540CE8A133DBCC5A453 (int32_t ___tags0, int32_t* ___pos1, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___metadata2, const RuntimeMethod* method) { int32_t V_0 = 0; bool V_1 = false; uint8_t V_2 = 0x0; uint8_t G_B3_0 = 0x0; uint8_t G_B2_0 = 0x0; int32_t G_B4_0 = 0; uint8_t G_B4_1 = 0x0; { int32_t L_0 = ___tags0; V_0 = ((int32_t)((int32_t)L_0&(int32_t)((int32_t)268435455))); } IL_0008: { int32_t L_1 = V_0; V_2 = (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)((int32_t)((int32_t)L_1>>(int32_t)((int32_t)21)))&(int32_t)((int32_t)127)))))); int32_t L_2 = V_0; V_1 = (bool)((!(((uint32_t)((int32_t)((int32_t)L_2&(int32_t)((int32_t)2097151)))) <= ((uint32_t)0)))? 1 : 0); uint8_t L_3 = V_2; bool L_4 = V_1; G_B2_0 = L_3; if (L_4) { G_B3_0 = L_3; goto IL_0023; } } { G_B4_0 = 0; G_B4_1 = G_B2_0; goto IL_0028; } IL_0023: { G_B4_0 = ((int32_t)128); G_B4_1 = G_B3_0; } IL_0028: { V_2 = (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)G_B4_1|(int32_t)(((int32_t)((uint8_t)G_B4_0)))))))); int32_t L_5 = V_0; V_0 = ((int32_t)((int32_t)L_5<<(int32_t)7)); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = ___metadata2; if (!L_6) { goto IL_0038; } } { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = ___metadata2; int32_t* L_8 = ___pos1; int32_t L_9 = *((int32_t*)L_8); uint8_t L_10 = V_2; NullCheck(L_7); (L_7)->SetAt(static_cast<il2cpp_array_size_t>(L_9), (uint8_t)L_10); } IL_0038: { int32_t* L_11 = ___pos1; int32_t* L_12 = ___pos1; int32_t L_13 = *((int32_t*)L_12); *((int32_t*)L_11) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1)); bool L_14 = V_1; if (L_14) { goto IL_0008; } } { return; } } // System.Byte System.Diagnostics.Tracing.Statics::Combine(System.Int32,System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Statics_Combine_m8FC035624CCB68893AEC92F51283B310EA34A1FE (int32_t ___settingValue0, uint8_t ___defaultValue1, const RuntimeMethod* method) { { int32_t L_0 = ___settingValue0; int32_t L_1 = ___settingValue0; if ((((int32_t)(((int32_t)((uint8_t)L_0)))) == ((int32_t)L_1))) { goto IL_0007; } } { uint8_t L_2 = ___defaultValue1; return L_2; } IL_0007: { int32_t L_3 = ___settingValue0; return (uint8_t)(((int32_t)((uint8_t)L_3))); } } // System.Int32 System.Diagnostics.Tracing.Statics::Combine(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Statics_Combine_m0AEA4E5998C70D965FB75058CC425FEE60BE1AB7 (int32_t ___settingValue10, int32_t ___settingValue21, const RuntimeMethod* method) { { int32_t L_0 = ___settingValue10; int32_t L_1 = ___settingValue10; if ((((int32_t)(((int32_t)((uint8_t)L_0)))) == ((int32_t)L_1))) { goto IL_0007; } } { int32_t L_2 = ___settingValue21; return L_2; } IL_0007: { int32_t L_3 = ___settingValue10; return L_3; } } // System.Void System.Diagnostics.Tracing.Statics::CheckName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Statics_CheckName_m001904DCAB16ACBA3DB970F2497D6032BBE26EDE (String_t* ___name0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Statics_CheckName_m001904DCAB16ACBA3DB970F2497D6032BBE26EDE_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___name0; if (!L_0) { goto IL_0018; } } { String_t* L_1 = ___name0; NullCheck(L_1); int32_t L_2 = String_IndexOf_m2909B8CF585E1BD0C81E11ACA2F48012156FD5BD(L_1, 0, /*hidden argument*/NULL); if ((((int32_t)0) > ((int32_t)L_2))) { goto IL_0018; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_3 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_3, _stringLiteral6AE999552A0D2DCA14D62E2BC8B764D377B1DD6C, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Statics_CheckName_m001904DCAB16ACBA3DB970F2497D6032BBE26EDE_RuntimeMethod_var); } IL_0018: { return; } } // System.Boolean System.Diagnostics.Tracing.Statics::ShouldOverrideFieldName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Statics_ShouldOverrideFieldName_mDAF0438FDC16831195015D2F1C7563CFDAB740C5 (String_t* ___fieldName0, const RuntimeMethod* method) { { String_t* L_0 = ___fieldName0; NullCheck(L_0); int32_t L_1 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_0, /*hidden argument*/NULL); if ((((int32_t)L_1) > ((int32_t)2))) { goto IL_0015; } } { String_t* L_2 = ___fieldName0; NullCheck(L_2); Il2CppChar L_3 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_2, 0, /*hidden argument*/NULL); return (bool)((((int32_t)L_3) == ((int32_t)((int32_t)95)))? 1 : 0); } IL_0015: { return (bool)0; } } // System.Diagnostics.Tracing.TraceLoggingDataType System.Diagnostics.Tracing.Statics::MakeDataType(System.Diagnostics.Tracing.TraceLoggingDataType,System.Diagnostics.Tracing.EventFieldFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Statics_MakeDataType_m9C2ED4465BB2F30FED6D80D9A5237168265DF644 (int32_t ___baseType0, int32_t ___format1, const RuntimeMethod* method) { { int32_t L_0 = ___baseType0; int32_t L_1 = ___format1; return (int32_t)(((int32_t)((int32_t)((int32_t)((int32_t)L_0&(int32_t)((int32_t)31)))|(int32_t)((int32_t)((int32_t)L_1<<(int32_t)8))))); } } // System.Diagnostics.Tracing.TraceLoggingDataType System.Diagnostics.Tracing.Statics::Format8(System.Diagnostics.Tracing.EventFieldFormat,System.Diagnostics.Tracing.TraceLoggingDataType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Statics_Format8_m1C71026EA0BAB2008E3F0DC1889869CEE6D3822D (int32_t ___format0, int32_t ___native1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Statics_Format8_m1C71026EA0BAB2008E3F0DC1889869CEE6D3822D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___format0; switch (L_0) { case 0: { goto IL_001c; } case 1: { goto IL_0030; } case 2: { goto IL_001e; } case 3: { goto IL_0024; } case 4: { goto IL_002a; } } } { goto IL_0030; } IL_001c: { int32_t L_1 = ___native1; return L_1; } IL_001e: { return (int32_t)(((int32_t)516)); } IL_0024: { return (int32_t)(((int32_t)772)); } IL_002a: { return (int32_t)(((int32_t)1028)); } IL_0030: { int32_t L_2 = ___native1; int32_t L_3 = ___format0; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_4 = Statics_MakeDataType_m9C2ED4465BB2F30FED6D80D9A5237168265DF644(L_2, L_3, /*hidden argument*/NULL); return L_4; } } // System.Diagnostics.Tracing.TraceLoggingDataType System.Diagnostics.Tracing.Statics::Format16(System.Diagnostics.Tracing.EventFieldFormat,System.Diagnostics.Tracing.TraceLoggingDataType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Statics_Format16_m307BF384650F500E54F521F17E146DBBB98F4D08 (int32_t ___format0, int32_t ___native1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Statics_Format16_m307BF384650F500E54F521F17E146DBBB98F4D08_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___format0; switch (L_0) { case 0: { goto IL_001c; } case 1: { goto IL_002a; } case 2: { goto IL_001e; } case 3: { goto IL_002a; } case 4: { goto IL_0024; } } } { goto IL_002a; } IL_001c: { int32_t L_1 = ___native1; return L_1; } IL_001e: { return (int32_t)(((int32_t)518)); } IL_0024: { return (int32_t)(((int32_t)1030)); } IL_002a: { int32_t L_2 = ___native1; int32_t L_3 = ___format0; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_4 = Statics_MakeDataType_m9C2ED4465BB2F30FED6D80D9A5237168265DF644(L_2, L_3, /*hidden argument*/NULL); return L_4; } } // System.Diagnostics.Tracing.TraceLoggingDataType System.Diagnostics.Tracing.Statics::Format32(System.Diagnostics.Tracing.EventFieldFormat,System.Diagnostics.Tracing.TraceLoggingDataType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Statics_Format32_mA958A8DDBBC7C05DD61B456C4835D04C34B508A4 (int32_t ___format0, int32_t ___native1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Statics_Format32_mA958A8DDBBC7C05DD61B456C4835D04C34B508A4_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___format0; switch (L_0) { case 0: { goto IL_0021; } case 1: { goto IL_002f; } case 2: { goto IL_002f; } case 3: { goto IL_0023; } case 4: { goto IL_0026; } } } { int32_t L_1 = ___format0; if ((((int32_t)L_1) == ((int32_t)((int32_t)15)))) { goto IL_0029; } } { goto IL_002f; } IL_0021: { int32_t L_2 = ___native1; return L_2; } IL_0023: { return (int32_t)(((int32_t)13)); } IL_0026: { return (int32_t)(((int32_t)20)); } IL_0029: { return (int32_t)(((int32_t)3847)); } IL_002f: { int32_t L_3 = ___native1; int32_t L_4 = ___format0; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_5 = Statics_MakeDataType_m9C2ED4465BB2F30FED6D80D9A5237168265DF644(L_3, L_4, /*hidden argument*/NULL); return L_5; } } // System.Diagnostics.Tracing.TraceLoggingDataType System.Diagnostics.Tracing.Statics::Format64(System.Diagnostics.Tracing.EventFieldFormat,System.Diagnostics.Tracing.TraceLoggingDataType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Statics_Format64_m9EA165BBDCDC6E40774219DC6EB0214564FC5184 (int32_t ___format0, int32_t ___native1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Statics_Format64_m9EA165BBDCDC6E40774219DC6EB0214564FC5184_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___format0; if (!L_0) { goto IL_0009; } } { int32_t L_1 = ___format0; if ((((int32_t)L_1) == ((int32_t)4))) { goto IL_000b; } } { goto IL_000e; } IL_0009: { int32_t L_2 = ___native1; return L_2; } IL_000b: { return (int32_t)(((int32_t)21)); } IL_000e: { int32_t L_3 = ___native1; int32_t L_4 = ___format0; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_5 = Statics_MakeDataType_m9C2ED4465BB2F30FED6D80D9A5237168265DF644(L_3, L_4, /*hidden argument*/NULL); return L_5; } } // System.Diagnostics.Tracing.TraceLoggingDataType System.Diagnostics.Tracing.Statics::FormatPtr(System.Diagnostics.Tracing.EventFieldFormat,System.Diagnostics.Tracing.TraceLoggingDataType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Statics_FormatPtr_m00FD8183206A97949E3FD18EF644E9E1F8B1A5D5 (int32_t ___format0, int32_t ___native1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Statics_FormatPtr_m00FD8183206A97949E3FD18EF644E9E1F8B1A5D5_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___format0; if (!L_0) { goto IL_0009; } } { int32_t L_1 = ___format0; if ((((int32_t)L_1) == ((int32_t)4))) { goto IL_000b; } } { goto IL_0011; } IL_0009: { int32_t L_2 = ___native1; return L_2; } IL_000b: { IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_3 = ((Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_StaticFields*)il2cpp_codegen_static_fields_for(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var))->get_HexIntPtrType_2(); return L_3; } IL_0011: { int32_t L_4 = ___native1; int32_t L_5 = ___format0; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_6 = Statics_MakeDataType_m9C2ED4465BB2F30FED6D80D9A5237168265DF644(L_4, L_5, /*hidden argument*/NULL); return L_6; } } // System.Object System.Diagnostics.Tracing.Statics::CreateInstance(System.Type,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Statics_CreateInstance_m98A7DC128B291FF331E452EEE9F581AFB2CA6C0A (Type_t * ___type0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___parameters1, const RuntimeMethod* method) { { Type_t * L_0 = ___type0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = ___parameters1; RuntimeObject * L_2 = Activator_CreateInstance_mEE50708E1E8AAD4E5021A2FFDB992DDF65727E17(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Boolean System.Diagnostics.Tracing.Statics::IsValueType(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Statics_IsValueType_mA0D42D4823CA219F808641A80507260D2CC249A1 (Type_t * ___type0, const RuntimeMethod* method) { { Type_t * L_0 = ___type0; NullCheck(L_0); bool L_1 = Type_get_IsValueType_mDDCCBAE9B59A483CBC3E5C02E3D68CEBEB2E41A8(L_0, /*hidden argument*/NULL); return L_1; } } // System.Boolean System.Diagnostics.Tracing.Statics::IsEnum(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Statics_IsEnum_m9CD80B63044F16008C4CA89353FA72D2CA63EABF (Type_t * ___type0, const RuntimeMethod* method) { { Type_t * L_0 = ___type0; NullCheck(L_0); bool L_1 = VirtFuncInvoker0< bool >::Invoke(70 /* System.Boolean System.Type::get_IsEnum() */, L_0); return L_1; } } // System.Collections.Generic.IEnumerable`1<System.Reflection.PropertyInfo> System.Diagnostics.Tracing.Statics::GetProperties(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Statics_GetProperties_m5DFC41E95E0807B7F0EE158533B1B386AC80FAD1 (Type_t * ___type0, const RuntimeMethod* method) { { Type_t * L_0 = ___type0; NullCheck(L_0); PropertyInfoU5BU5D_tAD8E99B12FF99CA4F2EA37B612DE68E112B4CF7E* L_1 = Type_GetProperties_mEAE2A4049447E8BD9D18989A80E4C8BC742AE97D(L_0, /*hidden argument*/NULL); return (RuntimeObject*)L_1; } } // System.Reflection.MethodInfo System.Diagnostics.Tracing.Statics::GetGetMethod(System.Reflection.PropertyInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * Statics_GetGetMethod_mE98B4885D792A561AD1E0D5F019D080D45C193C4 (PropertyInfo_t * ___propInfo0, const RuntimeMethod* method) { { PropertyInfo_t * L_0 = ___propInfo0; NullCheck(L_0); MethodInfo_t * L_1 = PropertyInfo_GetGetMethod_m90BA90BA1CAFEE1CC273BB8B3BD289890373CB8A(L_0, /*hidden argument*/NULL); return L_1; } } // System.Reflection.MethodInfo System.Diagnostics.Tracing.Statics::GetDeclaredStaticMethod(System.Type,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * Statics_GetDeclaredStaticMethod_mEE3CD2B73C69050E9AF25D41A3D30F1E9EF4ACD4 (Type_t * ___declaringType0, String_t* ___name1, const RuntimeMethod* method) { { Type_t * L_0 = ___declaringType0; String_t* L_1 = ___name1; NullCheck(L_0); MethodInfo_t * L_2 = Type_GetMethod_m9EC42D4B1F765B882F516EE6D7970D51CF5D80DD(L_0, L_1, ((int32_t)42), /*hidden argument*/NULL); return L_2; } } // System.Boolean System.Diagnostics.Tracing.Statics::HasCustomAttribute(System.Reflection.PropertyInfo,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Statics_HasCustomAttribute_m4CBBA23FEE129EEFE8E35786BAE38CD6CB619F55 (PropertyInfo_t * ___propInfo0, Type_t * ___attributeType1, const RuntimeMethod* method) { { PropertyInfo_t * L_0 = ___propInfo0; Type_t * L_1 = ___attributeType1; NullCheck(L_0); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = VirtFuncInvoker2< ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, Type_t *, bool >::Invoke(11 /* System.Object[] System.Reflection.MemberInfo::GetCustomAttributes(System.Type,System.Boolean) */, L_0, L_1, (bool)0); NullCheck(L_2); return (bool)((!(((uint32_t)(((RuntimeArray*)L_2)->max_length)) <= ((uint32_t)0)))? 1 : 0); } } // System.Type[] System.Diagnostics.Tracing.Statics::GetGenericArguments(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* Statics_GetGenericArguments_m31D1FF50706DDF53DA40BACF27E0942F3A4E85A9 (Type_t * ___type0, const RuntimeMethod* method) { { Type_t * L_0 = ___type0; NullCheck(L_0); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_1 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(98 /* System.Type[] System.Type::GetGenericArguments() */, L_0); return L_1; } } // System.Type System.Diagnostics.Tracing.Statics::FindEnumerableElementType(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Statics_FindEnumerableElementType_mE2B9BCD8FECD8262FA51BED1DD0AE91DD8C37180 (Type_t * ___type0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Statics_FindEnumerableElementType_mE2B9BCD8FECD8262FA51BED1DD0AE91DD8C37180_MetadataUsageId); s_Il2CppMethodInitialized = true; } Type_t * V_0 = NULL; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_1 = NULL; int32_t V_2 = 0; Type_t * V_3 = NULL; { V_0 = (Type_t *)NULL; Type_t * L_0 = ___type0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_1 = { reinterpret_cast<intptr_t> (IEnumerable_1_t6FAC70CFE4E34421830AE8D9FE19DA2A83B85B75_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_2 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_1, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); bool L_3 = Statics_IsGenericMatch_mB50849B2448DCAA07CD8C30B0EF05613CA6C4699(L_0, L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_001f; } } { Type_t * L_4 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_5 = Statics_GetGenericArguments_m31D1FF50706DDF53DA40BACF27E0942F3A4E85A9(L_4, /*hidden argument*/NULL); NullCheck(L_5); int32_t L_6 = 0; Type_t * L_7 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_6)); V_0 = L_7; goto IL_0064; } IL_001f: { Type_t * L_8 = ___type0; TypeFilter_t30BB04A68BC9FB949345457F71A9648BDB67FF18 * L_9 = (TypeFilter_t30BB04A68BC9FB949345457F71A9648BDB67FF18 *)il2cpp_codegen_object_new(TypeFilter_t30BB04A68BC9FB949345457F71A9648BDB67FF18_il2cpp_TypeInfo_var); TypeFilter__ctor_m5F16D7D0AB325EAF8F3DF7D8EFEABD6DC79A5D7F(L_9, NULL, (intptr_t)((intptr_t)Statics_IsGenericMatch_mB50849B2448DCAA07CD8C30B0EF05613CA6C4699_RuntimeMethod_var), /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_10 = { reinterpret_cast<intptr_t> (IEnumerable_1_t6FAC70CFE4E34421830AE8D9FE19DA2A83B85B75_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_11 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_10, /*hidden argument*/NULL); NullCheck(L_8); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_12 = VirtFuncInvoker2< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*, TypeFilter_t30BB04A68BC9FB949345457F71A9648BDB67FF18 *, RuntimeObject * >::Invoke(45 /* System.Type[] System.Type::FindInterfaces(System.Reflection.TypeFilter,System.Object) */, L_8, L_9, L_11); V_1 = L_12; V_2 = 0; goto IL_005e; } IL_0040: { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_13 = V_1; int32_t L_14 = V_2; NullCheck(L_13); int32_t L_15 = L_14; Type_t * L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15)); V_3 = L_16; Type_t * L_17 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_18 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_17, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_18) { goto IL_0051; } } { V_0 = (Type_t *)NULL; goto IL_0064; } IL_0051: { Type_t * L_19 = V_3; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_20 = Statics_GetGenericArguments_m31D1FF50706DDF53DA40BACF27E0942F3A4E85A9(L_19, /*hidden argument*/NULL); NullCheck(L_20); int32_t L_21 = 0; Type_t * L_22 = (L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_21)); V_0 = L_22; int32_t L_23 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); } IL_005e: { int32_t L_24 = V_2; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_25 = V_1; NullCheck(L_25); if ((((int32_t)L_24) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_25)->max_length))))))) { goto IL_0040; } } IL_0064: { Type_t * L_26 = V_0; return L_26; } } // System.Boolean System.Diagnostics.Tracing.Statics::IsGenericMatch(System.Type,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Statics_IsGenericMatch_mB50849B2448DCAA07CD8C30B0EF05613CA6C4699 (Type_t * ___type0, RuntimeObject * ___openType1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Statics_IsGenericMatch_mB50849B2448DCAA07CD8C30B0EF05613CA6C4699_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___type0; NullCheck(L_0); bool L_1 = VirtFuncInvoker0< bool >::Invoke(74 /* System.Boolean System.Type::get_IsGenericType() */, L_0); if (!L_1) { goto IL_001a; } } { Type_t * L_2 = ___type0; NullCheck(L_2); Type_t * L_3 = VirtFuncInvoker0< Type_t * >::Invoke(99 /* System.Type System.Type::GetGenericTypeDefinition() */, L_2); RuntimeObject * L_4 = ___openType1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_5 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_3, ((Type_t *)CastclassClass((RuntimeObject*)L_4, Type_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); return L_5; } IL_001a: { return (bool)0; } } // System.Delegate System.Diagnostics.Tracing.Statics::CreateDelegate(System.Type,System.Reflection.MethodInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Delegate_t * Statics_CreateDelegate_mF1C37CC7EA4839A092250B6E298BC5D6155F51E6 (Type_t * ___delegateType0, MethodInfo_t * ___methodInfo1, const RuntimeMethod* method) { { Type_t * L_0 = ___delegateType0; MethodInfo_t * L_1 = ___methodInfo1; Delegate_t * L_2 = Delegate_CreateDelegate_mD7C5EDDB32C63A9BD9DE43AC879AFF4EBC6641D1(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Diagnostics.Tracing.TraceLoggingTypeInfo System.Diagnostics.Tracing.Statics::GetTypeInfoInstance(System.Type,System.Collections.Generic.List`1<System.Type>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * Statics_GetTypeInfoInstance_mA015F72885AA57E7724BE14A8BE2AA83D93BC4A6 (Type_t * ___dataType0, List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * ___recursionCheck1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Statics_GetTypeInfoInstance_mA015F72885AA57E7724BE14A8BE2AA83D93BC4A6_MetadataUsageId); s_Il2CppMethodInitialized = true; } TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * V_0 = NULL; { Type_t * L_0 = ___dataType0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_1 = { reinterpret_cast<intptr_t> (Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_2 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_1, /*hidden argument*/NULL); bool L_3 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_001a; } } { TraceLoggingTypeInfo_1_tDD2B74A36968F646CCDFEB9CE4074A216009252C * L_4 = TraceLoggingTypeInfo_1_get_Instance_m8E59BB0AA299E5B826302E9355FD9A9D0E97B2CE(/*hidden argument*/TraceLoggingTypeInfo_1_get_Instance_m8E59BB0AA299E5B826302E9355FD9A9D0E97B2CE_RuntimeMethod_var); V_0 = L_4; goto IL_0087; } IL_001a: { Type_t * L_5 = ___dataType0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_6, /*hidden argument*/NULL); bool L_8 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_5, L_7, /*hidden argument*/NULL); if (!L_8) { goto IL_0034; } } { TraceLoggingTypeInfo_1_t443169292A139EC54B708D4B6023EA2449412265 * L_9 = TraceLoggingTypeInfo_1_get_Instance_m2C1BF8D240A8DEA3E364B6D04AE9994EBDBF915B(/*hidden argument*/TraceLoggingTypeInfo_1_get_Instance_m2C1BF8D240A8DEA3E364B6D04AE9994EBDBF915B_RuntimeMethod_var); V_0 = L_9; goto IL_0087; } IL_0034: { Type_t * L_10 = ___dataType0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_11 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_12 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_11, /*hidden argument*/NULL); bool L_13 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_10, L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_004e; } } { TraceLoggingTypeInfo_1_t34C750FAAA441003C34ECA6894E5D8640C78041D * L_14 = TraceLoggingTypeInfo_1_get_Instance_m018D99F4DF835BDA0D63795B9391EA91BCBB435F(/*hidden argument*/TraceLoggingTypeInfo_1_get_Instance_m018D99F4DF835BDA0D63795B9391EA91BCBB435F_RuntimeMethod_var); V_0 = L_14; goto IL_0087; } IL_004e: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_15 = { reinterpret_cast<intptr_t> (TraceLoggingTypeInfo_1_tDB0DA2DB310802F94B0A0088822973F4FC8CE2EC_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_16 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_15, /*hidden argument*/NULL); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_17 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)1); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_18 = L_17; Type_t * L_19 = ___dataType0; NullCheck(L_18); ArrayElementTypeCheck (L_18, L_19); (L_18)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_19); NullCheck(L_16); Type_t * L_20 = VirtFuncInvoker1< Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(94 /* System.Type System.Type::MakeGenericType(System.Type[]) */, L_16, L_18); IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); MethodInfo_t * L_21 = Statics_GetDeclaredStaticMethod_mEE3CD2B73C69050E9AF25D41A3D30F1E9EF4ACD4(L_20, _stringLiteralC1FC191BD74A6F60CD1113917CCCF33F6EB445B9, /*hidden argument*/NULL); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_22 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_23 = L_22; List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * L_24 = ___recursionCheck1; NullCheck(L_23); ArrayElementTypeCheck (L_23, L_24); (L_23)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_24); NullCheck(L_21); RuntimeObject * L_25 = MethodBase_Invoke_m471794D56262D9DB5B5A324883030AB16BD39674(L_21, NULL, L_23, /*hidden argument*/NULL); V_0 = ((TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)CastclassClass((RuntimeObject*)L_25, TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F_il2cpp_TypeInfo_var)); } IL_0087: { TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_26 = V_0; return L_26; } } // System.Void System.Diagnostics.Tracing.Statics::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Statics__cctor_m9E6415F9158F8E880C890D69A7E82A393871A7C5 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Statics__cctor_m9E6415F9158F8E880C890D69A7E82A393871A7C5_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B3_0 = 0; int32_t G_B6_0 = 0; int32_t G_B9_0 = 0; { int32_t L_0 = IntPtr_get_Size_m1342A61F11766A494F2F90D9B68CADAD62261929(/*hidden argument*/NULL); if ((((int32_t)L_0) == ((int32_t)8))) { goto IL_000b; } } { G_B3_0 = 7; goto IL_000d; } IL_000b: { G_B3_0 = ((int32_t)9); } IL_000d: { ((Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_StaticFields*)il2cpp_codegen_static_fields_for(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var))->set_IntPtrType_0(G_B3_0); int32_t L_1 = IntPtr_get_Size_m1342A61F11766A494F2F90D9B68CADAD62261929(/*hidden argument*/NULL); if ((((int32_t)L_1) == ((int32_t)8))) { goto IL_001d; } } { G_B6_0 = 8; goto IL_001f; } IL_001d: { G_B6_0 = ((int32_t)10); } IL_001f: { ((Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_StaticFields*)il2cpp_codegen_static_fields_for(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var))->set_UIntPtrType_1(G_B6_0); int32_t L_2 = IntPtr_get_Size_m1342A61F11766A494F2F90D9B68CADAD62261929(/*hidden argument*/NULL); if ((((int32_t)L_2) == ((int32_t)8))) { goto IL_0030; } } { G_B9_0 = ((int32_t)20); goto IL_0032; } IL_0030: { G_B9_0 = ((int32_t)21); } IL_0032: { ((Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_StaticFields*)il2cpp_codegen_static_fields_for(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var))->set_HexIntPtrType_2(G_B9_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.StringTypeInfo::WriteMetadata(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,System.Diagnostics.Tracing.EventFieldFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringTypeInfo_WriteMetadata_m7BA77BB436D3ECA5D0CA4E897F498B64B983BF67 (StringTypeInfo_tBDB74156A62E8057C5232323FF288C600F49BE26 * __this, TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * ___collector0, String_t* ___name1, int32_t ___format2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (StringTypeInfo_WriteMetadata_m7BA77BB436D3ECA5D0CA4E897F498B64B983BF67_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_0 = ___collector0; String_t* L_1 = ___name1; int32_t L_2 = ___format2; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_3 = Statics_MakeDataType_m9C2ED4465BB2F30FED6D80D9A5237168265DF644(((int32_t)22), L_2, /*hidden argument*/NULL); NullCheck(L_0); TraceLoggingMetadataCollector_AddBinary_mA1EC53EFE1C72570ABAF8FB53F773D52033FD257(L_0, L_1, L_3, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.StringTypeInfo::WriteData(System.Diagnostics.Tracing.TraceLoggingDataCollector,System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringTypeInfo_WriteData_mA87C3114049DFF26BA4F0C2505B303CCADD60202 (StringTypeInfo_tBDB74156A62E8057C5232323FF288C600F49BE26 * __this, TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * ___collector0, String_t** ___value1, const RuntimeMethod* method) { { TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * L_0 = ___collector0; String_t** L_1 = ___value1; String_t* L_2 = *((String_t**)L_1); NullCheck(L_0); TraceLoggingDataCollector_AddBinary_m816F3D72D6356A9016DCFC873BB18F31D3D00F08(L_0, L_2, /*hidden argument*/NULL); return; } } // System.Object System.Diagnostics.Tracing.StringTypeInfo::GetData(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * StringTypeInfo_GetData_mEB4630C27ED935B3728D577140D9902BA050E76B (StringTypeInfo_tBDB74156A62E8057C5232323FF288C600F49BE26 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (StringTypeInfo_GetData_mEB4630C27ED935B3728D577140D9902BA050E76B_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; { RuntimeObject * L_0 = ___value0; RuntimeObject * L_1 = TraceLoggingTypeInfo_GetData_mD03CF4EF23DB30D47C43B2444B1FF4AFC6D76A13(__this, L_0, /*hidden argument*/NULL); V_0 = L_1; RuntimeObject * L_2 = V_0; if (L_2) { goto IL_0011; } } { V_0 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709; } IL_0011: { RuntimeObject * L_3 = V_0; return L_3; } } // System.Void System.Diagnostics.Tracing.StringTypeInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringTypeInfo__ctor_mCBEF207AA52314389CDE3589F55D5A3B4CA48ADD (StringTypeInfo_tBDB74156A62E8057C5232323FF288C600F49BE26 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (StringTypeInfo__ctor_mCBEF207AA52314389CDE3589F55D5A3B4CA48ADD_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingTypeInfo_1__ctor_m2A7493F8B3D498E6F09A28DCF8EE57C970C27469(__this, /*hidden argument*/TraceLoggingTypeInfo_1__ctor_m2A7493F8B3D498E6F09A28DCF8EE57C970C27469_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.TimeSpanTypeInfo::WriteMetadata(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,System.Diagnostics.Tracing.EventFieldFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeSpanTypeInfo_WriteMetadata_m2CE971266F080B99103DD39DEACD4816BAA46941 (TimeSpanTypeInfo_t81B67AE1FF6747F715CCBD69C3F45800A8D6BDFA * __this, TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * ___collector0, String_t* ___name1, int32_t ___format2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeSpanTypeInfo_WriteMetadata_m2CE971266F080B99103DD39DEACD4816BAA46941_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_0 = ___collector0; String_t* L_1 = ___name1; int32_t L_2 = ___format2; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_3 = Statics_MakeDataType_m9C2ED4465BB2F30FED6D80D9A5237168265DF644(((int32_t)9), L_2, /*hidden argument*/NULL); NullCheck(L_0); TraceLoggingMetadataCollector_AddScalar_m136E01C1CEEFA221D5F78507069DFE8590CC15FB(L_0, L_1, L_3, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TimeSpanTypeInfo::WriteData(System.Diagnostics.Tracing.TraceLoggingDataCollector,System.TimeSpan&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeSpanTypeInfo_WriteData_m81F5FADA9F320944D55D956560A45A00DFC8A938 (TimeSpanTypeInfo_t81B67AE1FF6747F715CCBD69C3F45800A8D6BDFA * __this, TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * ___collector0, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * ___value1, const RuntimeMethod* method) { { TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * L_0 = ___collector0; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * L_1 = ___value1; int64_t L_2 = TimeSpan_get_Ticks_m829C28C42028CDBFC9E338962DC7B6B10C8FFBE7_inline((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)L_1, /*hidden argument*/NULL); NullCheck(L_0); TraceLoggingDataCollector_AddScalar_mE84AEED03D7F7EDD965444C4A8A575FF99B78E1A(L_0, L_2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TimeSpanTypeInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeSpanTypeInfo__ctor_m61DE1869347F3CAD1FD95898E7E6BFDBB82EF248 (TimeSpanTypeInfo_t81B67AE1FF6747F715CCBD69C3F45800A8D6BDFA * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeSpanTypeInfo__ctor_m61DE1869347F3CAD1FD95898E7E6BFDBB82EF248_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingTypeInfo_1__ctor_m004FC4E35CAD0B857DC5BE29F01043DB25191055(__this, /*hidden argument*/TraceLoggingTypeInfo_1__ctor_m004FC4E35CAD0B857DC5BE29F01043DB25191055_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Boolean System.Diagnostics.Tracing.TplEtwProvider::get_Debug() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TplEtwProvider_get_Debug_mE5DDB49768D1B2F09A611B7AF9D24B09149322CB (TplEtwProvider_tE8D95D638ADE31D5FCEF08E88222D518C2FACC9E * __this, const RuntimeMethod* method) { { bool L_0 = EventSource_IsEnabled_mD4697D2FE23E685D66BBC81F3BB5AF7668167DDC(__this, 5, (((int64_t)((int64_t)1))), /*hidden argument*/NULL); return L_0; } } // System.Void System.Diagnostics.Tracing.TplEtwProvider::DebugFacilityMessage(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TplEtwProvider_DebugFacilityMessage_mEAF4EBC66501BB729030C9B3EB2FC9EBD9DB4493 (TplEtwProvider_tE8D95D638ADE31D5FCEF08E88222D518C2FACC9E * __this, String_t* ___Facility0, String_t* ___Message1, const RuntimeMethod* method) { { String_t* L_0 = ___Facility0; String_t* L_1 = ___Message1; EventSource_WriteEvent_mE27A6FC640BF894A83640A57FD16C9C26AB9FDF9(__this, 1, L_0, L_1, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TplEtwProvider::DebugFacilityMessage1(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TplEtwProvider_DebugFacilityMessage1_mAD7516D94C2F2699CAE46D17BD3D763AC2300F3E (TplEtwProvider_tE8D95D638ADE31D5FCEF08E88222D518C2FACC9E * __this, String_t* ___Facility0, String_t* ___Message1, String_t* ___Arg2, const RuntimeMethod* method) { { String_t* L_0 = ___Facility0; String_t* L_1 = ___Message1; String_t* L_2 = ___Arg2; EventSource_WriteEvent_m09CF0FC5F066EF4464A34539CE25033532AB6EC4(__this, 2, L_0, L_1, L_2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TplEtwProvider::SetActivityId(System.Guid) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TplEtwProvider_SetActivityId_m294926056209B6554A8B45C237CE0E63928AF1DB (TplEtwProvider_tE8D95D638ADE31D5FCEF08E88222D518C2FACC9E * __this, Guid_t ___Id0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TplEtwProvider_SetActivityId_m294926056209B6554A8B45C237CE0E63928AF1DB_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0; Guid_t L_2 = ___Id0; Guid_t L_3 = L_2; RuntimeObject * L_4 = Box(Guid_t_il2cpp_TypeInfo_var, &L_3); NullCheck(L_1); ArrayElementTypeCheck (L_1, L_4); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_4); EventSource_WriteEvent_m07CFBC104154E61897EFBA392944181E34C0200F(__this, 3, L_1, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TplEtwProvider::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TplEtwProvider__ctor_m49B82F71C1ADEDD9119398BF23696EB0B824153B (TplEtwProvider_tE8D95D638ADE31D5FCEF08E88222D518C2FACC9E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TplEtwProvider__ctor_m49B82F71C1ADEDD9119398BF23696EB0B824153B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB_il2cpp_TypeInfo_var); EventSource__ctor_m609A5F8A53C64F1F7E5CEEE5427E77F4D3F4B52A(__this, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TplEtwProvider::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TplEtwProvider__cctor_m27EF691E2942DB426459BCED11B64491FB51A46A (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TplEtwProvider__cctor_m27EF691E2942DB426459BCED11B64491FB51A46A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TplEtwProvider_tE8D95D638ADE31D5FCEF08E88222D518C2FACC9E * L_0 = (TplEtwProvider_tE8D95D638ADE31D5FCEF08E88222D518C2FACC9E *)il2cpp_codegen_object_new(TplEtwProvider_tE8D95D638ADE31D5FCEF08E88222D518C2FACC9E_il2cpp_TypeInfo_var); TplEtwProvider__ctor_m49B82F71C1ADEDD9119398BF23696EB0B824153B(L_0, /*hidden argument*/NULL); ((TplEtwProvider_tE8D95D638ADE31D5FCEF08E88222D518C2FACC9E_StaticFields*)il2cpp_codegen_static_fields_for(TplEtwProvider_tE8D95D638ADE31D5FCEF08E88222D518C2FACC9E_il2cpp_TypeInfo_var))->set_Log_29(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector__ctor_m4CB8F762D485A018F9200649D56FCCA04BF7053C (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); return; } } // System.Int32 System.Diagnostics.Tracing.TraceLoggingDataCollector::BeginBufferedArray() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TraceLoggingDataCollector_BeginBufferedArray_m91FF12562BC919A7C536F6845DE205A13C9D489B (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_BeginBufferedArray_m91FF12562BC919A7C536F6845DE205A13C9D489B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = DataCollector_BeginBufferedArray_m807DC271CDB214E02B63EA8790080AB3C45779B5((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)(((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()), /*hidden argument*/NULL); return L_0; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::EndBufferedArray(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_EndBufferedArray_m7973ADCE6DA8C4717FACC298D317F417833C10A5 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, int32_t ___bookmark0, int32_t ___count1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_EndBufferedArray_m7973ADCE6DA8C4717FACC298D317F417833C10A5_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___bookmark0; int32_t L_1 = ___count1; DataCollector_EndBufferedArray_m5EB7D38BB8818E569778C5C57DAEE5128AA4634F((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)(((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()), L_0, L_1, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddScalar(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddScalar_m030CF1F0AAABF9BA35B0AA6620E0902B72BFBA6F (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, bool ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddScalar_m030CF1F0AAABF9BA35B0AA6620E0902B72BFBA6F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { DataCollector_AddScalar_m08825D15318C9D82B2DFB7785373CA14387F4D02((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)(((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()), (void*)(void*)(((uintptr_t)(&___value0))), 1, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddScalar(System.SByte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddScalar_m19856EAB8A7B3627A41A2D0BC36E9561E3B8361D (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, int8_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddScalar_m19856EAB8A7B3627A41A2D0BC36E9561E3B8361D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { DataCollector_AddScalar_m08825D15318C9D82B2DFB7785373CA14387F4D02((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)(((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()), (void*)(void*)(((uintptr_t)(&___value0))), 1, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddScalar(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddScalar_mDDFC0EB23CCD9845D919E0DF87A3E00963B39FCF (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, uint8_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddScalar_mDDFC0EB23CCD9845D919E0DF87A3E00963B39FCF_MetadataUsageId); s_Il2CppMethodInitialized = true; } { DataCollector_AddScalar_m08825D15318C9D82B2DFB7785373CA14387F4D02((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)(((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()), (void*)(void*)(((uintptr_t)(&___value0))), 1, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddScalar(System.Int16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddScalar_mC374FF8A83BCBF186C122FBF7BE527B31E8519AD (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, int16_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddScalar_mC374FF8A83BCBF186C122FBF7BE527B31E8519AD_MetadataUsageId); s_Il2CppMethodInitialized = true; } { DataCollector_AddScalar_m08825D15318C9D82B2DFB7785373CA14387F4D02((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)(((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()), (void*)(void*)(((uintptr_t)(&___value0))), 2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddScalar(System.UInt16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddScalar_mC4001DABF0B0A58EBB93275501D999A00D7F61C6 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, uint16_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddScalar_mC4001DABF0B0A58EBB93275501D999A00D7F61C6_MetadataUsageId); s_Il2CppMethodInitialized = true; } { DataCollector_AddScalar_m08825D15318C9D82B2DFB7785373CA14387F4D02((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)(((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()), (void*)(void*)(((uintptr_t)(&___value0))), 2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddScalar(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddScalar_mF71D9A7523C70D7771FE22212CB301288C22980A (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddScalar_mF71D9A7523C70D7771FE22212CB301288C22980A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { DataCollector_AddScalar_m08825D15318C9D82B2DFB7785373CA14387F4D02((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)(((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()), (void*)(void*)(((uintptr_t)(&___value0))), 4, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddScalar(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddScalar_m3A8375255FAD53CE4EF938960ABCD165FC6727FF (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, uint32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddScalar_m3A8375255FAD53CE4EF938960ABCD165FC6727FF_MetadataUsageId); s_Il2CppMethodInitialized = true; } { DataCollector_AddScalar_m08825D15318C9D82B2DFB7785373CA14387F4D02((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)(((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()), (void*)(void*)(((uintptr_t)(&___value0))), 4, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddScalar(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddScalar_mE84AEED03D7F7EDD965444C4A8A575FF99B78E1A (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, int64_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddScalar_mE84AEED03D7F7EDD965444C4A8A575FF99B78E1A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { DataCollector_AddScalar_m08825D15318C9D82B2DFB7785373CA14387F4D02((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)(((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()), (void*)(void*)(((uintptr_t)(&___value0))), 8, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddScalar(System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddScalar_mA03D31A793FC01F72566FEB94EEE344ABBA25840 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, uint64_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddScalar_mA03D31A793FC01F72566FEB94EEE344ABBA25840_MetadataUsageId); s_Il2CppMethodInitialized = true; } { DataCollector_AddScalar_m08825D15318C9D82B2DFB7785373CA14387F4D02((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)(((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()), (void*)(void*)(((uintptr_t)(&___value0))), 8, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddScalar(System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddScalar_m71E11032CE1F1164095A4E11CDC2660F0457B62B (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, intptr_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddScalar_m71E11032CE1F1164095A4E11CDC2660F0457B62B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = IntPtr_get_Size_m1342A61F11766A494F2F90D9B68CADAD62261929(/*hidden argument*/NULL); DataCollector_AddScalar_m08825D15318C9D82B2DFB7785373CA14387F4D02((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)(((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()), (void*)(void*)(((uintptr_t)(&___value0))), L_0, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddScalar(System.UIntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddScalar_m5ED233D2CA9BA4750539B94FBBE49110025A5086 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, uintptr_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddScalar_m5ED233D2CA9BA4750539B94FBBE49110025A5086_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(UIntPtr_t_il2cpp_TypeInfo_var); int32_t L_0 = UIntPtr_get_Size_m063860D6F716C79EE77F379C6B20436413389E0B(/*hidden argument*/NULL); DataCollector_AddScalar_m08825D15318C9D82B2DFB7785373CA14387F4D02((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)(((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()), (void*)(void*)(((uintptr_t)(&___value0))), L_0, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddScalar(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddScalar_m3277CF920B647C5CCC7B425A9743D1D9E766FC31 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, float ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddScalar_m3277CF920B647C5CCC7B425A9743D1D9E766FC31_MetadataUsageId); s_Il2CppMethodInitialized = true; } { DataCollector_AddScalar_m08825D15318C9D82B2DFB7785373CA14387F4D02((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)(((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()), (void*)(void*)(((uintptr_t)(&___value0))), 4, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddScalar(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddScalar_m075915BEBFC9E59FB99C82B93B172439A96494D6 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, double ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddScalar_m075915BEBFC9E59FB99C82B93B172439A96494D6_MetadataUsageId); s_Il2CppMethodInitialized = true; } { DataCollector_AddScalar_m08825D15318C9D82B2DFB7785373CA14387F4D02((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)(((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()), (void*)(void*)(((uintptr_t)(&___value0))), 8, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddScalar(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddScalar_m2EE5A680F8697DA177197C284601CF9BF8903222 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, Il2CppChar ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddScalar_m2EE5A680F8697DA177197C284601CF9BF8903222_MetadataUsageId); s_Il2CppMethodInitialized = true; } { DataCollector_AddScalar_m08825D15318C9D82B2DFB7785373CA14387F4D02((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)(((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()), (void*)(void*)(((uintptr_t)(&___value0))), 2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddScalar(System.Guid) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddScalar_m7CCD2526F15B901CC200BA8767D1293C8A50FF2D (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, Guid_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddScalar_m7CCD2526F15B901CC200BA8767D1293C8A50FF2D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { DataCollector_AddScalar_m08825D15318C9D82B2DFB7785373CA14387F4D02((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)(((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()), (void*)(void*)(((uintptr_t)(&___value0))), ((int32_t)16), /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddBinary(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddBinary_m816F3D72D6356A9016DCFC873BB18F31D3D00F08 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, String_t* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddBinary_m816F3D72D6356A9016DCFC873BB18F31D3D00F08_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* G_B2_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B2_1 = NULL; String_t* G_B1_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B1_1 = NULL; int32_t G_B3_0 = 0; String_t* G_B3_1 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B3_2 = NULL; { String_t* L_0 = ___value0; String_t* L_1 = ___value0; G_B1_0 = L_0; G_B1_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); if (!L_1) { G_B2_0 = L_0; G_B2_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); goto IL_0013; } } { String_t* L_2 = ___value0; NullCheck(L_2); int32_t L_3 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_2, /*hidden argument*/NULL); G_B3_0 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_3, (int32_t)2)); G_B3_1 = G_B1_0; G_B3_2 = G_B1_1; goto IL_0014; } IL_0013: { G_B3_0 = 0; G_B3_1 = G_B2_0; G_B3_2 = G_B2_1; } IL_0014: { DataCollector_AddBinary_mAE50602915B73FC52AAAD2A3691AA7392AD7FFAC((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)G_B3_2, G_B3_1, G_B3_0, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddBinary(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddBinary_m64DF06B69258BB59BBAD7C6FF1158EA31BBF93D0 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddBinary_m64DF06B69258BB59BBAD7C6FF1158EA31BBF93D0_MetadataUsageId); s_Il2CppMethodInitialized = true; } ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* G_B2_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B2_1 = NULL; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* G_B1_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B1_1 = NULL; int32_t G_B3_0 = 0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* G_B3_1 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B3_2 = NULL; { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___value0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___value0; G_B1_0 = L_0; G_B1_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); if (!L_1) { G_B2_0 = L_0; G_B2_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); goto IL_000e; } } { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___value0; NullCheck(L_2); G_B3_0 = (((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))); G_B3_1 = G_B1_0; G_B3_2 = G_B1_1; goto IL_000f; } IL_000e: { G_B3_0 = 0; G_B3_1 = G_B2_0; G_B3_2 = G_B2_1; } IL_000f: { DataCollector_AddBinary_mF9695153355117D745C9BAEAD8EA656AA26CCE9C((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)G_B3_2, (RuntimeArray *)(RuntimeArray *)G_B3_1, G_B3_0, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddArray(System.Boolean[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddArray_m1440855FB11E1D00775EF965F243085370635048 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddArray_m1440855FB11E1D00775EF965F243085370635048_MetadataUsageId); s_Il2CppMethodInitialized = true; } BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* G_B2_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B2_1 = NULL; BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* G_B1_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B1_1 = NULL; int32_t G_B3_0 = 0; BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* G_B3_1 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B3_2 = NULL; { BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_0 = ___value0; BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_1 = ___value0; G_B1_0 = L_0; G_B1_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); if (!L_1) { G_B2_0 = L_0; G_B2_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); goto IL_000e; } } { BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_2 = ___value0; NullCheck(L_2); G_B3_0 = (((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))); G_B3_1 = G_B1_0; G_B3_2 = G_B1_1; goto IL_000f; } IL_000e: { G_B3_0 = 0; G_B3_1 = G_B2_0; G_B3_2 = G_B2_1; } IL_000f: { DataCollector_AddArray_m2936C91CE082A3131D866834C93721BB6CB68678((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)G_B3_2, (RuntimeArray *)(RuntimeArray *)G_B3_1, G_B3_0, 1, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddArray(System.SByte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddArray_m08BD4382BDFEBD4587DB60C10562B8F2E537D989 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddArray_m08BD4382BDFEBD4587DB60C10562B8F2E537D989_MetadataUsageId); s_Il2CppMethodInitialized = true; } SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889* G_B2_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B2_1 = NULL; SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889* G_B1_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B1_1 = NULL; int32_t G_B3_0 = 0; SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889* G_B3_1 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B3_2 = NULL; { SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889* L_0 = ___value0; SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889* L_1 = ___value0; G_B1_0 = L_0; G_B1_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); if (!L_1) { G_B2_0 = L_0; G_B2_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); goto IL_000e; } } { SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889* L_2 = ___value0; NullCheck(L_2); G_B3_0 = (((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))); G_B3_1 = G_B1_0; G_B3_2 = G_B1_1; goto IL_000f; } IL_000e: { G_B3_0 = 0; G_B3_1 = G_B2_0; G_B3_2 = G_B2_1; } IL_000f: { DataCollector_AddArray_m2936C91CE082A3131D866834C93721BB6CB68678((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)G_B3_2, (RuntimeArray *)(RuntimeArray *)G_B3_1, G_B3_0, 1, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddArray(System.Int16[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddArray_m1BC48EAF4F2E9DA95AE76D9EA98B44C20E79F01D (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddArray_m1BC48EAF4F2E9DA95AE76D9EA98B44C20E79F01D_MetadataUsageId); s_Il2CppMethodInitialized = true; } Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28* G_B2_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B2_1 = NULL; Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28* G_B1_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B1_1 = NULL; int32_t G_B3_0 = 0; Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28* G_B3_1 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B3_2 = NULL; { Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28* L_0 = ___value0; Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28* L_1 = ___value0; G_B1_0 = L_0; G_B1_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); if (!L_1) { G_B2_0 = L_0; G_B2_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); goto IL_000e; } } { Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28* L_2 = ___value0; NullCheck(L_2); G_B3_0 = (((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))); G_B3_1 = G_B1_0; G_B3_2 = G_B1_1; goto IL_000f; } IL_000e: { G_B3_0 = 0; G_B3_1 = G_B2_0; G_B3_2 = G_B2_1; } IL_000f: { DataCollector_AddArray_m2936C91CE082A3131D866834C93721BB6CB68678((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)G_B3_2, (RuntimeArray *)(RuntimeArray *)G_B3_1, G_B3_0, 2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddArray(System.UInt16[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddArray_m7FC7AC33CB29E1631DA57F8A5655C2BCA4B156B8 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddArray_m7FC7AC33CB29E1631DA57F8A5655C2BCA4B156B8_MetadataUsageId); s_Il2CppMethodInitialized = true; } UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* G_B2_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B2_1 = NULL; UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* G_B1_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B1_1 = NULL; int32_t G_B3_0 = 0; UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* G_B3_1 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B3_2 = NULL; { UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* L_0 = ___value0; UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* L_1 = ___value0; G_B1_0 = L_0; G_B1_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); if (!L_1) { G_B2_0 = L_0; G_B2_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); goto IL_000e; } } { UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* L_2 = ___value0; NullCheck(L_2); G_B3_0 = (((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))); G_B3_1 = G_B1_0; G_B3_2 = G_B1_1; goto IL_000f; } IL_000e: { G_B3_0 = 0; G_B3_1 = G_B2_0; G_B3_2 = G_B2_1; } IL_000f: { DataCollector_AddArray_m2936C91CE082A3131D866834C93721BB6CB68678((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)G_B3_2, (RuntimeArray *)(RuntimeArray *)G_B3_1, G_B3_0, 2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddArray(System.Int32[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddArray_mA5562435B07941B497C390BADA90476D3AEE0545 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddArray_mA5562435B07941B497C390BADA90476D3AEE0545_MetadataUsageId); s_Il2CppMethodInitialized = true; } Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* G_B2_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B2_1 = NULL; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* G_B1_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B1_1 = NULL; int32_t G_B3_0 = 0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* G_B3_1 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B3_2 = NULL; { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_0 = ___value0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = ___value0; G_B1_0 = L_0; G_B1_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); if (!L_1) { G_B2_0 = L_0; G_B2_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); goto IL_000e; } } { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = ___value0; NullCheck(L_2); G_B3_0 = (((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))); G_B3_1 = G_B1_0; G_B3_2 = G_B1_1; goto IL_000f; } IL_000e: { G_B3_0 = 0; G_B3_1 = G_B2_0; G_B3_2 = G_B2_1; } IL_000f: { DataCollector_AddArray_m2936C91CE082A3131D866834C93721BB6CB68678((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)G_B3_2, (RuntimeArray *)(RuntimeArray *)G_B3_1, G_B3_0, 4, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddArray(System.UInt32[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddArray_mD71A1CEEC1FD6E51D5E74065306089DE07418995 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddArray_mD71A1CEEC1FD6E51D5E74065306089DE07418995_MetadataUsageId); s_Il2CppMethodInitialized = true; } UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* G_B2_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B2_1 = NULL; UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* G_B1_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B1_1 = NULL; int32_t G_B3_0 = 0; UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* G_B3_1 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B3_2 = NULL; { UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_0 = ___value0; UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_1 = ___value0; G_B1_0 = L_0; G_B1_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); if (!L_1) { G_B2_0 = L_0; G_B2_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); goto IL_000e; } } { UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_2 = ___value0; NullCheck(L_2); G_B3_0 = (((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))); G_B3_1 = G_B1_0; G_B3_2 = G_B1_1; goto IL_000f; } IL_000e: { G_B3_0 = 0; G_B3_1 = G_B2_0; G_B3_2 = G_B2_1; } IL_000f: { DataCollector_AddArray_m2936C91CE082A3131D866834C93721BB6CB68678((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)G_B3_2, (RuntimeArray *)(RuntimeArray *)G_B3_1, G_B3_0, 4, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddArray(System.Int64[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddArray_m1AA74DD4E25E34905CD48CFCFBEBF4ABA32274D6 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddArray_m1AA74DD4E25E34905CD48CFCFBEBF4ABA32274D6_MetadataUsageId); s_Il2CppMethodInitialized = true; } Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* G_B2_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B2_1 = NULL; Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* G_B1_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B1_1 = NULL; int32_t G_B3_0 = 0; Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* G_B3_1 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B3_2 = NULL; { Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_0 = ___value0; Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_1 = ___value0; G_B1_0 = L_0; G_B1_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); if (!L_1) { G_B2_0 = L_0; G_B2_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); goto IL_000e; } } { Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_2 = ___value0; NullCheck(L_2); G_B3_0 = (((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))); G_B3_1 = G_B1_0; G_B3_2 = G_B1_1; goto IL_000f; } IL_000e: { G_B3_0 = 0; G_B3_1 = G_B2_0; G_B3_2 = G_B2_1; } IL_000f: { DataCollector_AddArray_m2936C91CE082A3131D866834C93721BB6CB68678((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)G_B3_2, (RuntimeArray *)(RuntimeArray *)G_B3_1, G_B3_0, 8, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddArray(System.UInt64[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddArray_m9441D79F32E8FA07EF0814D951CADD8C5530CD82 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddArray_m9441D79F32E8FA07EF0814D951CADD8C5530CD82_MetadataUsageId); s_Il2CppMethodInitialized = true; } UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* G_B2_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B2_1 = NULL; UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* G_B1_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B1_1 = NULL; int32_t G_B3_0 = 0; UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* G_B3_1 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B3_2 = NULL; { UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_0 = ___value0; UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_1 = ___value0; G_B1_0 = L_0; G_B1_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); if (!L_1) { G_B2_0 = L_0; G_B2_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); goto IL_000e; } } { UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_2 = ___value0; NullCheck(L_2); G_B3_0 = (((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))); G_B3_1 = G_B1_0; G_B3_2 = G_B1_1; goto IL_000f; } IL_000e: { G_B3_0 = 0; G_B3_1 = G_B2_0; G_B3_2 = G_B2_1; } IL_000f: { DataCollector_AddArray_m2936C91CE082A3131D866834C93721BB6CB68678((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)G_B3_2, (RuntimeArray *)(RuntimeArray *)G_B3_1, G_B3_0, 8, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddArray(System.IntPtr[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddArray_mA0C2DF68F4375AA0226E8E489974B7348EFAA6A1 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddArray_mA0C2DF68F4375AA0226E8E489974B7348EFAA6A1_MetadataUsageId); s_Il2CppMethodInitialized = true; } IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* G_B2_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B2_1 = NULL; IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* G_B1_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B1_1 = NULL; int32_t G_B3_0 = 0; IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* G_B3_1 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B3_2 = NULL; { IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* L_0 = ___value0; IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* L_1 = ___value0; G_B1_0 = L_0; G_B1_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); if (!L_1) { G_B2_0 = L_0; G_B2_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); goto IL_000e; } } { IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* L_2 = ___value0; NullCheck(L_2); G_B3_0 = (((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))); G_B3_1 = G_B1_0; G_B3_2 = G_B1_1; goto IL_000f; } IL_000e: { G_B3_0 = 0; G_B3_1 = G_B2_0; G_B3_2 = G_B2_1; } IL_000f: { int32_t L_3 = IntPtr_get_Size_m1342A61F11766A494F2F90D9B68CADAD62261929(/*hidden argument*/NULL); DataCollector_AddArray_m2936C91CE082A3131D866834C93721BB6CB68678((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)G_B3_2, (RuntimeArray *)(RuntimeArray *)G_B3_1, G_B3_0, L_3, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddArray(System.UIntPtr[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddArray_mF562DD1AE2222F9B6D47DD20DC59F084D5E78452 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, UIntPtrU5BU5D_tD5404ABA0AA72923421D3F931F031EEEC654429E* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddArray_mF562DD1AE2222F9B6D47DD20DC59F084D5E78452_MetadataUsageId); s_Il2CppMethodInitialized = true; } UIntPtrU5BU5D_tD5404ABA0AA72923421D3F931F031EEEC654429E* G_B2_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B2_1 = NULL; UIntPtrU5BU5D_tD5404ABA0AA72923421D3F931F031EEEC654429E* G_B1_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B1_1 = NULL; int32_t G_B3_0 = 0; UIntPtrU5BU5D_tD5404ABA0AA72923421D3F931F031EEEC654429E* G_B3_1 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B3_2 = NULL; { UIntPtrU5BU5D_tD5404ABA0AA72923421D3F931F031EEEC654429E* L_0 = ___value0; UIntPtrU5BU5D_tD5404ABA0AA72923421D3F931F031EEEC654429E* L_1 = ___value0; G_B1_0 = L_0; G_B1_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); if (!L_1) { G_B2_0 = L_0; G_B2_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); goto IL_000e; } } { UIntPtrU5BU5D_tD5404ABA0AA72923421D3F931F031EEEC654429E* L_2 = ___value0; NullCheck(L_2); G_B3_0 = (((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))); G_B3_1 = G_B1_0; G_B3_2 = G_B1_1; goto IL_000f; } IL_000e: { G_B3_0 = 0; G_B3_1 = G_B2_0; G_B3_2 = G_B2_1; } IL_000f: { IL2CPP_RUNTIME_CLASS_INIT(UIntPtr_t_il2cpp_TypeInfo_var); int32_t L_3 = UIntPtr_get_Size_m063860D6F716C79EE77F379C6B20436413389E0B(/*hidden argument*/NULL); DataCollector_AddArray_m2936C91CE082A3131D866834C93721BB6CB68678((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)G_B3_2, (RuntimeArray *)(RuntimeArray *)G_B3_1, G_B3_0, L_3, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddArray(System.Single[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddArray_m76E2D1994E47488488F231C51F7133FD0E76C143 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddArray_m76E2D1994E47488488F231C51F7133FD0E76C143_MetadataUsageId); s_Il2CppMethodInitialized = true; } SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* G_B2_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B2_1 = NULL; SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* G_B1_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B1_1 = NULL; int32_t G_B3_0 = 0; SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* G_B3_1 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B3_2 = NULL; { SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* L_0 = ___value0; SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* L_1 = ___value0; G_B1_0 = L_0; G_B1_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); if (!L_1) { G_B2_0 = L_0; G_B2_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); goto IL_000e; } } { SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* L_2 = ___value0; NullCheck(L_2); G_B3_0 = (((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))); G_B3_1 = G_B1_0; G_B3_2 = G_B1_1; goto IL_000f; } IL_000e: { G_B3_0 = 0; G_B3_1 = G_B2_0; G_B3_2 = G_B2_1; } IL_000f: { DataCollector_AddArray_m2936C91CE082A3131D866834C93721BB6CB68678((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)G_B3_2, (RuntimeArray *)(RuntimeArray *)G_B3_1, G_B3_0, 4, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddArray(System.Double[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddArray_mD60FAB2811AD7D19E8E40FB15D788A3A01F5CA19 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddArray_mD60FAB2811AD7D19E8E40FB15D788A3A01F5CA19_MetadataUsageId); s_Il2CppMethodInitialized = true; } DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* G_B2_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B2_1 = NULL; DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* G_B1_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B1_1 = NULL; int32_t G_B3_0 = 0; DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* G_B3_1 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B3_2 = NULL; { DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* L_0 = ___value0; DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* L_1 = ___value0; G_B1_0 = L_0; G_B1_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); if (!L_1) { G_B2_0 = L_0; G_B2_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); goto IL_000e; } } { DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* L_2 = ___value0; NullCheck(L_2); G_B3_0 = (((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))); G_B3_1 = G_B1_0; G_B3_2 = G_B1_1; goto IL_000f; } IL_000e: { G_B3_0 = 0; G_B3_1 = G_B2_0; G_B3_2 = G_B2_1; } IL_000f: { DataCollector_AddArray_m2936C91CE082A3131D866834C93721BB6CB68678((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)G_B3_2, (RuntimeArray *)(RuntimeArray *)G_B3_1, G_B3_0, 8, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddArray(System.Char[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddArray_m0AA3C1566B2BCAB6F0306AFFC8ED3E258F55DC98 (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddArray_m0AA3C1566B2BCAB6F0306AFFC8ED3E258F55DC98_MetadataUsageId); s_Il2CppMethodInitialized = true; } CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* G_B2_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B2_1 = NULL; CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* G_B1_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B1_1 = NULL; int32_t G_B3_0 = 0; CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* G_B3_1 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B3_2 = NULL; { CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = ___value0; CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_1 = ___value0; G_B1_0 = L_0; G_B1_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); if (!L_1) { G_B2_0 = L_0; G_B2_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); goto IL_000e; } } { CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_2 = ___value0; NullCheck(L_2); G_B3_0 = (((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))); G_B3_1 = G_B1_0; G_B3_2 = G_B1_1; goto IL_000f; } IL_000e: { G_B3_0 = 0; G_B3_1 = G_B2_0; G_B3_2 = G_B2_1; } IL_000f: { DataCollector_AddArray_m2936C91CE082A3131D866834C93721BB6CB68678((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)G_B3_2, (RuntimeArray *)(RuntimeArray *)G_B3_1, G_B3_0, 2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::AddArray(System.Guid[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector_AddArray_m817113A967AFB39C7DA9417AB3B90D48CAF2381A (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * __this, GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector_AddArray_m817113A967AFB39C7DA9417AB3B90D48CAF2381A_MetadataUsageId); s_Il2CppMethodInitialized = true; } GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* G_B2_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B2_1 = NULL; GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* G_B1_0 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B1_1 = NULL; int32_t G_B3_0 = 0; GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* G_B3_1 = NULL; DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 * G_B3_2 = NULL; { GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_0 = ___value0; GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_1 = ___value0; G_B1_0 = L_0; G_B1_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); if (!L_1) { G_B2_0 = L_0; G_B2_1 = (((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660_il2cpp_TypeInfo_var))->get_address_of_ThreadInstance_0()); goto IL_000e; } } { GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_2 = ___value0; NullCheck(L_2); G_B3_0 = (((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))); G_B3_1 = G_B1_0; G_B3_2 = G_B1_1; goto IL_000f; } IL_000e: { G_B3_0 = 0; G_B3_1 = G_B2_0; G_B3_2 = G_B2_1; } IL_000f: { DataCollector_AddArray_m2936C91CE082A3131D866834C93721BB6CB68678((DataCollector_t9621325BA9AAB82824DE3F54E894A817443B1660 *)G_B3_2, (RuntimeArray *)(RuntimeArray *)G_B3_1, G_B3_0, ((int32_t)16), /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingDataCollector::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingDataCollector__cctor_mA360AB2B8F61E680D6728A35C0CB957BBF2A55C3 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingDataCollector__cctor_mA360AB2B8F61E680D6728A35C0CB957BBF2A55C3_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * L_0 = (TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA *)il2cpp_codegen_object_new(TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA_il2cpp_TypeInfo_var); TraceLoggingDataCollector__ctor_m4CB8F762D485A018F9200649D56FCCA04BF7053C(L_0, /*hidden argument*/NULL); ((TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA_StaticFields*)il2cpp_codegen_static_fields_for(TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA_il2cpp_TypeInfo_var))->set_Instance_0(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #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.Diagnostics.Tracing.TraceLoggingEventTypes::.ctor(System.String,System.Diagnostics.Tracing.EventTags,System.Type[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingEventTypes__ctor_m8463F3C12A26246CDBCED020138DE3188B3D37C7 (TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * __this, String_t* ___name0, int32_t ___tags1, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___types2, const RuntimeMethod* method) { { int32_t L_0 = ___tags1; String_t* L_1 = ___name0; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_2 = ___types2; TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC* L_3 = TraceLoggingEventTypes_MakeArray_mFED40E1D79EAF166AC6ED6E0E83312D6791A7AF9(L_2, /*hidden argument*/NULL); TraceLoggingEventTypes__ctor_m01AA9D32D50DA43E399D2E4F6C6CE2686C860F0F(__this, L_0, L_1, L_3, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingEventTypes::.ctor(System.String,System.Diagnostics.Tracing.EventTags,System.Reflection.ParameterInfo[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingEventTypes__ctor_m08243D6F1D5DD75F9E2ED6C5C09CF1F25E506A4B (TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * __this, String_t* ___name0, int32_t ___tags1, ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* ___paramInfos2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingEventTypes__ctor_m08243D6F1D5DD75F9E2ED6C5C09CF1F25E506A4B_MetadataUsageId); s_Il2CppMethodInitialized = true; } TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * V_0 = NULL; int32_t V_1 = 0; TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * V_2 = NULL; String_t* V_3 = NULL; { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); String_t* L_0 = ___name0; if (L_0) { goto IL_0014; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral6AE999552A0D2DCA14D62E2BC8B764D377B1DD6C, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, TraceLoggingEventTypes__ctor_m08243D6F1D5DD75F9E2ED6C5C09CF1F25E506A4B_RuntimeMethod_var); } IL_0014: { ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_2 = ___paramInfos2; TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC* L_3 = TraceLoggingEventTypes_MakeArray_mFEB619E641B7C378811F11F7AEAC6B780B7FD27D(__this, L_2, /*hidden argument*/NULL); __this->set_typeInfos_0(L_3); String_t* L_4 = ___name0; __this->set_name_1(L_4); int32_t L_5 = ___tags1; __this->set_tags_2(L_5); __this->set_level_3((uint8_t)5); TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_6 = (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E *)il2cpp_codegen_object_new(TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E_il2cpp_TypeInfo_var); TraceLoggingMetadataCollector__ctor_mDD4E4C38DCE260B896FC5E8CFAF2699EFC4F98DC(L_6, /*hidden argument*/NULL); V_0 = L_6; V_1 = 0; goto IL_00af; } IL_0040: { TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC* L_7 = __this->get_typeInfos_0(); int32_t L_8 = V_1; NullCheck(L_7); int32_t L_9 = L_8; TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9)); V_2 = L_10; TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_11 = V_2; NullCheck(L_11); int32_t L_12 = TraceLoggingTypeInfo_get_Level_mD8605194C1D768CFA1DE8E64ADF5CF89CC082CBF_inline(L_11, /*hidden argument*/NULL); uint8_t L_13 = __this->get_level_3(); IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); uint8_t L_14 = Statics_Combine_m8FC035624CCB68893AEC92F51283B310EA34A1FE(L_12, L_13, /*hidden argument*/NULL); __this->set_level_3(L_14); TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_15 = V_2; NullCheck(L_15); int32_t L_16 = TraceLoggingTypeInfo_get_Opcode_mC5C1A9BD89FA8C785228FF61A25787BBC10544C1_inline(L_15, /*hidden argument*/NULL); uint8_t L_17 = __this->get_opcode_4(); uint8_t L_18 = Statics_Combine_m8FC035624CCB68893AEC92F51283B310EA34A1FE(L_16, L_17, /*hidden argument*/NULL); __this->set_opcode_4(L_18); int64_t L_19 = __this->get_keywords_5(); TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_20 = V_2; NullCheck(L_20); int64_t L_21 = TraceLoggingTypeInfo_get_Keywords_mDD63841C50042CE015E3E37C872F083190147C06_inline(L_20, /*hidden argument*/NULL); __this->set_keywords_5(((int64_t)((int64_t)L_19|(int64_t)L_21))); ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_22 = ___paramInfos2; int32_t L_23 = V_1; NullCheck(L_22); int32_t L_24 = L_23; ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_25 = (L_22)->GetAt(static_cast<il2cpp_array_size_t>(L_24)); NullCheck(L_25); String_t* L_26 = VirtFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Reflection.ParameterInfo::get_Name() */, L_25); V_3 = L_26; String_t* L_27 = V_3; bool L_28 = Statics_ShouldOverrideFieldName_mDAF0438FDC16831195015D2F1C7563CFDAB740C5(L_27, /*hidden argument*/NULL); if (!L_28) { goto IL_00a2; } } { TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_29 = V_2; NullCheck(L_29); String_t* L_30 = TraceLoggingTypeInfo_get_Name_m71FC96A7FD12F7BBF6B28451E05B549EC9C29995_inline(L_29, /*hidden argument*/NULL); V_3 = L_30; } IL_00a2: { TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_31 = V_2; TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_32 = V_0; String_t* L_33 = V_3; NullCheck(L_31); VirtActionInvoker3< TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E *, String_t*, int32_t >::Invoke(4 /* System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo::WriteMetadata(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,System.Diagnostics.Tracing.EventFieldFormat) */, L_31, L_32, L_33, 0); int32_t L_34 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_34, (int32_t)1)); } IL_00af: { int32_t L_35 = V_1; TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC* L_36 = __this->get_typeInfos_0(); NullCheck(L_36); if ((((int32_t)L_35) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_36)->max_length))))))) { goto IL_0040; } } { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_37 = V_0; NullCheck(L_37); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_38 = TraceLoggingMetadataCollector_GetMetadata_mE576A1EF4772025B805D74483A1E1EB4763DA25D(L_37, /*hidden argument*/NULL); __this->set_typeMetadata_6(L_38); TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_39 = V_0; NullCheck(L_39); int32_t L_40 = TraceLoggingMetadataCollector_get_ScratchSize_m60DBA65A18F39A132ACCCFAC00E282AD8CF78CE3(L_39, /*hidden argument*/NULL); __this->set_scratchSize_7(L_40); TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_41 = V_0; NullCheck(L_41); int32_t L_42 = TraceLoggingMetadataCollector_get_DataCount_m19A06BB75F607CBA8FE706B1374071D5C1A38526(L_41, /*hidden argument*/NULL); __this->set_dataCount_8(L_42); TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_43 = V_0; NullCheck(L_43); int32_t L_44 = TraceLoggingMetadataCollector_get_PinCount_m8784D51D54A3896114C22FE8DF1DDCC1CEF64C5A(L_43, /*hidden argument*/NULL); __this->set_pinCount_9(L_44); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingEventTypes::.ctor(System.Diagnostics.Tracing.EventTags,System.String,System.Diagnostics.Tracing.TraceLoggingTypeInfo[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingEventTypes__ctor_m01AA9D32D50DA43E399D2E4F6C6CE2686C860F0F (TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * __this, int32_t ___tags0, String_t* ___defaultName1, TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC* ___typeInfos2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingEventTypes__ctor_m01AA9D32D50DA43E399D2E4F6C6CE2686C860F0F_MetadataUsageId); s_Il2CppMethodInitialized = true; } TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * V_0 = NULL; TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC* V_1 = NULL; int32_t V_2 = 0; TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * V_3 = NULL; { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); String_t* L_0 = ___defaultName1; if (L_0) { goto IL_0014; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralF0FD5DE40D5624DD5531FCD827C27F5C7421A6CC, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, TraceLoggingEventTypes__ctor_m01AA9D32D50DA43E399D2E4F6C6CE2686C860F0F_RuntimeMethod_var); } IL_0014: { TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC* L_2 = ___typeInfos2; __this->set_typeInfos_0(L_2); String_t* L_3 = ___defaultName1; __this->set_name_1(L_3); int32_t L_4 = ___tags0; __this->set_tags_2(L_4); __this->set_level_3((uint8_t)5); TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_5 = (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E *)il2cpp_codegen_object_new(TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E_il2cpp_TypeInfo_var); TraceLoggingMetadataCollector__ctor_mDD4E4C38DCE260B896FC5E8CFAF2699EFC4F98DC(L_5, /*hidden argument*/NULL); V_0 = L_5; TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC* L_6 = ___typeInfos2; V_1 = L_6; V_2 = 0; goto IL_008e; } IL_003c: { TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC* L_7 = V_1; int32_t L_8 = V_2; NullCheck(L_7); int32_t L_9 = L_8; TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9)); V_3 = L_10; TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_11 = V_3; NullCheck(L_11); int32_t L_12 = TraceLoggingTypeInfo_get_Level_mD8605194C1D768CFA1DE8E64ADF5CF89CC082CBF_inline(L_11, /*hidden argument*/NULL); uint8_t L_13 = __this->get_level_3(); IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); uint8_t L_14 = Statics_Combine_m8FC035624CCB68893AEC92F51283B310EA34A1FE(L_12, L_13, /*hidden argument*/NULL); __this->set_level_3(L_14); TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_15 = V_3; NullCheck(L_15); int32_t L_16 = TraceLoggingTypeInfo_get_Opcode_mC5C1A9BD89FA8C785228FF61A25787BBC10544C1_inline(L_15, /*hidden argument*/NULL); uint8_t L_17 = __this->get_opcode_4(); uint8_t L_18 = Statics_Combine_m8FC035624CCB68893AEC92F51283B310EA34A1FE(L_16, L_17, /*hidden argument*/NULL); __this->set_opcode_4(L_18); int64_t L_19 = __this->get_keywords_5(); TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_20 = V_3; NullCheck(L_20); int64_t L_21 = TraceLoggingTypeInfo_get_Keywords_mDD63841C50042CE015E3E37C872F083190147C06_inline(L_20, /*hidden argument*/NULL); __this->set_keywords_5(((int64_t)((int64_t)L_19|(int64_t)L_21))); TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_22 = V_3; TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_23 = V_0; NullCheck(L_22); VirtActionInvoker3< TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E *, String_t*, int32_t >::Invoke(4 /* System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo::WriteMetadata(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,System.Diagnostics.Tracing.EventFieldFormat) */, L_22, L_23, (String_t*)NULL, 0); int32_t L_24 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1)); } IL_008e: { int32_t L_25 = V_2; TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC* L_26 = V_1; NullCheck(L_26); if ((((int32_t)L_25) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_26)->max_length))))))) { goto IL_003c; } } { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_27 = V_0; NullCheck(L_27); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_28 = TraceLoggingMetadataCollector_GetMetadata_mE576A1EF4772025B805D74483A1E1EB4763DA25D(L_27, /*hidden argument*/NULL); __this->set_typeMetadata_6(L_28); TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_29 = V_0; NullCheck(L_29); int32_t L_30 = TraceLoggingMetadataCollector_get_ScratchSize_m60DBA65A18F39A132ACCCFAC00E282AD8CF78CE3(L_29, /*hidden argument*/NULL); __this->set_scratchSize_7(L_30); TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_31 = V_0; NullCheck(L_31); int32_t L_32 = TraceLoggingMetadataCollector_get_DataCount_m19A06BB75F607CBA8FE706B1374071D5C1A38526(L_31, /*hidden argument*/NULL); __this->set_dataCount_8(L_32); TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_33 = V_0; NullCheck(L_33); int32_t L_34 = TraceLoggingMetadataCollector_get_PinCount_m8784D51D54A3896114C22FE8DF1DDCC1CEF64C5A(L_33, /*hidden argument*/NULL); __this->set_pinCount_9(L_34); return; } } // System.String System.Diagnostics.Tracing.TraceLoggingEventTypes::get_Name() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TraceLoggingEventTypes_get_Name_m582D5F0FF940D1585A968EF5D1625B14D8E055FA (TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_name_1(); return L_0; } } // System.Diagnostics.Tracing.EventTags System.Diagnostics.Tracing.TraceLoggingEventTypes::get_Tags() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TraceLoggingEventTypes_get_Tags_mEA1CB6CABA32F0B2FCDEAB82ACC7E3AE153B5E2C (TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_tags_2(); return L_0; } } // System.Diagnostics.Tracing.NameInfo System.Diagnostics.Tracing.TraceLoggingEventTypes::GetNameInfo(System.String,System.Diagnostics.Tracing.EventTags) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C * TraceLoggingEventTypes_GetNameInfo_m68D000807BAE5F6EC2C49E65F1C4C3671891F756 (TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * __this, String_t* ___name0, int32_t ___tags1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingEventTypes_GetNameInfo_m68D000807BAE5F6EC2C49E65F1C4C3671891F756_MetadataUsageId); s_Il2CppMethodInitialized = true; } NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C * V_0 = NULL; { ConcurrentSet_2_t9B37AE19508B10669906106353C62B3C877BFA95 * L_0 = __this->get_address_of_nameInfos_10(); String_t* L_1 = ___name0; int32_t L_2 = ___tags1; KeyValuePair_2_tC5E97F5FFE30651DD75FE9EC048400D9A5C57C74 L_3; memset((&L_3), 0, sizeof(L_3)); KeyValuePair_2__ctor_m8805E837B83D4F3E220B204070CC4EE0EC74A0EA((&L_3), L_1, L_2, /*hidden argument*/KeyValuePair_2__ctor_m8805E837B83D4F3E220B204070CC4EE0EC74A0EA_RuntimeMethod_var); NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C * L_4 = ConcurrentSet_2_TryGet_m5DC99116E6C7CEB7071738E390C028F16500D0F2((ConcurrentSet_2_t9B37AE19508B10669906106353C62B3C877BFA95 *)L_0, L_3, /*hidden argument*/ConcurrentSet_2_TryGet_m5DC99116E6C7CEB7071738E390C028F16500D0F2_RuntimeMethod_var); V_0 = L_4; NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C * L_5 = V_0; if (L_5) { goto IL_0031; } } { ConcurrentSet_2_t9B37AE19508B10669906106353C62B3C877BFA95 * L_6 = __this->get_address_of_nameInfos_10(); String_t* L_7 = ___name0; int32_t L_8 = ___tags1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = __this->get_typeMetadata_6(); NullCheck(L_9); NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C * L_10 = (NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C *)il2cpp_codegen_object_new(NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C_il2cpp_TypeInfo_var); NameInfo__ctor_m697D2AEA8E68842A940310E3B874709CAA86F4DE(L_10, L_7, L_8, (((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))), /*hidden argument*/NULL); NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C * L_11 = ConcurrentSet_2_GetOrAdd_m83EA02BE3061676F31A9D4A460D6C55CB5E0F1D3((ConcurrentSet_2_t9B37AE19508B10669906106353C62B3C877BFA95 *)L_6, L_10, /*hidden argument*/ConcurrentSet_2_GetOrAdd_m83EA02BE3061676F31A9D4A460D6C55CB5E0F1D3_RuntimeMethod_var); V_0 = L_11; } IL_0031: { NameInfo_t506A214E126C77BF344CC08864783DE4E5922D4C * L_12 = V_0; return L_12; } } // System.Diagnostics.Tracing.TraceLoggingTypeInfo[] System.Diagnostics.Tracing.TraceLoggingEventTypes::MakeArray(System.Reflection.ParameterInfo[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC* TraceLoggingEventTypes_MakeArray_mFEB619E641B7C378811F11F7AEAC6B780B7FD27D (TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * __this, ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* ___paramInfos0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingEventTypes_MakeArray_mFEB619E641B7C378811F11F7AEAC6B780B7FD27D_MetadataUsageId); s_Il2CppMethodInitialized = true; } List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * V_0 = NULL; TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC* V_1 = NULL; int32_t V_2 = 0; { ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_0 = ___paramInfos0; 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, _stringLiteral8CCFD0DE77C0784114B412169491697DF81B4CCD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, TraceLoggingEventTypes_MakeArray_mFEB619E641B7C378811F11F7AEAC6B780B7FD27D_RuntimeMethod_var); } IL_000e: { ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_2 = ___paramInfos0; NullCheck(L_2); List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * L_3 = (List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 *)il2cpp_codegen_object_new(List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0_il2cpp_TypeInfo_var); List_1__ctor_m3CD6B39CDE0FB0C6C1119BD8A03FB3EB9D46A740(L_3, (((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))), /*hidden argument*/List_1__ctor_m3CD6B39CDE0FB0C6C1119BD8A03FB3EB9D46A740_RuntimeMethod_var); V_0 = L_3; ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_4 = ___paramInfos0; NullCheck(L_4); TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC* L_5 = (TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC*)(TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC*)SZArrayNew(TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))); V_1 = L_5; V_2 = 0; goto IL_0039; } IL_0024: { TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC* L_6 = V_1; int32_t L_7 = V_2; ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_8 = ___paramInfos0; int32_t L_9 = V_2; NullCheck(L_8); int32_t L_10 = L_9; ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); NullCheck(L_11); Type_t * L_12 = VirtFuncInvoker0< Type_t * >::Invoke(7 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_11); List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * L_13 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_14 = Statics_GetTypeInfoInstance_mA015F72885AA57E7724BE14A8BE2AA83D93BC4A6(L_12, L_13, /*hidden argument*/NULL); NullCheck(L_6); ArrayElementTypeCheck (L_6, L_14); (L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_14); int32_t L_15 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_0039: { int32_t L_16 = V_2; ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_17 = ___paramInfos0; NullCheck(L_17); if ((((int32_t)L_16) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length))))))) { goto IL_0024; } } { TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC* L_18 = V_1; return L_18; } } // System.Diagnostics.Tracing.TraceLoggingTypeInfo[] System.Diagnostics.Tracing.TraceLoggingEventTypes::MakeArray(System.Type[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC* TraceLoggingEventTypes_MakeArray_mFED40E1D79EAF166AC6ED6E0E83312D6791A7AF9 (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___types0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingEventTypes_MakeArray_mFED40E1D79EAF166AC6ED6E0E83312D6791A7AF9_MetadataUsageId); s_Il2CppMethodInitialized = true; } List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * V_0 = NULL; TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC* V_1 = NULL; int32_t V_2 = 0; { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_0 = ___types0; 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, _stringLiteralE7B1FFF7007B635892A8F2C7C17F4FABC7AA2F8C, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, TraceLoggingEventTypes_MakeArray_mFED40E1D79EAF166AC6ED6E0E83312D6791A7AF9_RuntimeMethod_var); } IL_000e: { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_2 = ___types0; NullCheck(L_2); List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * L_3 = (List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 *)il2cpp_codegen_object_new(List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0_il2cpp_TypeInfo_var); List_1__ctor_m3CD6B39CDE0FB0C6C1119BD8A03FB3EB9D46A740(L_3, (((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))), /*hidden argument*/List_1__ctor_m3CD6B39CDE0FB0C6C1119BD8A03FB3EB9D46A740_RuntimeMethod_var); V_0 = L_3; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_4 = ___types0; NullCheck(L_4); TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC* L_5 = (TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC*)(TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC*)SZArrayNew(TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))); V_1 = L_5; V_2 = 0; goto IL_0034; } IL_0024: { TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC* L_6 = V_1; int32_t L_7 = V_2; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_8 = ___types0; int32_t L_9 = V_2; NullCheck(L_8); int32_t L_10 = L_9; Type_t * L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * L_12 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_13 = Statics_GetTypeInfoInstance_mA015F72885AA57E7724BE14A8BE2AA83D93BC4A6(L_11, L_12, /*hidden argument*/NULL); NullCheck(L_6); ArrayElementTypeCheck (L_6, L_13); (L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F *)L_13); int32_t L_14 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1)); } IL_0034: { int32_t L_15 = V_2; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_16 = ___types0; NullCheck(L_16); if ((((int32_t)L_15) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_16)->max_length))))))) { goto IL_0024; } } { TraceLoggingTypeInfoU5BU5D_t1B6542B40A911FABF686F860C2F97C7E09FD08AC* L_17 = V_1; return L_17; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.TraceLoggingMetadataCollector::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingMetadataCollector__ctor_mDD4E4C38DCE260B896FC5E8CFAF2699EFC4F98DC (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingMetadataCollector__ctor_mDD4E4C38DCE260B896FC5E8CFAF2699EFC4F98DC_MetadataUsageId); s_Il2CppMethodInitialized = true; } { __this->set_bufferedArrayFieldCount_2(((int32_t)-2147483648LL)); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * L_0 = (Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F *)il2cpp_codegen_object_new(Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F_il2cpp_TypeInfo_var); Impl__ctor_mEC3CC0DB840B066AF1C49C78EEF19669A6DD7CB6(L_0, /*hidden argument*/NULL); __this->set_impl_0(L_0); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingMetadataCollector::.ctor(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.Diagnostics.Tracing.FieldMetadata) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingMetadataCollector__ctor_mE342313AC4310277DB5AF429C77F61B12B67389D (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * ___other0, FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * ___group1, const RuntimeMethod* method) { { __this->set_bufferedArrayFieldCount_2(((int32_t)-2147483648LL)); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_0 = ___other0; NullCheck(L_0); Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * L_1 = L_0->get_impl_0(); __this->set_impl_0(L_1); FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * L_2 = ___group1; __this->set_currentGroup_1(L_2); return; } } // System.Diagnostics.Tracing.EventFieldTags System.Diagnostics.Tracing.TraceLoggingMetadataCollector::get_Tags() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TraceLoggingMetadataCollector_get_Tags_m0F851297CC3BBE6DEA97B0DDA27EBC4462FCDA4A (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_U3CTagsU3Ek__BackingField_3(); return L_0; } } // System.Void System.Diagnostics.Tracing.TraceLoggingMetadataCollector::set_Tags(System.Diagnostics.Tracing.EventFieldTags) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingMetadataCollector_set_Tags_mF42A2BC303AB0CE39F1CD993178A05E17D306B44 (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; __this->set_U3CTagsU3Ek__BackingField_3(L_0); return; } } // System.Int32 System.Diagnostics.Tracing.TraceLoggingMetadataCollector::get_ScratchSize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TraceLoggingMetadataCollector_get_ScratchSize_m60DBA65A18F39A132ACCCFAC00E282AD8CF78CE3 (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, const RuntimeMethod* method) { { Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * L_0 = __this->get_impl_0(); NullCheck(L_0); int16_t L_1 = L_0->get_scratchSize_1(); return L_1; } } // System.Int32 System.Diagnostics.Tracing.TraceLoggingMetadataCollector::get_DataCount() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TraceLoggingMetadataCollector_get_DataCount_m19A06BB75F607CBA8FE706B1374071D5C1A38526 (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, const RuntimeMethod* method) { { Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * L_0 = __this->get_impl_0(); NullCheck(L_0); int8_t L_1 = L_0->get_dataCount_2(); return L_1; } } // System.Int32 System.Diagnostics.Tracing.TraceLoggingMetadataCollector::get_PinCount() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TraceLoggingMetadataCollector_get_PinCount_m8784D51D54A3896114C22FE8DF1DDCC1CEF64C5A (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, const RuntimeMethod* method) { { Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * L_0 = __this->get_impl_0(); NullCheck(L_0); int8_t L_1 = L_0->get_pinCount_3(); return L_1; } } // System.Boolean System.Diagnostics.Tracing.TraceLoggingMetadataCollector::get_BeginningBufferedArray() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TraceLoggingMetadataCollector_get_BeginningBufferedArray_m875CC5C471F8E4C33CF2698B593570BE5984E0E6 (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_bufferedArrayFieldCount_2(); return (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0); } } // System.Diagnostics.Tracing.TraceLoggingMetadataCollector System.Diagnostics.Tracing.TraceLoggingMetadataCollector::AddGroup(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * TraceLoggingMetadataCollector_AddGroup_m938D13CD9816CA7D62161EF0700AAAEB45884160 (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, String_t* ___name0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingMetadataCollector_AddGroup_m938D13CD9816CA7D62161EF0700AAAEB45884160_MetadataUsageId); s_Il2CppMethodInitialized = true; } TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * V_0 = NULL; FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * V_1 = NULL; { V_0 = __this; String_t* L_0 = ___name0; if (L_0) { goto IL_000d; } } { bool L_1 = TraceLoggingMetadataCollector_get_BeginningBufferedArray_m875CC5C471F8E4C33CF2698B593570BE5984E0E6(__this, /*hidden argument*/NULL); if (!L_1) { goto IL_0031; } } IL_000d: { String_t* L_2 = ___name0; int32_t L_3 = TraceLoggingMetadataCollector_get_Tags_m0F851297CC3BBE6DEA97B0DDA27EBC4462FCDA4A_inline(__this, /*hidden argument*/NULL); bool L_4 = TraceLoggingMetadataCollector_get_BeginningBufferedArray_m875CC5C471F8E4C33CF2698B593570BE5984E0E6(__this, /*hidden argument*/NULL); FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * L_5 = (FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC *)il2cpp_codegen_object_new(FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC_il2cpp_TypeInfo_var); FieldMetadata__ctor_mE3EBA94F5DE1B2637E0A0515BEB5D866779D86D2(L_5, L_2, ((int32_t)24), L_3, L_4, /*hidden argument*/NULL); V_1 = L_5; FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * L_6 = V_1; TraceLoggingMetadataCollector_AddField_m9B34D7AB37CD85825092EC20DF72AC7254DA282F(__this, L_6, /*hidden argument*/NULL); FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * L_7 = V_1; TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_8 = (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E *)il2cpp_codegen_object_new(TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E_il2cpp_TypeInfo_var); TraceLoggingMetadataCollector__ctor_mE342313AC4310277DB5AF429C77F61B12B67389D(L_8, __this, L_7, /*hidden argument*/NULL); V_0 = L_8; } IL_0031: { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_9 = V_0; return L_9; } } // System.Void System.Diagnostics.Tracing.TraceLoggingMetadataCollector::AddScalar(System.String,System.Diagnostics.Tracing.TraceLoggingDataType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingMetadataCollector_AddScalar_m136E01C1CEEFA221D5F78507069DFE8590CC15FB (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, String_t* ___name0, int32_t ___type1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingMetadataCollector_AddScalar_m136E01C1CEEFA221D5F78507069DFE8590CC15FB_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___type1; V_1 = ((int32_t)((int32_t)L_0&(int32_t)((int32_t)31))); int32_t L_1 = V_1; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)3))) { case 0: { goto IL_006b; } case 1: { goto IL_006b; } case 2: { goto IL_006f; } case 3: { goto IL_006f; } case 4: { goto IL_0073; } case 5: { goto IL_0073; } case 6: { goto IL_0077; } case 7: { goto IL_0077; } case 8: { goto IL_0073; } case 9: { goto IL_0077; } case 10: { goto IL_0073; } case 11: { goto IL_0080; } case 12: { goto IL_007b; } case 13: { goto IL_0080; } case 14: { goto IL_0077; } case 15: { goto IL_007b; } case 16: { goto IL_0080; } case 17: { goto IL_0073; } case 18: { goto IL_0077; } } } { int32_t L_2 = V_1; if ((((int32_t)L_2) == ((int32_t)((int32_t)516)))) { goto IL_006b; } } { int32_t L_3 = V_1; if ((((int32_t)L_3) == ((int32_t)((int32_t)518)))) { goto IL_006f; } } { goto IL_0080; } IL_006b: { V_0 = 1; goto IL_008b; } IL_006f: { V_0 = 2; goto IL_008b; } IL_0073: { V_0 = 4; goto IL_008b; } IL_0077: { V_0 = 8; goto IL_008b; } IL_007b: { V_0 = ((int32_t)16); goto IL_008b; } IL_0080: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_4 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_4, _stringLiteralD0A3E7F81A9885E99049D1CAE0336D269D5E47A9, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, TraceLoggingMetadataCollector_AddScalar_m136E01C1CEEFA221D5F78507069DFE8590CC15FB_RuntimeMethod_var); } IL_008b: { Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * L_5 = __this->get_impl_0(); int32_t L_6 = V_0; NullCheck(L_5); Impl_AddScalar_mF4D0F93A5611A1A6C3DD3429D980B80B4470E611(L_5, L_6, /*hidden argument*/NULL); String_t* L_7 = ___name0; int32_t L_8 = ___type1; int32_t L_9 = TraceLoggingMetadataCollector_get_Tags_m0F851297CC3BBE6DEA97B0DDA27EBC4462FCDA4A_inline(__this, /*hidden argument*/NULL); bool L_10 = TraceLoggingMetadataCollector_get_BeginningBufferedArray_m875CC5C471F8E4C33CF2698B593570BE5984E0E6(__this, /*hidden argument*/NULL); FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * L_11 = (FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC *)il2cpp_codegen_object_new(FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC_il2cpp_TypeInfo_var); FieldMetadata__ctor_mE3EBA94F5DE1B2637E0A0515BEB5D866779D86D2(L_11, L_7, L_8, L_9, L_10, /*hidden argument*/NULL); TraceLoggingMetadataCollector_AddField_m9B34D7AB37CD85825092EC20DF72AC7254DA282F(__this, L_11, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingMetadataCollector::AddBinary(System.String,System.Diagnostics.Tracing.TraceLoggingDataType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingMetadataCollector_AddBinary_mA1EC53EFE1C72570ABAF8FB53F773D52033FD257 (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, String_t* ___name0, int32_t ___type1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingMetadataCollector_AddBinary_mA1EC53EFE1C72570ABAF8FB53F773D52033FD257_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { int32_t L_0 = ___type1; V_0 = ((int32_t)((int32_t)L_0&(int32_t)((int32_t)31))); int32_t L_1 = V_0; if ((((int32_t)L_1) == ((int32_t)((int32_t)14)))) { goto IL_001c; } } { int32_t L_2 = V_0; if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)((int32_t)22)))) > ((uint32_t)1)))) { goto IL_001c; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_3 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_3, _stringLiteralD0A3E7F81A9885E99049D1CAE0336D269D5E47A9, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, TraceLoggingMetadataCollector_AddBinary_mA1EC53EFE1C72570ABAF8FB53F773D52033FD257_RuntimeMethod_var); } IL_001c: { Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * L_4 = __this->get_impl_0(); NullCheck(L_4); Impl_AddScalar_mF4D0F93A5611A1A6C3DD3429D980B80B4470E611(L_4, 2, /*hidden argument*/NULL); Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * L_5 = __this->get_impl_0(); NullCheck(L_5); Impl_AddNonscalar_m75063AAB17BB5BF47DA14FFEB1166095E6EABD63(L_5, /*hidden argument*/NULL); String_t* L_6 = ___name0; int32_t L_7 = ___type1; int32_t L_8 = TraceLoggingMetadataCollector_get_Tags_m0F851297CC3BBE6DEA97B0DDA27EBC4462FCDA4A_inline(__this, /*hidden argument*/NULL); bool L_9 = TraceLoggingMetadataCollector_get_BeginningBufferedArray_m875CC5C471F8E4C33CF2698B593570BE5984E0E6(__this, /*hidden argument*/NULL); FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * L_10 = (FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC *)il2cpp_codegen_object_new(FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC_il2cpp_TypeInfo_var); FieldMetadata__ctor_mE3EBA94F5DE1B2637E0A0515BEB5D866779D86D2(L_10, L_6, L_7, L_8, L_9, /*hidden argument*/NULL); TraceLoggingMetadataCollector_AddField_m9B34D7AB37CD85825092EC20DF72AC7254DA282F(__this, L_10, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingMetadataCollector::AddArray(System.String,System.Diagnostics.Tracing.TraceLoggingDataType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingMetadataCollector_AddArray_m9074593EAE95D13523B4F7CF7FB94019CF49F406 (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, String_t* ___name0, int32_t ___type1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingMetadataCollector_AddArray_m9074593EAE95D13523B4F7CF7FB94019CF49F406_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { int32_t L_0 = ___type1; V_0 = ((int32_t)((int32_t)L_0&(int32_t)((int32_t)31))); int32_t L_1 = V_0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)1))) { case 0: { goto IL_007c; } case 1: { goto IL_007c; } case 2: { goto IL_007c; } case 3: { goto IL_007c; } case 4: { goto IL_007c; } case 5: { goto IL_007c; } case 6: { goto IL_007c; } case 7: { goto IL_007c; } case 8: { goto IL_007c; } case 9: { goto IL_007c; } case 10: { goto IL_007c; } case 11: { goto IL_007c; } case 12: { goto IL_007c; } case 13: { goto IL_0071; } case 14: { goto IL_007c; } case 15: { goto IL_0071; } case 16: { goto IL_007c; } case 17: { goto IL_0071; } case 18: { goto IL_0071; } case 19: { goto IL_007c; } case 20: { goto IL_007c; } } } { int32_t L_2 = V_0; if ((((int32_t)L_2) == ((int32_t)((int32_t)516)))) { goto IL_007c; } } { int32_t L_3 = V_0; if ((((int32_t)L_3) == ((int32_t)((int32_t)518)))) { goto IL_007c; } } IL_0071: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_4 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_4, _stringLiteralD0A3E7F81A9885E99049D1CAE0336D269D5E47A9, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, TraceLoggingMetadataCollector_AddArray_m9074593EAE95D13523B4F7CF7FB94019CF49F406_RuntimeMethod_var); } IL_007c: { bool L_5 = TraceLoggingMetadataCollector_get_BeginningBufferedArray_m875CC5C471F8E4C33CF2698B593570BE5984E0E6(__this, /*hidden argument*/NULL); if (!L_5) { goto IL_0094; } } { String_t* L_6 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralE232DC22EB087D95A05E4710FB9DED78D1688F68, /*hidden argument*/NULL); NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_7 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_7, L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, TraceLoggingMetadataCollector_AddArray_m9074593EAE95D13523B4F7CF7FB94019CF49F406_RuntimeMethod_var); } IL_0094: { Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * L_8 = __this->get_impl_0(); NullCheck(L_8); Impl_AddScalar_mF4D0F93A5611A1A6C3DD3429D980B80B4470E611(L_8, 2, /*hidden argument*/NULL); Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * L_9 = __this->get_impl_0(); NullCheck(L_9); Impl_AddNonscalar_m75063AAB17BB5BF47DA14FFEB1166095E6EABD63(L_9, /*hidden argument*/NULL); String_t* L_10 = ___name0; int32_t L_11 = ___type1; int32_t L_12 = TraceLoggingMetadataCollector_get_Tags_m0F851297CC3BBE6DEA97B0DDA27EBC4462FCDA4A_inline(__this, /*hidden argument*/NULL); FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * L_13 = (FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC *)il2cpp_codegen_object_new(FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC_il2cpp_TypeInfo_var); FieldMetadata__ctor_mE3EBA94F5DE1B2637E0A0515BEB5D866779D86D2(L_13, L_10, L_11, L_12, (bool)1, /*hidden argument*/NULL); TraceLoggingMetadataCollector_AddField_m9B34D7AB37CD85825092EC20DF72AC7254DA282F(__this, L_13, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingMetadataCollector::BeginBufferedArray() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingMetadataCollector_BeginBufferedArray_m10A9D19539D483BDE22950EB3B6D0C6BBBD1B461 (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingMetadataCollector_BeginBufferedArray_m10A9D19539D483BDE22950EB3B6D0C6BBBD1B461_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->get_bufferedArrayFieldCount_2(); if ((((int32_t)L_0) < ((int32_t)0))) { goto IL_0019; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralE232DC22EB087D95A05E4710FB9DED78D1688F68, /*hidden argument*/NULL); NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_2 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, TraceLoggingMetadataCollector_BeginBufferedArray_m10A9D19539D483BDE22950EB3B6D0C6BBBD1B461_RuntimeMethod_var); } IL_0019: { __this->set_bufferedArrayFieldCount_2(0); Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * L_3 = __this->get_impl_0(); NullCheck(L_3); Impl_BeginBuffered_m9503BE745DB36F52B94DE0EFE4FF4AA25DD28AAE(L_3, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingMetadataCollector::EndBufferedArray() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingMetadataCollector_EndBufferedArray_mD649372F4F19057DEA54C9D6442035161C38BA8E (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingMetadataCollector_EndBufferedArray_mD649372F4F19057DEA54C9D6442035161C38BA8E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->get_bufferedArrayFieldCount_2(); if ((((int32_t)L_0) == ((int32_t)1))) { goto IL_0019; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralB9A1EDEC2BC6B07157F69A2748CCE3DF4AA46053, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_2 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, TraceLoggingMetadataCollector_EndBufferedArray_mD649372F4F19057DEA54C9D6442035161C38BA8E_RuntimeMethod_var); } IL_0019: { __this->set_bufferedArrayFieldCount_2(((int32_t)-2147483648LL)); Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * L_3 = __this->get_impl_0(); NullCheck(L_3); Impl_EndBuffered_m4F0A7B23766A9959B15EE20D8F7DB0B80B6BF0F3(L_3, /*hidden argument*/NULL); return; } } // System.Byte[] System.Diagnostics.Tracing.TraceLoggingMetadataCollector::GetMetadata() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* TraceLoggingMetadataCollector_GetMetadata_mE576A1EF4772025B805D74483A1E1EB4763DA25D (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingMetadataCollector_GetMetadata_mE576A1EF4772025B805D74483A1E1EB4763DA25D_MetadataUsageId); s_Il2CppMethodInitialized = true; } ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL; { Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * L_0 = __this->get_impl_0(); NullCheck(L_0); int32_t L_1 = Impl_Encode_m447740B08170A4E421F5E7143EF3232A77AB36CD(L_0, (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL, /*hidden argument*/NULL); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)L_1); V_0 = L_2; Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * L_3 = __this->get_impl_0(); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = V_0; NullCheck(L_3); Impl_Encode_m447740B08170A4E421F5E7143EF3232A77AB36CD(L_3, L_4, /*hidden argument*/NULL); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = V_0; return L_5; } } // System.Void System.Diagnostics.Tracing.TraceLoggingMetadataCollector::AddField(System.Diagnostics.Tracing.FieldMetadata) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingMetadataCollector_AddField_m9B34D7AB37CD85825092EC20DF72AC7254DA282F (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * ___fieldMetadata0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingMetadataCollector_AddField_m9B34D7AB37CD85825092EC20DF72AC7254DA282F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingMetadataCollector_set_Tags_mF42A2BC303AB0CE39F1CD993178A05E17D306B44_inline(__this, 0, /*hidden argument*/NULL); int32_t L_0 = __this->get_bufferedArrayFieldCount_2(); __this->set_bufferedArrayFieldCount_2(((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)1))); Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * L_1 = __this->get_impl_0(); NullCheck(L_1); List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A * L_2 = L_1->get_fields_0(); FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * L_3 = ___fieldMetadata0; NullCheck(L_2); List_1_Add_m006566681F0BEFBCF7978CE2B3FA4CA1074A4B81(L_2, L_3, /*hidden argument*/List_1_Add_m006566681F0BEFBCF7978CE2B3FA4CA1074A4B81_RuntimeMethod_var); FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * L_4 = __this->get_currentGroup_1(); if (!L_4) { goto IL_0039; } } { FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * L_5 = __this->get_currentGroup_1(); NullCheck(L_5); FieldMetadata_IncrementStructFieldCount_m874313B0277DFA9F7B0309099139D9347E52F8AF(L_5, /*hidden argument*/NULL); } IL_0039: { 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.Diagnostics.Tracing.TraceLoggingMetadataCollector_Impl::AddScalar(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Impl_AddScalar_mF4D0F93A5611A1A6C3DD3429D980B80B4470E611 (Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * __this, int32_t ___size0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Impl_AddScalar_mF4D0F93A5611A1A6C3DD3429D980B80B4470E611_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->get_bufferNesting_4(); if (L_0) { goto IL_0035; } } { bool L_1 = __this->get_scalar_5(); if (L_1) { goto IL_001f; } } { int8_t L_2 = __this->get_dataCount_2(); if (((int64_t)L_2 + (int64_t)1 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_2 + (int64_t)1 > (int64_t)kIl2CppInt32Max)) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, Impl_AddScalar_mF4D0F93A5611A1A6C3DD3429D980B80B4470E611_RuntimeMethod_var); if ((int64_t)(((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)1))) > 127LL) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, Impl_AddScalar_mF4D0F93A5611A1A6C3DD3429D980B80B4470E611_RuntimeMethod_var); __this->set_dataCount_2((((int8_t)((int8_t)((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)1)))))); } IL_001f: { __this->set_scalar_5((bool)1); int16_t L_3 = __this->get_scratchSize_1(); int32_t L_4 = ___size0; if (((int64_t)L_3 + (int64_t)L_4 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_3 + (int64_t)L_4 > (int64_t)kIl2CppInt32Max)) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, Impl_AddScalar_mF4D0F93A5611A1A6C3DD3429D980B80B4470E611_RuntimeMethod_var); if ((int64_t)(((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)L_4))) > 32767LL) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, Impl_AddScalar_mF4D0F93A5611A1A6C3DD3429D980B80B4470E611_RuntimeMethod_var); __this->set_scratchSize_1((((int16_t)((int16_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)L_4)))))); } IL_0035: { return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingMetadataCollector_Impl::AddNonscalar() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Impl_AddNonscalar_m75063AAB17BB5BF47DA14FFEB1166095E6EABD63 (Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Impl_AddNonscalar_m75063AAB17BB5BF47DA14FFEB1166095E6EABD63_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->get_bufferNesting_4(); if (L_0) { goto IL_002d; } } { __this->set_scalar_5((bool)0); int8_t L_1 = __this->get_pinCount_3(); if (((int64_t)L_1 + (int64_t)1 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_1 + (int64_t)1 > (int64_t)kIl2CppInt32Max)) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, Impl_AddNonscalar_m75063AAB17BB5BF47DA14FFEB1166095E6EABD63_RuntimeMethod_var); if ((int64_t)(((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)1))) > 127LL) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, Impl_AddNonscalar_m75063AAB17BB5BF47DA14FFEB1166095E6EABD63_RuntimeMethod_var); __this->set_pinCount_3((((int8_t)((int8_t)((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)1)))))); int8_t L_2 = __this->get_dataCount_2(); if (((int64_t)L_2 + (int64_t)1 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_2 + (int64_t)1 > (int64_t)kIl2CppInt32Max)) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, Impl_AddNonscalar_m75063AAB17BB5BF47DA14FFEB1166095E6EABD63_RuntimeMethod_var); if ((int64_t)(((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)1))) > 127LL) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, Impl_AddNonscalar_m75063AAB17BB5BF47DA14FFEB1166095E6EABD63_RuntimeMethod_var); __this->set_dataCount_2((((int8_t)((int8_t)((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)1)))))); } IL_002d: { return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingMetadataCollector_Impl::BeginBuffered() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Impl_BeginBuffered_m9503BE745DB36F52B94DE0EFE4FF4AA25DD28AAE (Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_bufferNesting_4(); if (L_0) { goto IL_000e; } } { Impl_AddNonscalar_m75063AAB17BB5BF47DA14FFEB1166095E6EABD63(__this, /*hidden argument*/NULL); } IL_000e: { int32_t L_1 = __this->get_bufferNesting_4(); __this->set_bufferNesting_4(((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)1))); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingMetadataCollector_Impl::EndBuffered() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Impl_EndBuffered_m4F0A7B23766A9959B15EE20D8F7DB0B80B6BF0F3 (Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_bufferNesting_4(); __this->set_bufferNesting_4(((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)1))); return; } } // System.Int32 System.Diagnostics.Tracing.TraceLoggingMetadataCollector_Impl::Encode(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Impl_Encode_m447740B08170A4E421F5E7143EF3232A77AB36CD (Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___metadata0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Impl_Encode_m447740B08170A4E421F5E7143EF3232A77AB36CD_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; Enumerator_t1702FC15AAB92C75120937BC12A636955F7ED3BE V_1; memset((&V_1), 0, sizeof(V_1)); Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { V_0 = 0; List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A * L_0 = __this->get_fields_0(); NullCheck(L_0); Enumerator_t1702FC15AAB92C75120937BC12A636955F7ED3BE L_1 = List_1_GetEnumerator_m0115521342BC440B70CEEF37B78F635C14534498(L_0, /*hidden argument*/List_1_GetEnumerator_m0115521342BC440B70CEEF37B78F635C14534498_RuntimeMethod_var); V_1 = L_1; } IL_000e: try { // begin try (depth: 1) { goto IL_001f; } IL_0010: { FieldMetadata_tF8338AA83F53559A65AC62864F69CCC2FCAE24CC * L_2 = Enumerator_get_Current_m262C34F27FC20407B5225412B2C323C654BE9E88_inline((Enumerator_t1702FC15AAB92C75120937BC12A636955F7ED3BE *)(&V_1), /*hidden argument*/Enumerator_get_Current_m262C34F27FC20407B5225412B2C323C654BE9E88_RuntimeMethod_var); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = ___metadata0; NullCheck(L_2); FieldMetadata_Encode_mF59FC93BED0895548D79501F4EE2CF0FEAE1B39A(L_2, (int32_t*)(&V_0), L_3, /*hidden argument*/NULL); } IL_001f: { bool L_4 = Enumerator_MoveNext_m37F2C5471BB72DC494FC4C00D65102FEC56861F0((Enumerator_t1702FC15AAB92C75120937BC12A636955F7ED3BE *)(&V_1), /*hidden argument*/Enumerator_MoveNext_m37F2C5471BB72DC494FC4C00D65102FEC56861F0_RuntimeMethod_var); if (L_4) { goto IL_0010; } } IL_0028: { IL2CPP_LEAVE(0x38, FINALLY_002a); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_002a; } FINALLY_002a: { // begin finally (depth: 1) Enumerator_Dispose_m59B527F033176221C360655866D8623C286F8AAC((Enumerator_t1702FC15AAB92C75120937BC12A636955F7ED3BE *)(&V_1), /*hidden argument*/Enumerator_Dispose_m59B527F033176221C360655866D8623C286F8AAC_RuntimeMethod_var); IL2CPP_END_FINALLY(42) } // end finally (depth: 1) IL2CPP_CLEANUP(42) { IL2CPP_JUMP_TBL(0x38, IL_0038) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0038: { int32_t L_5 = V_0; return L_5; } } // System.Void System.Diagnostics.Tracing.TraceLoggingMetadataCollector_Impl::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Impl__ctor_mEC3CC0DB840B066AF1C49C78EEF19669A6DD7CB6 (Impl_tA1F83DA5BE2B28675D369B4585A71C5C1D0E669F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Impl__ctor_mEC3CC0DB840B066AF1C49C78EEF19669A6DD7CB6_MetadataUsageId); s_Il2CppMethodInitialized = true; } { List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A * L_0 = (List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A *)il2cpp_codegen_object_new(List_1_tD02062E952E6D59EA49722BDF8A3DEB4BF0ECC4A_il2cpp_TypeInfo_var); List_1__ctor_m5B92462E5F48CF2C1E83EFDE82BBFAB0429DC1B1(L_0, /*hidden argument*/List_1__ctor_m5B92462E5F48CF2C1E83EFDE82BBFAB0429DC1B1_RuntimeMethod_var); __this->set_fields_0(L_0); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo::.ctor(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingTypeInfo__ctor_m6122E84F15E9A052737518F60B4CA6F7C1D5CE74 (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * __this, Type_t * ___dataType0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingTypeInfo__ctor_m6122E84F15E9A052737518F60B4CA6F7C1D5CE74_MetadataUsageId); s_Il2CppMethodInitialized = true; } { __this->set_level_2((-1)); __this->set_opcode_3((-1)); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); Type_t * L_0 = ___dataType0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0028; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteralEDB7DA5C9962DD5BB5FAA1890386C1E1D4392661, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, TraceLoggingTypeInfo__ctor_m6122E84F15E9A052737518F60B4CA6F7C1D5CE74_RuntimeMethod_var); } IL_0028: { Type_t * L_3 = ___dataType0; NullCheck(L_3); String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_3); __this->set_name_0(L_4); Type_t * L_5 = ___dataType0; __this->set_dataType_5(L_5); return; } } // System.Void System.Diagnostics.Tracing.TraceLoggingTypeInfo::.ctor(System.Type,System.String,System.Diagnostics.Tracing.EventLevel,System.Diagnostics.Tracing.EventOpcode,System.Diagnostics.Tracing.EventKeywords,System.Diagnostics.Tracing.EventTags) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TraceLoggingTypeInfo__ctor_m057EE183448805D4BFBCA54029DBE7968712A270 (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * __this, Type_t * ___dataType0, String_t* ___name1, int32_t ___level2, int32_t ___opcode3, int64_t ___keywords4, int32_t ___tags5, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TraceLoggingTypeInfo__ctor_m057EE183448805D4BFBCA54029DBE7968712A270_MetadataUsageId); s_Il2CppMethodInitialized = true; } { __this->set_level_2((-1)); __this->set_opcode_3((-1)); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); Type_t * L_0 = ___dataType0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0028; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteralEDB7DA5C9962DD5BB5FAA1890386C1E1D4392661, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, TraceLoggingTypeInfo__ctor_m057EE183448805D4BFBCA54029DBE7968712A270_RuntimeMethod_var); } IL_0028: { String_t* L_3 = ___name1; if (L_3) { goto IL_0036; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_4, _stringLiteral3841A78AE59725028AE44BB042A13EBB8A621270, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, TraceLoggingTypeInfo__ctor_m057EE183448805D4BFBCA54029DBE7968712A270_RuntimeMethod_var); } IL_0036: { String_t* L_5 = ___name1; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); Statics_CheckName_m001904DCAB16ACBA3DB970F2497D6032BBE26EDE(L_5, /*hidden argument*/NULL); String_t* L_6 = ___name1; __this->set_name_0(L_6); int64_t L_7 = ___keywords4; __this->set_keywords_1(L_7); int32_t L_8 = ___level2; __this->set_level_2(L_8); int32_t L_9 = ___opcode3; __this->set_opcode_3(L_9); int32_t L_10 = ___tags5; __this->set_tags_4(L_10); Type_t * L_11 = ___dataType0; __this->set_dataType_5(L_11); return; } } // System.String System.Diagnostics.Tracing.TraceLoggingTypeInfo::get_Name() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TraceLoggingTypeInfo_get_Name_m71FC96A7FD12F7BBF6B28451E05B549EC9C29995 (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_name_0(); return L_0; } } // System.Diagnostics.Tracing.EventLevel System.Diagnostics.Tracing.TraceLoggingTypeInfo::get_Level() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TraceLoggingTypeInfo_get_Level_mD8605194C1D768CFA1DE8E64ADF5CF89CC082CBF (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_level_2(); return L_0; } } // System.Diagnostics.Tracing.EventOpcode System.Diagnostics.Tracing.TraceLoggingTypeInfo::get_Opcode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TraceLoggingTypeInfo_get_Opcode_mC5C1A9BD89FA8C785228FF61A25787BBC10544C1 (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_opcode_3(); return L_0; } } // System.Diagnostics.Tracing.EventKeywords System.Diagnostics.Tracing.TraceLoggingTypeInfo::get_Keywords() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t TraceLoggingTypeInfo_get_Keywords_mDD63841C50042CE015E3E37C872F083190147C06 (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * __this, const RuntimeMethod* method) { { int64_t L_0 = __this->get_keywords_1(); return L_0; } } // System.Diagnostics.Tracing.EventTags System.Diagnostics.Tracing.TraceLoggingTypeInfo::get_Tags() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TraceLoggingTypeInfo_get_Tags_mDBDBBB08C1EC06514A4F899DA788100F1C36AF77 (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_tags_4(); return L_0; } } // System.Type System.Diagnostics.Tracing.TraceLoggingTypeInfo::get_DataType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * TraceLoggingTypeInfo_get_DataType_m90D61A758FD34C646EDED59FF1A40F2B25604FED (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * __this, const RuntimeMethod* method) { { Type_t * L_0 = __this->get_dataType_5(); return L_0; } } // System.Object System.Diagnostics.Tracing.TraceLoggingTypeInfo::GetData(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TraceLoggingTypeInfo_GetData_mD03CF4EF23DB30D47C43B2444B1FF4AFC6D76A13 (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___value0; return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.TypeAnalysis::.ctor(System.Type,System.Diagnostics.Tracing.EventDataAttribute,System.Collections.Generic.List`1<System.Type>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeAnalysis__ctor_m7FE311A013186B7421FCA3574941907DB1FA4632 (TypeAnalysis_tDF056211469FB207E3865AC52165AE84BF156DFD * __this, Type_t * ___dataType0, EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * ___eventAttrib1, List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * ___recursionCheck2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeAnalysis__ctor_m7FE311A013186B7421FCA3574941907DB1FA4632_MetadataUsageId); s_Il2CppMethodInitialized = true; } List_1_t759B86C3AE2A2F5A5B70559ABC92F3CDAEB4DBEC * V_0 = NULL; RuntimeObject* V_1 = NULL; PropertyInfo_t * V_2 = NULL; MethodInfo_t * V_3 = NULL; TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * V_4 = NULL; EventFieldAttribute_tCD8E252D7D673724F2980B794282B715E16A675C * V_5 = NULL; String_t* V_6 = NULL; PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB* V_7 = NULL; int32_t V_8 = 0; TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * V_9 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); String_t* G_B14_0 = NULL; { __this->set_level_3((-1)); __this->set_opcode_4((-1)); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); Type_t * L_0 = ___dataType0; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); RuntimeObject* L_1 = Statics_GetProperties_m5DFC41E95E0807B7F0EE158533B1B386AC80FAD1(L_0, /*hidden argument*/NULL); List_1_t759B86C3AE2A2F5A5B70559ABC92F3CDAEB4DBEC * L_2 = (List_1_t759B86C3AE2A2F5A5B70559ABC92F3CDAEB4DBEC *)il2cpp_codegen_object_new(List_1_t759B86C3AE2A2F5A5B70559ABC92F3CDAEB4DBEC_il2cpp_TypeInfo_var); List_1__ctor_m517BD02F3D70BFB00581673F29184CD223F4585B(L_2, /*hidden argument*/List_1__ctor_m517BD02F3D70BFB00581673F29184CD223F4585B_RuntimeMethod_var); V_0 = L_2; NullCheck(L_1); RuntimeObject* L_3 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Reflection.PropertyInfo>::GetEnumerator() */, IEnumerable_1_t05EA2C465ACA2B28E0BF150280D7C95077A9697F_il2cpp_TypeInfo_var, L_1); V_1 = L_3; } IL_0026: try { // begin try (depth: 1) { goto IL_00d7; } IL_002b: { RuntimeObject* L_4 = V_1; NullCheck(L_4); PropertyInfo_t * L_5 = InterfaceFuncInvoker0< PropertyInfo_t * >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Reflection.PropertyInfo>::get_Current() */, IEnumerator_1_t537D797E2644AF9046B1E4CAAC405D8CE9D01534_il2cpp_TypeInfo_var, L_4); V_2 = L_5; PropertyInfo_t * L_6 = V_2; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_7 = { reinterpret_cast<intptr_t> (EventIgnoreAttribute_tB6631ED83A9E76708A9D3B0E9B945A4B4953F67A_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_8 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_7, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); bool L_9 = Statics_HasCustomAttribute_m4CBBA23FEE129EEFE8E35786BAE38CD6CB619F55(L_6, L_8, /*hidden argument*/NULL); if (L_9) { goto IL_00d7; } } IL_0047: { PropertyInfo_t * L_10 = V_2; NullCheck(L_10); bool L_11 = VirtFuncInvoker0< bool >::Invoke(17 /* System.Boolean System.Reflection.PropertyInfo::get_CanRead() */, L_10); if (!L_11) { goto IL_00d7; } } IL_0052: { PropertyInfo_t * L_12 = V_2; NullCheck(L_12); ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_13 = VirtFuncInvoker0< ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* >::Invoke(23 /* System.Reflection.ParameterInfo[] System.Reflection.PropertyInfo::GetIndexParameters() */, L_12); NullCheck(L_13); if ((((RuntimeArray*)L_13)->max_length)) { goto IL_00d7; } } IL_005b: { PropertyInfo_t * L_14 = V_2; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); MethodInfo_t * L_15 = Statics_GetGetMethod_mE98B4885D792A561AD1E0D5F019D080D45C193C4(L_14, /*hidden argument*/NULL); V_3 = L_15; MethodInfo_t * L_16 = V_3; bool L_17 = MethodInfo_op_Equality_m1E51FB51169B9B8FB3120ED5F9B454785932C5D0(L_16, (MethodInfo_t *)NULL, /*hidden argument*/NULL); if (L_17) { goto IL_00d7; } } IL_006b: { MethodInfo_t * L_18 = V_3; NullCheck(L_18); bool L_19 = MethodBase_get_IsStatic_m745A9BDA4869DB7CC4886436C52D34855C1270A5(L_18, /*hidden argument*/NULL); if (L_19) { goto IL_00d7; } } IL_0073: { MethodInfo_t * L_20 = V_3; NullCheck(L_20); bool L_21 = MethodBase_get_IsPublic_m9DCA641DBE6F06D0DC4A4B2828641A6DEA97F88B(L_20, /*hidden argument*/NULL); if (!L_21) { goto IL_00d7; } } IL_007b: { PropertyInfo_t * L_22 = V_2; NullCheck(L_22); Type_t * L_23 = VirtFuncInvoker0< Type_t * >::Invoke(19 /* System.Type System.Reflection.PropertyInfo::get_PropertyType() */, L_22); List_1_tE9D3AD6B1DEE5D980D8D2F6C31987453E6E1C1E0 * L_24 = ___recursionCheck2; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_25 = Statics_GetTypeInfoInstance_mA015F72885AA57E7724BE14A8BE2AA83D93BC4A6(L_23, L_24, /*hidden argument*/NULL); V_4 = L_25; PropertyInfo_t * L_26 = V_2; EventFieldAttribute_tCD8E252D7D673724F2980B794282B715E16A675C * L_27 = Statics_GetCustomAttribute_TisEventFieldAttribute_tCD8E252D7D673724F2980B794282B715E16A675C_m2EAB404362EDA0B68DE042BCE4A19835DA033E17(L_26, /*hidden argument*/Statics_GetCustomAttribute_TisEventFieldAttribute_tCD8E252D7D673724F2980B794282B715E16A675C_m2EAB404362EDA0B68DE042BCE4A19835DA033E17_RuntimeMethod_var); V_5 = L_27; EventFieldAttribute_tCD8E252D7D673724F2980B794282B715E16A675C * L_28 = V_5; if (!L_28) { goto IL_009e; } } IL_0095: { EventFieldAttribute_tCD8E252D7D673724F2980B794282B715E16A675C * L_29 = V_5; NullCheck(L_29); String_t* L_30 = EventFieldAttribute_get_Name_m49EA259EE61C829EA9F76EE79E0C1BC610235467_inline(L_29, /*hidden argument*/NULL); if (L_30) { goto IL_00bc; } } IL_009e: { PropertyInfo_t * L_31 = V_2; NullCheck(L_31); String_t* L_32 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_31); IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); bool L_33 = Statics_ShouldOverrideFieldName_mDAF0438FDC16831195015D2F1C7563CFDAB740C5(L_32, /*hidden argument*/NULL); if (L_33) { goto IL_00b3; } } IL_00ab: { PropertyInfo_t * L_34 = V_2; NullCheck(L_34); String_t* L_35 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_34); G_B14_0 = L_35; goto IL_00c3; } IL_00b3: { TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_36 = V_4; NullCheck(L_36); String_t* L_37 = TraceLoggingTypeInfo_get_Name_m71FC96A7FD12F7BBF6B28451E05B549EC9C29995_inline(L_36, /*hidden argument*/NULL); G_B14_0 = L_37; goto IL_00c3; } IL_00bc: { EventFieldAttribute_tCD8E252D7D673724F2980B794282B715E16A675C * L_38 = V_5; NullCheck(L_38); String_t* L_39 = EventFieldAttribute_get_Name_m49EA259EE61C829EA9F76EE79E0C1BC610235467_inline(L_38, /*hidden argument*/NULL); G_B14_0 = L_39; } IL_00c3: { V_6 = G_B14_0; List_1_t759B86C3AE2A2F5A5B70559ABC92F3CDAEB4DBEC * L_40 = V_0; String_t* L_41 = V_6; MethodInfo_t * L_42 = V_3; TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_43 = V_4; EventFieldAttribute_tCD8E252D7D673724F2980B794282B715E16A675C * L_44 = V_5; PropertyAnalysis_t3DC0F773245CD968BED647345E53535D422CF46A * L_45 = (PropertyAnalysis_t3DC0F773245CD968BED647345E53535D422CF46A *)il2cpp_codegen_object_new(PropertyAnalysis_t3DC0F773245CD968BED647345E53535D422CF46A_il2cpp_TypeInfo_var); PropertyAnalysis__ctor_m29B134F54408C609851A5B14D437079EE8F999BC(L_45, L_41, L_42, L_43, L_44, /*hidden argument*/NULL); NullCheck(L_40); List_1_Add_mAE60E38A3C5EB568E2FA5D503CBC7E188B2BC286(L_40, L_45, /*hidden argument*/List_1_Add_mAE60E38A3C5EB568E2FA5D503CBC7E188B2BC286_RuntimeMethod_var); } IL_00d7: { RuntimeObject* L_46 = V_1; NullCheck(L_46); bool L_47 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_46); if (L_47) { goto IL_002b; } } IL_00e2: { IL2CPP_LEAVE(0xEE, FINALLY_00e4); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00e4; } FINALLY_00e4: { // begin finally (depth: 1) { RuntimeObject* L_48 = V_1; if (!L_48) { goto IL_00ed; } } IL_00e7: { RuntimeObject* L_49 = V_1; NullCheck(L_49); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_49); } IL_00ed: { IL2CPP_END_FINALLY(228) } } // end finally (depth: 1) IL2CPP_CLEANUP(228) { IL2CPP_JUMP_TBL(0xEE, IL_00ee) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_00ee: { List_1_t759B86C3AE2A2F5A5B70559ABC92F3CDAEB4DBEC * L_50 = V_0; NullCheck(L_50); PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB* L_51 = List_1_ToArray_m25E26D7DD5298F9FCE28B119AA6856B693E5FB8C(L_50, /*hidden argument*/List_1_ToArray_m25E26D7DD5298F9FCE28B119AA6856B693E5FB8C_RuntimeMethod_var); __this->set_properties_0(L_51); PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB* L_52 = __this->get_properties_0(); V_7 = L_52; V_8 = 0; goto IL_0171; } IL_0107: { PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB* L_53 = V_7; int32_t L_54 = V_8; NullCheck(L_53); int32_t L_55 = L_54; PropertyAnalysis_t3DC0F773245CD968BED647345E53535D422CF46A * L_56 = (L_53)->GetAt(static_cast<il2cpp_array_size_t>(L_55)); NullCheck(L_56); TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_57 = L_56->get_typeInfo_2(); V_9 = L_57; TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_58 = V_9; NullCheck(L_58); int32_t L_59 = TraceLoggingTypeInfo_get_Level_mD8605194C1D768CFA1DE8E64ADF5CF89CC082CBF_inline(L_58, /*hidden argument*/NULL); int32_t L_60 = __this->get_level_3(); IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_61 = Statics_Combine_m0AEA4E5998C70D965FB75058CC425FEE60BE1AB7(L_59, L_60, /*hidden argument*/NULL); __this->set_level_3(L_61); TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_62 = V_9; NullCheck(L_62); int32_t L_63 = TraceLoggingTypeInfo_get_Opcode_mC5C1A9BD89FA8C785228FF61A25787BBC10544C1_inline(L_62, /*hidden argument*/NULL); int32_t L_64 = __this->get_opcode_4(); int32_t L_65 = Statics_Combine_m0AEA4E5998C70D965FB75058CC425FEE60BE1AB7(L_63, L_64, /*hidden argument*/NULL); __this->set_opcode_4(L_65); int64_t L_66 = __this->get_keywords_2(); TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_67 = V_9; NullCheck(L_67); int64_t L_68 = TraceLoggingTypeInfo_get_Keywords_mDD63841C50042CE015E3E37C872F083190147C06_inline(L_67, /*hidden argument*/NULL); __this->set_keywords_2(((int64_t)((int64_t)L_66|(int64_t)L_68))); int32_t L_69 = __this->get_tags_5(); TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * L_70 = V_9; NullCheck(L_70); int32_t L_71 = TraceLoggingTypeInfo_get_Tags_mDBDBBB08C1EC06514A4F899DA788100F1C36AF77_inline(L_70, /*hidden argument*/NULL); __this->set_tags_5(((int32_t)((int32_t)L_69|(int32_t)L_71))); int32_t L_72 = V_8; V_8 = ((int32_t)il2cpp_codegen_add((int32_t)L_72, (int32_t)1)); } IL_0171: { int32_t L_73 = V_8; PropertyAnalysisU5BU5D_t09688E0B42BB5496A80C66F12C2550CA072E2FFB* L_74 = V_7; NullCheck(L_74); if ((((int32_t)L_73) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_74)->max_length))))))) { goto IL_0107; } } { EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * L_75 = ___eventAttrib1; if (!L_75) { goto IL_01dc; } } { EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * L_76 = ___eventAttrib1; NullCheck(L_76); int32_t L_77 = EventDataAttribute_get_Level_m2645CBBEA5EF6157B33D20DFFD92881FA5CB0D8B_inline(L_76, /*hidden argument*/NULL); int32_t L_78 = __this->get_level_3(); IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_79 = Statics_Combine_m0AEA4E5998C70D965FB75058CC425FEE60BE1AB7(L_77, L_78, /*hidden argument*/NULL); __this->set_level_3(L_79); EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * L_80 = ___eventAttrib1; NullCheck(L_80); int32_t L_81 = EventDataAttribute_get_Opcode_mA9A0A7D84CD44B13F027B45AF1D8B5F0B435D79D_inline(L_80, /*hidden argument*/NULL); int32_t L_82 = __this->get_opcode_4(); int32_t L_83 = Statics_Combine_m0AEA4E5998C70D965FB75058CC425FEE60BE1AB7(L_81, L_82, /*hidden argument*/NULL); __this->set_opcode_4(L_83); int64_t L_84 = __this->get_keywords_2(); EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * L_85 = ___eventAttrib1; NullCheck(L_85); int64_t L_86 = EventDataAttribute_get_Keywords_m8D6FDC6B0786770D3C977A2440F9812F21B200E1_inline(L_85, /*hidden argument*/NULL); __this->set_keywords_2(((int64_t)((int64_t)L_84|(int64_t)L_86))); int32_t L_87 = __this->get_tags_5(); EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * L_88 = ___eventAttrib1; NullCheck(L_88); int32_t L_89 = EventDataAttribute_get_Tags_m412BCFA2B5FA99B82732C89EBC378E3A10AECB62_inline(L_88, /*hidden argument*/NULL); __this->set_tags_5(((int32_t)((int32_t)L_87|(int32_t)L_89))); EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * L_90 = ___eventAttrib1; NullCheck(L_90); String_t* L_91 = EventDataAttribute_get_Name_m9AA2FCA324D80D38117FA506A81F54EAD3262D0F_inline(L_90, /*hidden argument*/NULL); __this->set_name_1(L_91); } IL_01dc: { String_t* L_92 = __this->get_name_1(); if (L_92) { goto IL_01f0; } } { Type_t * L_93 = ___dataType0; NullCheck(L_93); String_t* L_94 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_93); __this->set_name_1(L_94); } IL_01f0: { 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.Diagnostics.Tracing.UInt16ArrayTypeInfo::WriteMetadata(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,System.Diagnostics.Tracing.EventFieldFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UInt16ArrayTypeInfo_WriteMetadata_m596A9EE05ECA727F33C41036ADB98A256E2FB4DE (UInt16ArrayTypeInfo_tA6991CB11EA32DC5B9D742927714EB9C7484D7DE * __this, TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * ___collector0, String_t* ___name1, int32_t ___format2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UInt16ArrayTypeInfo_WriteMetadata_m596A9EE05ECA727F33C41036ADB98A256E2FB4DE_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_0 = ___collector0; String_t* L_1 = ___name1; int32_t L_2 = ___format2; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_3 = Statics_Format16_m307BF384650F500E54F521F17E146DBBB98F4D08(L_2, 6, /*hidden argument*/NULL); NullCheck(L_0); TraceLoggingMetadataCollector_AddArray_m9074593EAE95D13523B4F7CF7FB94019CF49F406(L_0, L_1, L_3, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.UInt16ArrayTypeInfo::WriteData(System.Diagnostics.Tracing.TraceLoggingDataCollector,System.UInt16[]&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UInt16ArrayTypeInfo_WriteData_m4B7BFF050CEBE1B0A0A3D81240B5A295992A5015 (UInt16ArrayTypeInfo_tA6991CB11EA32DC5B9D742927714EB9C7484D7DE * __this, TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * ___collector0, UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E** ___value1, const RuntimeMethod* method) { { TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * L_0 = ___collector0; UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E** L_1 = ___value1; UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* L_2 = *((UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E**)L_1); NullCheck(L_0); TraceLoggingDataCollector_AddArray_m7FC7AC33CB29E1631DA57F8A5655C2BCA4B156B8(L_0, L_2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.UInt16ArrayTypeInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UInt16ArrayTypeInfo__ctor_m47BF92C31CA6C00BF2934AE7D7B30BBE7340C2FE (UInt16ArrayTypeInfo_tA6991CB11EA32DC5B9D742927714EB9C7484D7DE * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UInt16ArrayTypeInfo__ctor_m47BF92C31CA6C00BF2934AE7D7B30BBE7340C2FE_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingTypeInfo_1__ctor_m4CA2DF6A9F78819B7064FB9DEE26DAEAF206FC41(__this, /*hidden argument*/TraceLoggingTypeInfo_1__ctor_m4CA2DF6A9F78819B7064FB9DEE26DAEAF206FC41_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.UInt16TypeInfo::WriteMetadata(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,System.Diagnostics.Tracing.EventFieldFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UInt16TypeInfo_WriteMetadata_m726F89A1754BBA837166A1B12473BD97B598832F (UInt16TypeInfo_t468F411BD1B3584AF68A41C85B381CFA03832D7E * __this, TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * ___collector0, String_t* ___name1, int32_t ___format2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UInt16TypeInfo_WriteMetadata_m726F89A1754BBA837166A1B12473BD97B598832F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_0 = ___collector0; String_t* L_1 = ___name1; int32_t L_2 = ___format2; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_3 = Statics_Format16_m307BF384650F500E54F521F17E146DBBB98F4D08(L_2, 6, /*hidden argument*/NULL); NullCheck(L_0); TraceLoggingMetadataCollector_AddScalar_m136E01C1CEEFA221D5F78507069DFE8590CC15FB(L_0, L_1, L_3, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.UInt16TypeInfo::WriteData(System.Diagnostics.Tracing.TraceLoggingDataCollector,System.UInt16&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UInt16TypeInfo_WriteData_mFACB0FFE18C3653D08F40728CDC7BE4E5E97D11E (UInt16TypeInfo_t468F411BD1B3584AF68A41C85B381CFA03832D7E * __this, TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * ___collector0, uint16_t* ___value1, const RuntimeMethod* method) { { TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * L_0 = ___collector0; uint16_t* L_1 = ___value1; int32_t L_2 = *((uint16_t*)L_1); NullCheck(L_0); TraceLoggingDataCollector_AddScalar_mC4001DABF0B0A58EBB93275501D999A00D7F61C6(L_0, (uint16_t)L_2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.UInt16TypeInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UInt16TypeInfo__ctor_mCC09171DCA51C7C406B0A16C46D5EF4D07D089CD (UInt16TypeInfo_t468F411BD1B3584AF68A41C85B381CFA03832D7E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UInt16TypeInfo__ctor_mCC09171DCA51C7C406B0A16C46D5EF4D07D089CD_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingTypeInfo_1__ctor_mFFED700B80F94A8188F571B29E46272FFE165F68(__this, /*hidden argument*/TraceLoggingTypeInfo_1__ctor_mFFED700B80F94A8188F571B29E46272FFE165F68_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.UInt32ArrayTypeInfo::WriteMetadata(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,System.Diagnostics.Tracing.EventFieldFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UInt32ArrayTypeInfo_WriteMetadata_m4D3D827654E56768B873B6E1660C4200E9605BDC (UInt32ArrayTypeInfo_tBBD9B05BCF6D59A1A1D755DB774FAE24B2489EBC * __this, TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * ___collector0, String_t* ___name1, int32_t ___format2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UInt32ArrayTypeInfo_WriteMetadata_m4D3D827654E56768B873B6E1660C4200E9605BDC_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_0 = ___collector0; String_t* L_1 = ___name1; int32_t L_2 = ___format2; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_3 = Statics_Format32_mA958A8DDBBC7C05DD61B456C4835D04C34B508A4(L_2, 8, /*hidden argument*/NULL); NullCheck(L_0); TraceLoggingMetadataCollector_AddArray_m9074593EAE95D13523B4F7CF7FB94019CF49F406(L_0, L_1, L_3, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.UInt32ArrayTypeInfo::WriteData(System.Diagnostics.Tracing.TraceLoggingDataCollector,System.UInt32[]&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UInt32ArrayTypeInfo_WriteData_mF0956C58360D9405F0AA117F12F567CD257FF309 (UInt32ArrayTypeInfo_tBBD9B05BCF6D59A1A1D755DB774FAE24B2489EBC * __this, TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * ___collector0, UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB** ___value1, const RuntimeMethod* method) { { TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * L_0 = ___collector0; UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB** L_1 = ___value1; UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_2 = *((UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB**)L_1); NullCheck(L_0); TraceLoggingDataCollector_AddArray_mD71A1CEEC1FD6E51D5E74065306089DE07418995(L_0, L_2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.UInt32ArrayTypeInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UInt32ArrayTypeInfo__ctor_m6E6B67C602B24ECD669EF5C8A05DE8994F4B2030 (UInt32ArrayTypeInfo_tBBD9B05BCF6D59A1A1D755DB774FAE24B2489EBC * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UInt32ArrayTypeInfo__ctor_m6E6B67C602B24ECD669EF5C8A05DE8994F4B2030_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingTypeInfo_1__ctor_m6691C3567EF02E89787BEBC7485CCC68DD7E0170(__this, /*hidden argument*/TraceLoggingTypeInfo_1__ctor_m6691C3567EF02E89787BEBC7485CCC68DD7E0170_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.UInt32TypeInfo::WriteMetadata(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,System.Diagnostics.Tracing.EventFieldFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UInt32TypeInfo_WriteMetadata_mDE1B62DD209465812263064E836CC068E2F9A975 (UInt32TypeInfo_tB421E50E75E7CF429F488D89989FEC4791D1AE59 * __this, TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * ___collector0, String_t* ___name1, int32_t ___format2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UInt32TypeInfo_WriteMetadata_mDE1B62DD209465812263064E836CC068E2F9A975_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_0 = ___collector0; String_t* L_1 = ___name1; int32_t L_2 = ___format2; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_3 = Statics_Format32_mA958A8DDBBC7C05DD61B456C4835D04C34B508A4(L_2, 8, /*hidden argument*/NULL); NullCheck(L_0); TraceLoggingMetadataCollector_AddScalar_m136E01C1CEEFA221D5F78507069DFE8590CC15FB(L_0, L_1, L_3, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.UInt32TypeInfo::WriteData(System.Diagnostics.Tracing.TraceLoggingDataCollector,System.UInt32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UInt32TypeInfo_WriteData_mEA4FBF3A424F64E5F6A8B7EA2370DEFE1AF3D0B1 (UInt32TypeInfo_tB421E50E75E7CF429F488D89989FEC4791D1AE59 * __this, TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * ___collector0, uint32_t* ___value1, const RuntimeMethod* method) { { TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * L_0 = ___collector0; uint32_t* L_1 = ___value1; int32_t L_2 = *((uint32_t*)L_1); NullCheck(L_0); TraceLoggingDataCollector_AddScalar_m3A8375255FAD53CE4EF938960ABCD165FC6727FF(L_0, L_2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.UInt32TypeInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UInt32TypeInfo__ctor_m5492D535F1F613D8B2160CCB6782ECA813E89181 (UInt32TypeInfo_tB421E50E75E7CF429F488D89989FEC4791D1AE59 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UInt32TypeInfo__ctor_m5492D535F1F613D8B2160CCB6782ECA813E89181_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingTypeInfo_1__ctor_m9EF45CC40F98B8EEFE771610BD4833DB80064A48(__this, /*hidden argument*/TraceLoggingTypeInfo_1__ctor_m9EF45CC40F98B8EEFE771610BD4833DB80064A48_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.UInt64ArrayTypeInfo::WriteMetadata(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,System.Diagnostics.Tracing.EventFieldFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UInt64ArrayTypeInfo_WriteMetadata_m6A04F2B67A8D2A5A59668E49D5D5794645CEC205 (UInt64ArrayTypeInfo_t7A203D5FBE0E98A82FF152A9AA52DA65846276D5 * __this, TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * ___collector0, String_t* ___name1, int32_t ___format2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UInt64ArrayTypeInfo_WriteMetadata_m6A04F2B67A8D2A5A59668E49D5D5794645CEC205_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_0 = ___collector0; String_t* L_1 = ___name1; int32_t L_2 = ___format2; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_3 = Statics_Format64_m9EA165BBDCDC6E40774219DC6EB0214564FC5184(L_2, ((int32_t)10), /*hidden argument*/NULL); NullCheck(L_0); TraceLoggingMetadataCollector_AddArray_m9074593EAE95D13523B4F7CF7FB94019CF49F406(L_0, L_1, L_3, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.UInt64ArrayTypeInfo::WriteData(System.Diagnostics.Tracing.TraceLoggingDataCollector,System.UInt64[]&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UInt64ArrayTypeInfo_WriteData_m13DA739D1DD4B70DB4A80AAC44D9DEDB9D471241 (UInt64ArrayTypeInfo_t7A203D5FBE0E98A82FF152A9AA52DA65846276D5 * __this, TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * ___collector0, UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4** ___value1, const RuntimeMethod* method) { { TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * L_0 = ___collector0; UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4** L_1 = ___value1; UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_2 = *((UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4**)L_1); NullCheck(L_0); TraceLoggingDataCollector_AddArray_m9441D79F32E8FA07EF0814D951CADD8C5530CD82(L_0, L_2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.UInt64ArrayTypeInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UInt64ArrayTypeInfo__ctor_m7FD48AB4A63443625F680B68E2B80C17B694F26F (UInt64ArrayTypeInfo_t7A203D5FBE0E98A82FF152A9AA52DA65846276D5 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UInt64ArrayTypeInfo__ctor_m7FD48AB4A63443625F680B68E2B80C17B694F26F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingTypeInfo_1__ctor_m3E75DAA4CCA56FCABC93D363960339207CFA0557(__this, /*hidden argument*/TraceLoggingTypeInfo_1__ctor_m3E75DAA4CCA56FCABC93D363960339207CFA0557_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.UInt64TypeInfo::WriteMetadata(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,System.Diagnostics.Tracing.EventFieldFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UInt64TypeInfo_WriteMetadata_mA2B28959D1A7F80936B5F91ACB974C3F74841F47 (UInt64TypeInfo_t36BF0D3F2BEF8E853D4640EB2E25D193F3F4438E * __this, TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * ___collector0, String_t* ___name1, int32_t ___format2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UInt64TypeInfo_WriteMetadata_mA2B28959D1A7F80936B5F91ACB974C3F74841F47_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_0 = ___collector0; String_t* L_1 = ___name1; int32_t L_2 = ___format2; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_3 = Statics_Format64_m9EA165BBDCDC6E40774219DC6EB0214564FC5184(L_2, ((int32_t)10), /*hidden argument*/NULL); NullCheck(L_0); TraceLoggingMetadataCollector_AddScalar_m136E01C1CEEFA221D5F78507069DFE8590CC15FB(L_0, L_1, L_3, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.UInt64TypeInfo::WriteData(System.Diagnostics.Tracing.TraceLoggingDataCollector,System.UInt64&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UInt64TypeInfo_WriteData_m20A3AC76C851EC7AFA4737F59248FEF69E651767 (UInt64TypeInfo_t36BF0D3F2BEF8E853D4640EB2E25D193F3F4438E * __this, TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * ___collector0, uint64_t* ___value1, const RuntimeMethod* method) { { TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * L_0 = ___collector0; uint64_t* L_1 = ___value1; int64_t L_2 = *((int64_t*)L_1); NullCheck(L_0); TraceLoggingDataCollector_AddScalar_mA03D31A793FC01F72566FEB94EEE344ABBA25840(L_0, L_2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.UInt64TypeInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UInt64TypeInfo__ctor_m237E06B639D1A9D0DFFDD3795FEABE0B50F245AE (UInt64TypeInfo_t36BF0D3F2BEF8E853D4640EB2E25D193F3F4438E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UInt64TypeInfo__ctor_m237E06B639D1A9D0DFFDD3795FEABE0B50F245AE_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingTypeInfo_1__ctor_m090791EDB460E88AD83B65DB619AD6940D7A21A5(__this, /*hidden argument*/TraceLoggingTypeInfo_1__ctor_m090791EDB460E88AD83B65DB619AD6940D7A21A5_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.UIntPtrArrayTypeInfo::WriteMetadata(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,System.Diagnostics.Tracing.EventFieldFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIntPtrArrayTypeInfo_WriteMetadata_m8551A2F963F22F3DE6C9B67DA8262FFE33668559 (UIntPtrArrayTypeInfo_tAEBBC02218BE858DCF8856D19C991781A165251C * __this, TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * ___collector0, String_t* ___name1, int32_t ___format2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UIntPtrArrayTypeInfo_WriteMetadata_m8551A2F963F22F3DE6C9B67DA8262FFE33668559_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_0 = ___collector0; String_t* L_1 = ___name1; int32_t L_2 = ___format2; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_3 = ((Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_StaticFields*)il2cpp_codegen_static_fields_for(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var))->get_UIntPtrType_1(); int32_t L_4 = Statics_FormatPtr_m00FD8183206A97949E3FD18EF644E9E1F8B1A5D5(L_2, L_3, /*hidden argument*/NULL); NullCheck(L_0); TraceLoggingMetadataCollector_AddArray_m9074593EAE95D13523B4F7CF7FB94019CF49F406(L_0, L_1, L_4, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.UIntPtrArrayTypeInfo::WriteData(System.Diagnostics.Tracing.TraceLoggingDataCollector,System.UIntPtr[]&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIntPtrArrayTypeInfo_WriteData_m958B95A4D47D568FC84835595F1DF258A40B972B (UIntPtrArrayTypeInfo_tAEBBC02218BE858DCF8856D19C991781A165251C * __this, TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * ___collector0, UIntPtrU5BU5D_tD5404ABA0AA72923421D3F931F031EEEC654429E** ___value1, const RuntimeMethod* method) { { TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * L_0 = ___collector0; UIntPtrU5BU5D_tD5404ABA0AA72923421D3F931F031EEEC654429E** L_1 = ___value1; UIntPtrU5BU5D_tD5404ABA0AA72923421D3F931F031EEEC654429E* L_2 = *((UIntPtrU5BU5D_tD5404ABA0AA72923421D3F931F031EEEC654429E**)L_1); NullCheck(L_0); TraceLoggingDataCollector_AddArray_mF562DD1AE2222F9B6D47DD20DC59F084D5E78452(L_0, L_2, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.UIntPtrArrayTypeInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIntPtrArrayTypeInfo__ctor_m2ED85F03228949555DADD7E37416A143A58E3601 (UIntPtrArrayTypeInfo_tAEBBC02218BE858DCF8856D19C991781A165251C * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UIntPtrArrayTypeInfo__ctor_m2ED85F03228949555DADD7E37416A143A58E3601_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingTypeInfo_1__ctor_m4AD1D20B36A5E6D3F95F5606065B95AB934C74B1(__this, /*hidden argument*/TraceLoggingTypeInfo_1__ctor_m4AD1D20B36A5E6D3F95F5606065B95AB934C74B1_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Diagnostics.Tracing.UIntPtrTypeInfo::WriteMetadata(System.Diagnostics.Tracing.TraceLoggingMetadataCollector,System.String,System.Diagnostics.Tracing.EventFieldFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIntPtrTypeInfo_WriteMetadata_mFFDF55AFC3C3F64744FBF72B9E329F37644FB792 (UIntPtrTypeInfo_t0B3F2074A32C0E180DC21FA16B46DCEC3E3E001D * __this, TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * ___collector0, String_t* ___name1, int32_t ___format2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UIntPtrTypeInfo_WriteMetadata_mFFDF55AFC3C3F64744FBF72B9E329F37644FB792_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * L_0 = ___collector0; String_t* L_1 = ___name1; int32_t L_2 = ___format2; IL2CPP_RUNTIME_CLASS_INIT(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var); int32_t L_3 = ((Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_StaticFields*)il2cpp_codegen_static_fields_for(Statics_t5E1A1DC56C4617D3659228C6FA20FC98476ACF95_il2cpp_TypeInfo_var))->get_UIntPtrType_1(); int32_t L_4 = Statics_FormatPtr_m00FD8183206A97949E3FD18EF644E9E1F8B1A5D5(L_2, L_3, /*hidden argument*/NULL); NullCheck(L_0); TraceLoggingMetadataCollector_AddScalar_m136E01C1CEEFA221D5F78507069DFE8590CC15FB(L_0, L_1, L_4, /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.UIntPtrTypeInfo::WriteData(System.Diagnostics.Tracing.TraceLoggingDataCollector,System.UIntPtr&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIntPtrTypeInfo_WriteData_mCCB7DC6B9E441D3F520F08A2031F987DE6F33223 (UIntPtrTypeInfo_t0B3F2074A32C0E180DC21FA16B46DCEC3E3E001D * __this, TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * ___collector0, uintptr_t* ___value1, const RuntimeMethod* method) { { TraceLoggingDataCollector_t2954EFEA739CA99BBC0554A317D7BDFE7E1402DA * L_0 = ___collector0; uintptr_t* L_1 = ___value1; NullCheck(L_0); TraceLoggingDataCollector_AddScalar_m5ED233D2CA9BA4750539B94FBBE49110025A5086(L_0, ((*(L_1))), /*hidden argument*/NULL); return; } } // System.Void System.Diagnostics.Tracing.UIntPtrTypeInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIntPtrTypeInfo__ctor_m10665E5B71030580321F853F0AA64AA6450867BE (UIntPtrTypeInfo_t0B3F2074A32C0E180DC21FA16B46DCEC3E3E001D * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UIntPtrTypeInfo__ctor_m10665E5B71030580321F853F0AA64AA6450867BE_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TraceLoggingTypeInfo_1__ctor_m01A1D2608814C21461FAC61AB3206112FFB03471(__this, /*hidden argument*/TraceLoggingTypeInfo_1__ctor_m01A1D2608814C21461FAC61AB3206112FFB03471_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.DivideByZeroException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DivideByZeroException__ctor_m0FA924BBA604B8446C3844720AEE38E6DB8E39D5 (DivideByZeroException_tD233835DD9A31EE4E64DD93F2D6143646CFD3FBC * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DivideByZeroException__ctor_m0FA924BBA604B8446C3844720AEE38E6DB8E39D5_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral0468E3044BB96C27C2B264BCEDCDBC4DD3B9345C, /*hidden argument*/NULL); ArithmeticException__ctor_mAE18F94959F9827DEA553C7C2F3C5568BEC81CCF(__this, L_0, /*hidden argument*/NULL); Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2147352558), /*hidden argument*/NULL); return; } } // System.Void System.DivideByZeroException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DivideByZeroException__ctor_m1C99D2A83A28CAF0EFB629727B561F833A1DB13F (DivideByZeroException_tD233835DD9A31EE4E64DD93F2D6143646CFD3FBC * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1; ArithmeticException__ctor_mE39E53B845DB39374DFC9B613B87342A4D05C672(__this, L_0, L_1, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.DllNotFoundException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DllNotFoundException__ctor_mA1F672A4786BB96B15A06425687CDB421671C685 (DllNotFoundException_tED90B6A78D4CF5AA565288E0BA88A990062A7F76 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DllNotFoundException__ctor_mA1F672A4786BB96B15A06425687CDB421671C685_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral39BEA6DEDC2EA02EF7433B14291DB0C8B3326642, /*hidden argument*/NULL); TypeLoadException__ctor_m80951BFF6EB67A1ED3052D05569EF70D038B1581(__this, L_0, /*hidden argument*/NULL); Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233052), /*hidden argument*/NULL); return; } } // System.Void System.DllNotFoundException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DllNotFoundException__ctor_m10DFBF836175342A3DE8B778EE5EFC439C3BE8F0 (DllNotFoundException_tED90B6A78D4CF5AA565288E0BA88A990062A7F76 * __this, String_t* ___message0, const RuntimeMethod* method) { { String_t* L_0 = ___message0; TypeLoadException__ctor_m80951BFF6EB67A1ED3052D05569EF70D038B1581(__this, L_0, /*hidden argument*/NULL); Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233052), /*hidden argument*/NULL); return; } } // System.Void System.DllNotFoundException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DllNotFoundException__ctor_m814CD75482C2010BF3FEA4F5E213C73EDAD87472 (DllNotFoundException_tED90B6A78D4CF5AA565288E0BA88A990062A7F76 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1; TypeLoadException__ctor_m7D81F0BF798D436FF6ECF3F4B48F206DB8AB1293(__this, L_0, L_1, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Boolean System.Double::IsPositiveInfinity(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Double_IsPositiveInfinity_m45537C58204CD5AA96F39D42F4CB8DADA128C77B (double ___d0, const RuntimeMethod* method) { { double L_0 = ___d0; if ((!(((double)L_0) == ((double)(std::numeric_limits<double>::infinity()))))) { goto IL_000e; } } { return (bool)1; } IL_000e: { return (bool)0; } } // System.Boolean System.Double::IsNaN(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Double_IsNaN_m5DFBBD58036879B687FEC248C50EACBABE205AB3 (double ___d0, const RuntimeMethod* method) { { int64_t L_0 = *((int64_t*)(((uintptr_t)(&___d0)))); return (bool)((!(((uint64_t)((int64_t)((int64_t)L_0&(int64_t)((int64_t)(std::numeric_limits<int64_t>::max)())))) <= ((uint64_t)((int64_t)9218868437227405312LL))))? 1 : 0); } } // System.Int32 System.Double::CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Double_CompareTo_mB0A2B8C7C5FAC5BE56944B11D254507588407EB5 (double* __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Double_CompareTo_mB0A2B8C7C5FAC5BE56944B11D254507588407EB5_MetadataUsageId); s_Il2CppMethodInitialized = true; } double V_0 = 0.0; { RuntimeObject * L_0 = ___value0; if (L_0) { goto IL_0005; } } { return 1; } IL_0005: { RuntimeObject * L_1 = ___value0; if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_1, Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var))) { goto IL_0040; } } { RuntimeObject * L_2 = ___value0; V_0 = ((*(double*)((double*)UnBox(L_2, Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var)))); double L_3 = *((double*)__this); double L_4 = V_0; if ((!(((double)L_3) < ((double)L_4)))) { goto IL_001b; } } { return (-1); } IL_001b: { double L_5 = *((double*)__this); double L_6 = V_0; if ((!(((double)L_5) > ((double)L_6)))) { goto IL_0022; } } { return 1; } IL_0022: { double L_7 = *((double*)__this); double L_8 = V_0; if ((!(((double)L_7) == ((double)L_8)))) { goto IL_0029; } } { return 0; } IL_0029: { double L_9 = *((double*)__this); IL2CPP_RUNTIME_CLASS_INIT(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var); bool L_10 = Double_IsNaN_m5DFBBD58036879B687FEC248C50EACBABE205AB3(L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_003e; } } { double L_11 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var); bool L_12 = Double_IsNaN_m5DFBBD58036879B687FEC248C50EACBABE205AB3(L_11, /*hidden argument*/NULL); if (L_12) { goto IL_003c; } } { return (-1); } IL_003c: { return 0; } IL_003e: { return 1; } IL_0040: { String_t* L_13 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFFAAC6B1A9A0C24D7EF00A22A84CC2405882AADF, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_14 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_14, L_13, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, NULL, Double_CompareTo_mB0A2B8C7C5FAC5BE56944B11D254507588407EB5_RuntimeMethod_var); } } IL2CPP_EXTERN_C int32_t Double_CompareTo_mB0A2B8C7C5FAC5BE56944B11D254507588407EB5_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { double* _thisAdjusted = reinterpret_cast<double*>(__this + 1); return Double_CompareTo_mB0A2B8C7C5FAC5BE56944B11D254507588407EB5(_thisAdjusted, ___value0, method); } // System.Int32 System.Double::CompareTo(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Double_CompareTo_m569906D5264ACFD3D0D5A1BAD116DC2CBCA0F4B1 (double* __this, double ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Double_CompareTo_m569906D5264ACFD3D0D5A1BAD116DC2CBCA0F4B1_MetadataUsageId); s_Il2CppMethodInitialized = true; } { double L_0 = *((double*)__this); double L_1 = ___value0; if ((!(((double)L_0) < ((double)L_1)))) { goto IL_0007; } } { return (-1); } IL_0007: { double L_2 = *((double*)__this); double L_3 = ___value0; if ((!(((double)L_2) > ((double)L_3)))) { goto IL_000e; } } { return 1; } IL_000e: { double L_4 = *((double*)__this); double L_5 = ___value0; if ((!(((double)L_4) == ((double)L_5)))) { goto IL_0015; } } { return 0; } IL_0015: { double L_6 = *((double*)__this); IL2CPP_RUNTIME_CLASS_INIT(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var); bool L_7 = Double_IsNaN_m5DFBBD58036879B687FEC248C50EACBABE205AB3(L_6, /*hidden argument*/NULL); if (!L_7) { goto IL_002a; } } { double L_8 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var); bool L_9 = Double_IsNaN_m5DFBBD58036879B687FEC248C50EACBABE205AB3(L_8, /*hidden argument*/NULL); if (L_9) { goto IL_0028; } } { return (-1); } IL_0028: { return 0; } IL_002a: { return 1; } } IL2CPP_EXTERN_C int32_t Double_CompareTo_m569906D5264ACFD3D0D5A1BAD116DC2CBCA0F4B1_AdjustorThunk (RuntimeObject * __this, double ___value0, const RuntimeMethod* method) { double* _thisAdjusted = reinterpret_cast<double*>(__this + 1); return Double_CompareTo_m569906D5264ACFD3D0D5A1BAD116DC2CBCA0F4B1(_thisAdjusted, ___value0, method); } // System.Boolean System.Double::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Double_Equals_m25A10C1D70E2906C2DAA5F3863B6AB76AFB13F33 (double* __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Double_Equals_m25A10C1D70E2906C2DAA5F3863B6AB76AFB13F33_MetadataUsageId); s_Il2CppMethodInitialized = true; } double V_0 = 0.0; { RuntimeObject * L_0 = ___obj0; if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var))) { goto IL_000a; } } { return (bool)0; } IL_000a: { RuntimeObject * L_1 = ___obj0; V_0 = ((*(double*)((double*)UnBox(L_1, Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var)))); double L_2 = V_0; double L_3 = *((double*)__this); if ((!(((double)L_2) == ((double)L_3)))) { goto IL_0018; } } { return (bool)1; } IL_0018: { double L_4 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var); bool L_5 = Double_IsNaN_m5DFBBD58036879B687FEC248C50EACBABE205AB3(L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_0028; } } { double L_6 = *((double*)__this); IL2CPP_RUNTIME_CLASS_INIT(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var); bool L_7 = Double_IsNaN_m5DFBBD58036879B687FEC248C50EACBABE205AB3(L_6, /*hidden argument*/NULL); return L_7; } IL_0028: { return (bool)0; } } IL2CPP_EXTERN_C bool Double_Equals_m25A10C1D70E2906C2DAA5F3863B6AB76AFB13F33_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { double* _thisAdjusted = reinterpret_cast<double*>(__this + 1); return Double_Equals_m25A10C1D70E2906C2DAA5F3863B6AB76AFB13F33(_thisAdjusted, ___obj0, method); } // System.Boolean System.Double::Equals(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Double_Equals_m07123CFF3B06183E095BF281110526F9B8953472 (double* __this, double ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Double_Equals_m07123CFF3B06183E095BF281110526F9B8953472_MetadataUsageId); s_Il2CppMethodInitialized = true; } { double L_0 = ___obj0; double L_1 = *((double*)__this); if ((!(((double)L_0) == ((double)L_1)))) { goto IL_0007; } } { return (bool)1; } IL_0007: { double L_2 = ___obj0; IL2CPP_RUNTIME_CLASS_INIT(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var); bool L_3 = Double_IsNaN_m5DFBBD58036879B687FEC248C50EACBABE205AB3(L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_0017; } } { double L_4 = *((double*)__this); IL2CPP_RUNTIME_CLASS_INIT(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var); bool L_5 = Double_IsNaN_m5DFBBD58036879B687FEC248C50EACBABE205AB3(L_4, /*hidden argument*/NULL); return L_5; } IL_0017: { return (bool)0; } } IL2CPP_EXTERN_C bool Double_Equals_m07123CFF3B06183E095BF281110526F9B8953472_AdjustorThunk (RuntimeObject * __this, double ___obj0, const RuntimeMethod* method) { double* _thisAdjusted = reinterpret_cast<double*>(__this + 1); return Double_Equals_m07123CFF3B06183E095BF281110526F9B8953472(_thisAdjusted, ___obj0, method); } // System.Int32 System.Double::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Double_GetHashCode_m583A40025EE6D79EA606D34C38ACFEE231003292 (double* __this, const RuntimeMethod* method) { return Int64_GetHashCode_mB5F9D4E16AFBD7C3932709B38AD8C8BF920CC0A4((int64_t*)__this, NULL); } IL2CPP_EXTERN_C int32_t Double_GetHashCode_m583A40025EE6D79EA606D34C38ACFEE231003292_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { double* _thisAdjusted = reinterpret_cast<double*>(__this + 1); return Double_GetHashCode_m583A40025EE6D79EA606D34C38ACFEE231003292(_thisAdjusted, method); } // System.String System.Double::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Double_ToString_mEB58879AE04C90A89E1475909F82BF4F8540D8CF (double* __this, const RuntimeMethod* method) { { double L_0 = *((double*)__this); NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_1 = NumberFormatInfo_get_CurrentInfo_m595DF03E32E0C5B01F1EC45F7264B2BD09BA61C9(/*hidden argument*/NULL); String_t* L_2 = Number_FormatDouble_m75CA311327BBDA4F918A84B0C0B689B5C4F84EC2(L_0, (String_t*)NULL, L_1, /*hidden argument*/NULL); return L_2; } } IL2CPP_EXTERN_C String_t* Double_ToString_mEB58879AE04C90A89E1475909F82BF4F8540D8CF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { double* _thisAdjusted = reinterpret_cast<double*>(__this + 1); return Double_ToString_mEB58879AE04C90A89E1475909F82BF4F8540D8CF(_thisAdjusted, method); } // System.String System.Double::ToString(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Double_ToString_mBDC030ABB6F09ED7233866009CE02784B1692BC9 (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { { double L_0 = *((double*)__this); RuntimeObject* L_1 = ___provider0; NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_2 = NumberFormatInfo_GetInstance_m713D298B436F3765F059FEA6C446F0A6ABF0A89A(L_1, /*hidden argument*/NULL); String_t* L_3 = Number_FormatDouble_m75CA311327BBDA4F918A84B0C0B689B5C4F84EC2(L_0, (String_t*)NULL, L_2, /*hidden argument*/NULL); return L_3; } } IL2CPP_EXTERN_C String_t* Double_ToString_mBDC030ABB6F09ED7233866009CE02784B1692BC9_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { double* _thisAdjusted = reinterpret_cast<double*>(__this + 1); return Double_ToString_mBDC030ABB6F09ED7233866009CE02784B1692BC9(_thisAdjusted, ___provider0, method); } // System.String System.Double::ToString(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Double_ToString_m1D341E667E85E9E18783A14CB02982643E96C616 (double* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method) { { double L_0 = *((double*)__this); String_t* L_1 = ___format0; RuntimeObject* L_2 = ___provider1; NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_3 = NumberFormatInfo_GetInstance_m713D298B436F3765F059FEA6C446F0A6ABF0A89A(L_2, /*hidden argument*/NULL); String_t* L_4 = Number_FormatDouble_m75CA311327BBDA4F918A84B0C0B689B5C4F84EC2(L_0, L_1, L_3, /*hidden argument*/NULL); return L_4; } } IL2CPP_EXTERN_C String_t* Double_ToString_m1D341E667E85E9E18783A14CB02982643E96C616_AdjustorThunk (RuntimeObject * __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method) { double* _thisAdjusted = reinterpret_cast<double*>(__this + 1); return Double_ToString_m1D341E667E85E9E18783A14CB02982643E96C616(_thisAdjusted, ___format0, ___provider1, method); } // System.Double System.Double::Parse(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Double_Parse_m17E3E4C7194E91689E3E2250A584DB7F1D617552 (String_t* ___s0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Double_Parse_m17E3E4C7194E91689E3E2250A584DB7F1D617552_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___s0; NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_1 = NumberFormatInfo_get_CurrentInfo_m595DF03E32E0C5B01F1EC45F7264B2BD09BA61C9(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var); double L_2 = Double_Parse_m6CDDAF2DCACA8C26336176A005D7A2C8032210AF(L_0, ((int32_t)231), L_1, /*hidden argument*/NULL); return L_2; } } // System.Double System.Double::Parse(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Double_Parse_m598B75F6A7C50F719F439CF354BDDD22B9AF8C67 (String_t* ___s0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Double_Parse_m598B75F6A7C50F719F439CF354BDDD22B9AF8C67_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___s0; RuntimeObject* L_1 = ___provider1; NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_2 = NumberFormatInfo_GetInstance_m713D298B436F3765F059FEA6C446F0A6ABF0A89A(L_1, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var); double L_3 = Double_Parse_m6CDDAF2DCACA8C26336176A005D7A2C8032210AF(L_0, ((int32_t)231), L_2, /*hidden argument*/NULL); return L_3; } } // System.Double System.Double::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Double_Parse_m52FA2C773282C04605DA871AC7093A66FA8A746B (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Double_Parse_m52FA2C773282C04605DA871AC7093A66FA8A746B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___style1; NumberFormatInfo_ValidateParseStyleFloatingPoint_mEC705C72BC013FB4A554725339A2617D9B4ECC07(L_0, /*hidden argument*/NULL); String_t* L_1 = ___s0; int32_t L_2 = ___style1; RuntimeObject* L_3 = ___provider2; NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_4 = NumberFormatInfo_GetInstance_m713D298B436F3765F059FEA6C446F0A6ABF0A89A(L_3, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var); double L_5 = Double_Parse_m6CDDAF2DCACA8C26336176A005D7A2C8032210AF(L_1, L_2, L_4, /*hidden argument*/NULL); return L_5; } } // System.Double System.Double::Parse(System.String,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Double_Parse_m6CDDAF2DCACA8C26336176A005D7A2C8032210AF (String_t* ___s0, int32_t ___style1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info2, const RuntimeMethod* method) { { String_t* L_0 = ___s0; int32_t L_1 = ___style1; NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_2 = ___info2; double L_3 = Number_ParseDouble_m1114DFDF930B69AB3222044E9818855F131B5672(L_0, L_1, L_2, /*hidden argument*/NULL); return L_3; } } // System.TypeCode System.Double::GetTypeCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Double_GetTypeCode_mEDD856E79AFA5648A5F5ABD8B32EE88E640B8FA3 (double* __this, const RuntimeMethod* method) { { return (int32_t)(((int32_t)14)); } } IL2CPP_EXTERN_C int32_t Double_GetTypeCode_mEDD856E79AFA5648A5F5ABD8B32EE88E640B8FA3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { double* _thisAdjusted = reinterpret_cast<double*>(__this + 1); return Double_GetTypeCode_mEDD856E79AFA5648A5F5ABD8B32EE88E640B8FA3(_thisAdjusted, method); } // System.Boolean System.Double::System.IConvertible.ToBoolean(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Double_System_IConvertible_ToBoolean_mF2373D33947A1A2A41037A40C332F1F8B0B31399 (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Double_System_IConvertible_ToBoolean_mF2373D33947A1A2A41037A40C332F1F8B0B31399_MetadataUsageId); s_Il2CppMethodInitialized = true; } { double L_0 = *((double*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); bool L_1 = Convert_ToBoolean_m23B521E072296AA7D4F9FA80D35E27C306B5ABDF(L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C bool Double_System_IConvertible_ToBoolean_mF2373D33947A1A2A41037A40C332F1F8B0B31399_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { double* _thisAdjusted = reinterpret_cast<double*>(__this + 1); return Double_System_IConvertible_ToBoolean_mF2373D33947A1A2A41037A40C332F1F8B0B31399(_thisAdjusted, ___provider0, method); } // System.Char System.Double::System.IConvertible.ToChar(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Double_System_IConvertible_ToChar_m5A3D51F95BEEFB294294FC0D2CB4D198ADEC9004 (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Double_System_IConvertible_ToChar_m5A3D51F95BEEFB294294FC0D2CB4D198ADEC9004_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0; NullCheck(L_1); ArrayElementTypeCheck (L_1, _stringLiteral81581597044514BF54D4F97266022FC991F3915E); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteral81581597044514BF54D4F97266022FC991F3915E); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = L_1; NullCheck(L_2); ArrayElementTypeCheck (L_2, _stringLiteral0F9BA953E35135A3F8EC268817CC92F2557202A9); (L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)_stringLiteral0F9BA953E35135A3F8EC268817CC92F2557202A9); String_t* L_3 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralE5559C91F3F57F398B8B547CA356C67FFA1F6497, L_2, /*hidden argument*/NULL); InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_4 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var); InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Double_System_IConvertible_ToChar_m5A3D51F95BEEFB294294FC0D2CB4D198ADEC9004_RuntimeMethod_var); } } IL2CPP_EXTERN_C Il2CppChar Double_System_IConvertible_ToChar_m5A3D51F95BEEFB294294FC0D2CB4D198ADEC9004_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { double* _thisAdjusted = reinterpret_cast<double*>(__this + 1); return Double_System_IConvertible_ToChar_m5A3D51F95BEEFB294294FC0D2CB4D198ADEC9004(_thisAdjusted, ___provider0, method); } // System.SByte System.Double::System.IConvertible.ToSByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Double_System_IConvertible_ToSByte_m420F7D1B2F9EC1EB5727C4FC343B5D9A1F80FF9E (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Double_System_IConvertible_ToSByte_m420F7D1B2F9EC1EB5727C4FC343B5D9A1F80FF9E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { double L_0 = *((double*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); int8_t L_1 = Convert_ToSByte_m286EC501DE7B1980DE30BBB28DDA70AE4BB696E5(L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C int8_t Double_System_IConvertible_ToSByte_m420F7D1B2F9EC1EB5727C4FC343B5D9A1F80FF9E_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { double* _thisAdjusted = reinterpret_cast<double*>(__this + 1); return Double_System_IConvertible_ToSByte_m420F7D1B2F9EC1EB5727C4FC343B5D9A1F80FF9E(_thisAdjusted, ___provider0, method); } // System.Byte System.Double::System.IConvertible.ToByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Double_System_IConvertible_ToByte_mC6823B019DF9C56705E00B56F69FE337DA4FA3D2 (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Double_System_IConvertible_ToByte_mC6823B019DF9C56705E00B56F69FE337DA4FA3D2_MetadataUsageId); s_Il2CppMethodInitialized = true; } { double L_0 = *((double*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); uint8_t L_1 = Convert_ToByte_m91AFBFC15EA62AF9EA9826E3F777635C1E18F32C(L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C uint8_t Double_System_IConvertible_ToByte_mC6823B019DF9C56705E00B56F69FE337DA4FA3D2_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { double* _thisAdjusted = reinterpret_cast<double*>(__this + 1); return Double_System_IConvertible_ToByte_mC6823B019DF9C56705E00B56F69FE337DA4FA3D2(_thisAdjusted, ___provider0, method); } // System.Int16 System.Double::System.IConvertible.ToInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Double_System_IConvertible_ToInt16_m1912F2BCB7CCEA69C8383DE3F23629EA72901FE8 (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Double_System_IConvertible_ToInt16_m1912F2BCB7CCEA69C8383DE3F23629EA72901FE8_MetadataUsageId); s_Il2CppMethodInitialized = true; } { double L_0 = *((double*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); int16_t L_1 = Convert_ToInt16_m1F982FED72A4829E1DE1A64F162F13555FC1F7EC(L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C int16_t Double_System_IConvertible_ToInt16_m1912F2BCB7CCEA69C8383DE3F23629EA72901FE8_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { double* _thisAdjusted = reinterpret_cast<double*>(__this + 1); return Double_System_IConvertible_ToInt16_m1912F2BCB7CCEA69C8383DE3F23629EA72901FE8(_thisAdjusted, ___provider0, method); } // System.UInt16 System.Double::System.IConvertible.ToUInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Double_System_IConvertible_ToUInt16_m7EB78B4D0E534EA609CA0ECCB65126288A01E7BB (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Double_System_IConvertible_ToUInt16_m7EB78B4D0E534EA609CA0ECCB65126288A01E7BB_MetadataUsageId); s_Il2CppMethodInitialized = true; } { double L_0 = *((double*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); uint16_t L_1 = Convert_ToUInt16_mC488D697C85EE1862D2D8FFFD30BC8E99AB73BE5(L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C uint16_t Double_System_IConvertible_ToUInt16_m7EB78B4D0E534EA609CA0ECCB65126288A01E7BB_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { double* _thisAdjusted = reinterpret_cast<double*>(__this + 1); return Double_System_IConvertible_ToUInt16_m7EB78B4D0E534EA609CA0ECCB65126288A01E7BB(_thisAdjusted, ___provider0, method); } // System.Int32 System.Double::System.IConvertible.ToInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Double_System_IConvertible_ToInt32_m58F8E6D8B06DD91DEFF79EFC07F1E611D62901D4 (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Double_System_IConvertible_ToInt32_m58F8E6D8B06DD91DEFF79EFC07F1E611D62901D4_MetadataUsageId); s_Il2CppMethodInitialized = true; } { double L_0 = *((double*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); int32_t L_1 = Convert_ToInt32_m1A048B98439E87B6AA81AEA091F8F515D3EF730C(L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C int32_t Double_System_IConvertible_ToInt32_m58F8E6D8B06DD91DEFF79EFC07F1E611D62901D4_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { double* _thisAdjusted = reinterpret_cast<double*>(__this + 1); return Double_System_IConvertible_ToInt32_m58F8E6D8B06DD91DEFF79EFC07F1E611D62901D4(_thisAdjusted, ___provider0, method); } // System.UInt32 System.Double::System.IConvertible.ToUInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Double_System_IConvertible_ToUInt32_mDFE527435A1AB18FB7B8C2B82FD957E2CBDCB85D (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Double_System_IConvertible_ToUInt32_mDFE527435A1AB18FB7B8C2B82FD957E2CBDCB85D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { double L_0 = *((double*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); uint32_t L_1 = Convert_ToUInt32_mB7F4B7176295B3AA240199C4C2E7E59C3B74E6AF(L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C uint32_t Double_System_IConvertible_ToUInt32_mDFE527435A1AB18FB7B8C2B82FD957E2CBDCB85D_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { double* _thisAdjusted = reinterpret_cast<double*>(__this + 1); return Double_System_IConvertible_ToUInt32_mDFE527435A1AB18FB7B8C2B82FD957E2CBDCB85D(_thisAdjusted, ___provider0, method); } // System.Int64 System.Double::System.IConvertible.ToInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Double_System_IConvertible_ToInt64_mB0F1BC81467C260C314E8677DA7E7424373F4E74 (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Double_System_IConvertible_ToInt64_mB0F1BC81467C260C314E8677DA7E7424373F4E74_MetadataUsageId); s_Il2CppMethodInitialized = true; } { double L_0 = *((double*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); int64_t L_1 = Convert_ToInt64_m64CA1F639893BC431286C0AE8266AA46E38FB57D(L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C int64_t Double_System_IConvertible_ToInt64_mB0F1BC81467C260C314E8677DA7E7424373F4E74_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { double* _thisAdjusted = reinterpret_cast<double*>(__this + 1); return Double_System_IConvertible_ToInt64_mB0F1BC81467C260C314E8677DA7E7424373F4E74(_thisAdjusted, ___provider0, method); } // System.UInt64 System.Double::System.IConvertible.ToUInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Double_System_IConvertible_ToUInt64_m42B2609C9326264155EA6BCE68D394B003C3B8DB (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Double_System_IConvertible_ToUInt64_m42B2609C9326264155EA6BCE68D394B003C3B8DB_MetadataUsageId); s_Il2CppMethodInitialized = true; } { double L_0 = *((double*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); uint64_t L_1 = Convert_ToUInt64_mA246C8DD45C3EA0EFB21E3ED8B6EE6FAAE119232(L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C uint64_t Double_System_IConvertible_ToUInt64_m42B2609C9326264155EA6BCE68D394B003C3B8DB_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { double* _thisAdjusted = reinterpret_cast<double*>(__this + 1); return Double_System_IConvertible_ToUInt64_m42B2609C9326264155EA6BCE68D394B003C3B8DB(_thisAdjusted, ___provider0, method); } // System.Single System.Double::System.IConvertible.ToSingle(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Double_System_IConvertible_ToSingle_m368154C37F9126F8A86FE2885B6A01BFF514EC4F (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Double_System_IConvertible_ToSingle_m368154C37F9126F8A86FE2885B6A01BFF514EC4F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { double L_0 = *((double*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); float L_1 = Convert_ToSingle_mDADB8C1C52121EE8B0040D4E5FC7CFD2CFAD8B80(L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C float Double_System_IConvertible_ToSingle_m368154C37F9126F8A86FE2885B6A01BFF514EC4F_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { double* _thisAdjusted = reinterpret_cast<double*>(__this + 1); return Double_System_IConvertible_ToSingle_m368154C37F9126F8A86FE2885B6A01BFF514EC4F(_thisAdjusted, ___provider0, method); } // System.Double System.Double::System.IConvertible.ToDouble(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Double_System_IConvertible_ToDouble_mD5A55AC211814A338B9B78AEB30C654CD9FE9B12 (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { { double L_0 = *((double*)__this); return L_0; } } IL2CPP_EXTERN_C double Double_System_IConvertible_ToDouble_mD5A55AC211814A338B9B78AEB30C654CD9FE9B12_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { double* _thisAdjusted = reinterpret_cast<double*>(__this + 1); return Double_System_IConvertible_ToDouble_mD5A55AC211814A338B9B78AEB30C654CD9FE9B12(_thisAdjusted, ___provider0, method); } // System.Decimal System.Double::System.IConvertible.ToDecimal(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Double_System_IConvertible_ToDecimal_m82107C16B72FEA85A6BE269EA2C4ADCEA77BDF78 (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Double_System_IConvertible_ToDecimal_m82107C16B72FEA85A6BE269EA2C4ADCEA77BDF78_MetadataUsageId); s_Il2CppMethodInitialized = true; } { double L_0 = *((double*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = Convert_ToDecimal_mF93A2E5C1006C59187BA8F1F17E66CEC2D8F7FCE(L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Double_System_IConvertible_ToDecimal_m82107C16B72FEA85A6BE269EA2C4ADCEA77BDF78_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { double* _thisAdjusted = reinterpret_cast<double*>(__this + 1); return Double_System_IConvertible_ToDecimal_m82107C16B72FEA85A6BE269EA2C4ADCEA77BDF78(_thisAdjusted, ___provider0, method); } // System.DateTime System.Double::System.IConvertible.ToDateTime(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Double_System_IConvertible_ToDateTime_m3D5512DED1ECDB253130146CA1324D7F77DF8CE8 (double* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Double_System_IConvertible_ToDateTime_m3D5512DED1ECDB253130146CA1324D7F77DF8CE8_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0; NullCheck(L_1); ArrayElementTypeCheck (L_1, _stringLiteral81581597044514BF54D4F97266022FC991F3915E); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteral81581597044514BF54D4F97266022FC991F3915E); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = L_1; NullCheck(L_2); ArrayElementTypeCheck (L_2, _stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F); (L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)_stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F); String_t* L_3 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralE5559C91F3F57F398B8B547CA356C67FFA1F6497, L_2, /*hidden argument*/NULL); InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_4 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var); InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Double_System_IConvertible_ToDateTime_m3D5512DED1ECDB253130146CA1324D7F77DF8CE8_RuntimeMethod_var); } } IL2CPP_EXTERN_C DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Double_System_IConvertible_ToDateTime_m3D5512DED1ECDB253130146CA1324D7F77DF8CE8_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { double* _thisAdjusted = reinterpret_cast<double*>(__this + 1); return Double_System_IConvertible_ToDateTime_m3D5512DED1ECDB253130146CA1324D7F77DF8CE8(_thisAdjusted, ___provider0, method); } // System.Object System.Double::System.IConvertible.ToType(System.Type,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Double_System_IConvertible_ToType_m8A79DB3AE4184EB16E3F7401C1AF1F5487996E17 (double* __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Double_System_IConvertible_ToType_m8A79DB3AE4184EB16E3F7401C1AF1F5487996E17_MetadataUsageId); s_Il2CppMethodInitialized = true; } { double L_0 = *((double*)__this); double L_1 = L_0; RuntimeObject * L_2 = Box(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var, &L_1); Type_t * L_3 = ___type0; RuntimeObject* L_4 = ___provider1; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); RuntimeObject * L_5 = Convert_DefaultToType_m899D5F6B9FE3E8B878BC56172C6BFE788B6C1BE3((RuntimeObject*)L_2, L_3, L_4, /*hidden argument*/NULL); return L_5; } } IL2CPP_EXTERN_C RuntimeObject * Double_System_IConvertible_ToType_m8A79DB3AE4184EB16E3F7401C1AF1F5487996E17_AdjustorThunk (RuntimeObject * __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method) { double* _thisAdjusted = reinterpret_cast<double*>(__this + 1); return Double_System_IConvertible_ToType_m8A79DB3AE4184EB16E3F7401C1AF1F5487996E17(_thisAdjusted, ___type0, ___provider1, method); } // System.Void System.Double::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Double__cctor_mF8ED20B3C490811C7B536F11984C848279FD81DA (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Double__cctor_mF8ED20B3C490811C7B536F11984C848279FD81DA_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var); double L_0 = BitConverter_Int64BitsToDouble_m9BCBEBF8C6E35A37E6A233B11F97164D9F0BF694(((int64_t)(std::numeric_limits<int64_t>::min)()), /*hidden argument*/NULL); ((Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_StaticFields*)il2cpp_codegen_static_fields_for(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var))->set_NegativeZero_7(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Empty::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Empty__ctor_m23D1BFDB32C4D61606BF357FD0322407A0F7B997 (Empty_t31C7ECDF7D102AFFCE029D8AB11D8595F0316ED2 * __this, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); return; } } // System.String System.Empty::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Empty_ToString_m0C8812BB8898E96B034C6CD4D3F1F00757E33EE3 (Empty_t31C7ECDF7D102AFFCE029D8AB11D8595F0316ED2 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Empty_ToString_m0C8812BB8898E96B034C6CD4D3F1F00757E33EE3_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return L_0; } } // System.Void System.Empty::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Empty_GetObjectData_m232B12C727819AE6EE45B673E84D081C52E398A3 (Empty_t31C7ECDF7D102AFFCE029D8AB11D8595F0316ED2 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Empty_GetObjectData_m232B12C727819AE6EE45B673E84D081C52E398A3_MetadataUsageId); s_Il2CppMethodInitialized = true; } { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Empty_GetObjectData_m232B12C727819AE6EE45B673E84D081C52E398A3_RuntimeMethod_var); } IL_000e: { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0; UnitySerializationHolder_GetUnitySerializationInfo_m86F654140996546DB4D6D8228BF9FE45E9BAEC3E(L_2, 1, (String_t*)NULL, (RuntimeAssembly_t5EE9CD749D82345AE5635B9665665C31A3308EB1 *)NULL, /*hidden argument*/NULL); return; } } // System.Void System.Empty::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Empty__cctor_m54D08148F4107B10CF2EFEC0BD7487B88BDE8846 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Empty__cctor_m54D08148F4107B10CF2EFEC0BD7487B88BDE8846_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Empty_t31C7ECDF7D102AFFCE029D8AB11D8595F0316ED2 * L_0 = (Empty_t31C7ECDF7D102AFFCE029D8AB11D8595F0316ED2 *)il2cpp_codegen_object_new(Empty_t31C7ECDF7D102AFFCE029D8AB11D8595F0316ED2_il2cpp_TypeInfo_var); Empty__ctor_m23D1BFDB32C4D61606BF357FD0322407A0F7B997(L_0, /*hidden argument*/NULL); ((Empty_t31C7ECDF7D102AFFCE029D8AB11D8595F0316ED2_StaticFields*)il2cpp_codegen_static_fields_for(Empty_t31C7ECDF7D102AFFCE029D8AB11D8595F0316ED2_il2cpp_TypeInfo_var))->set_Value_0(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.EntryPointNotFoundException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EntryPointNotFoundException__ctor_m683E578CE5B45F534894C0AD324CFF812B8C6367 (EntryPointNotFoundException_tCF689617164B79AD85A41DADB38D27BD1E10B279 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EntryPointNotFoundException__ctor_m683E578CE5B45F534894C0AD324CFF812B8C6367_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral434F56D21A258E7969A92CEA469D5AF82D2A30D9, /*hidden argument*/NULL); TypeLoadException__ctor_m80951BFF6EB67A1ED3052D05569EF70D038B1581(__this, L_0, /*hidden argument*/NULL); Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233053), /*hidden argument*/NULL); return; } } // System.Void System.EntryPointNotFoundException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EntryPointNotFoundException__ctor_mC157996784391A14CFF5CD1F6B6890C67F94C16E (EntryPointNotFoundException_tCF689617164B79AD85A41DADB38D27BD1E10B279 * __this, String_t* ___message0, const RuntimeMethod* method) { { String_t* L_0 = ___message0; TypeLoadException__ctor_m80951BFF6EB67A1ED3052D05569EF70D038B1581(__this, L_0, /*hidden argument*/NULL); Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233053), /*hidden argument*/NULL); return; } } // System.Void System.EntryPointNotFoundException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EntryPointNotFoundException__ctor_m72E8D85C9DBFCBAD71B54DD0088CA89FF16002D4 (EntryPointNotFoundException_tCF689617164B79AD85A41DADB38D27BD1E10B279 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1; TypeLoadException__ctor_m7D81F0BF798D436FF6ECF3F4B48F206DB8AB1293(__this, L_0, L_1, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Conversion methods for marshalling of: System.Enum IL2CPP_EXTERN_C void Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshal_pinvoke(const Enum_t2AF27C02B8653AE29442467390005ABC74D8F521& unmarshaled, Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_pinvoke& marshaled) { } IL2CPP_EXTERN_C void Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshal_pinvoke_back(const Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_pinvoke& marshaled, Enum_t2AF27C02B8653AE29442467390005ABC74D8F521& unmarshaled) { } // Conversion method for clean up from marshalling of: System.Enum IL2CPP_EXTERN_C void Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshal_pinvoke_cleanup(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: System.Enum IL2CPP_EXTERN_C void Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshal_com(const Enum_t2AF27C02B8653AE29442467390005ABC74D8F521& unmarshaled, Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_com& marshaled) { } IL2CPP_EXTERN_C void Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshal_com_back(const Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_com& marshaled, Enum_t2AF27C02B8653AE29442467390005ABC74D8F521& unmarshaled) { } // Conversion method for clean up from marshalling of: System.Enum IL2CPP_EXTERN_C void Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshal_com_cleanup(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_com& marshaled) { } // System.Enum_ValuesAndNames System.Enum::GetCachedValuesAndNames(System.RuntimeType,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValuesAndNames_t48A099BB10887A683F62017FAD199FB2088CBDD2 * Enum_GetCachedValuesAndNames_m1001EB28E9797369685546F225FE322640A1F6A3 (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___enumType0, bool ___getNames1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_GetCachedValuesAndNames_m1001EB28E9797369685546F225FE322640A1F6A3_MetadataUsageId); s_Il2CppMethodInitialized = true; } ValuesAndNames_t48A099BB10887A683F62017FAD199FB2088CBDD2 * V_0 = NULL; UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* V_1 = NULL; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* V_2 = NULL; { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_0 = ___enumType0; NullCheck(L_0); RuntimeObject * L_1 = L_0->get_GenericCache_27(); V_0 = ((ValuesAndNames_t48A099BB10887A683F62017FAD199FB2088CBDD2 *)IsInstClass((RuntimeObject*)L_1, ValuesAndNames_t48A099BB10887A683F62017FAD199FB2088CBDD2_il2cpp_TypeInfo_var)); ValuesAndNames_t48A099BB10887A683F62017FAD199FB2088CBDD2 * L_2 = V_0; if (!L_2) { goto IL_001a; } } { bool L_3 = ___getNames1; if (!L_3) { goto IL_0045; } } { ValuesAndNames_t48A099BB10887A683F62017FAD199FB2088CBDD2 * L_4 = V_0; NullCheck(L_4); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_5 = L_4->get_Names_1(); if (L_5) { goto IL_0045; } } IL_001a: { V_1 = (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*)NULL; V_2 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)NULL; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_6 = ___enumType0; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); bool L_7 = Enum_GetEnumValuesAndNames_m1DE3CB2A67168F041F94B867603001FA33DE19BB(L_6, (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4**)(&V_1), (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E**)(&V_2), /*hidden argument*/NULL); if (L_7) { goto IL_0036; } } { UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_8 = V_1; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_9 = V_2; Comparer_1_tCF5E5EB8AA2F69440B59855EF7E666F064E3D1CC * L_10 = Comparer_1_get_Default_mDDE26044E0F352546BE2390402A0236FE376FB3C(/*hidden argument*/Comparer_1_get_Default_mDDE26044E0F352546BE2390402A0236FE376FB3C_RuntimeMethod_var); Array_Sort_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_TisString_t_mD72A29E49E470E40B0AF25859927BAEE4A19004A(L_8, L_9, L_10, /*hidden argument*/Array_Sort_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_TisString_t_mD72A29E49E470E40B0AF25859927BAEE4A19004A_RuntimeMethod_var); } IL_0036: { UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_11 = V_1; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_12 = V_2; ValuesAndNames_t48A099BB10887A683F62017FAD199FB2088CBDD2 * L_13 = (ValuesAndNames_t48A099BB10887A683F62017FAD199FB2088CBDD2 *)il2cpp_codegen_object_new(ValuesAndNames_t48A099BB10887A683F62017FAD199FB2088CBDD2_il2cpp_TypeInfo_var); ValuesAndNames__ctor_mB8D86E5162F53D54672653DDE596C5FEBD9B3D7F(L_13, L_11, L_12, /*hidden argument*/NULL); V_0 = L_13; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_14 = ___enumType0; ValuesAndNames_t48A099BB10887A683F62017FAD199FB2088CBDD2 * L_15 = V_0; NullCheck(L_14); L_14->set_GenericCache_27(L_15); } IL_0045: { ValuesAndNames_t48A099BB10887A683F62017FAD199FB2088CBDD2 * L_16 = V_0; return L_16; } } // System.String System.Enum::InternalFormattedHexString(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Enum_InternalFormattedHexString_mBE7CD93BAA508C20D13D470A11B40222893508DF (RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_InternalFormattedHexString_mBE7CD93BAA508C20D13D470A11B40222893508DF_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; uint8_t V_1 = 0x0; uint8_t V_2 = 0x0; uint8_t V_3 = 0x0; uint16_t V_4 = 0; uint16_t V_5 = 0; uint16_t V_6 = 0; uint32_t V_7 = 0; uint32_t V_8 = 0; uint64_t V_9 = 0; uint64_t V_10 = 0; { RuntimeObject * L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); int32_t L_1 = Convert_GetTypeCode_mFE36252E332A7D699C91003DF56C37380C1AD58D(L_0, /*hidden argument*/NULL); V_0 = L_1; int32_t L_2 = V_0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)3))) { case 0: { goto IL_0067; } case 1: { goto IL_00ae; } case 2: { goto IL_003c; } case 3: { goto IL_0052; } case 4: { goto IL_0081; } case 5: { goto IL_0098; } case 6: { goto IL_00da; } case 7: { goto IL_00c4; } case 8: { goto IL_0106; } case 9: { goto IL_00f0; } } } { goto IL_011c; } IL_003c: { RuntimeObject * L_3 = ___value0; V_1 = (uint8_t)(((int32_t)((uint8_t)((*(int8_t*)((int8_t*)UnBox(L_3, SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_il2cpp_TypeInfo_var))))))); String_t* L_4 = Byte_ToString_m731FDB27391432D7F14B6769B5D0A3E248803D25((uint8_t*)(&V_1), _stringLiteral9F792B61D0EC544D91E7AFF34E2E99EE3CF2B313, (RuntimeObject*)NULL, /*hidden argument*/NULL); return L_4; } IL_0052: { RuntimeObject * L_5 = ___value0; V_2 = ((*(uint8_t*)((uint8_t*)UnBox(L_5, Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_il2cpp_TypeInfo_var)))); String_t* L_6 = Byte_ToString_m731FDB27391432D7F14B6769B5D0A3E248803D25((uint8_t*)(&V_2), _stringLiteral9F792B61D0EC544D91E7AFF34E2E99EE3CF2B313, (RuntimeObject*)NULL, /*hidden argument*/NULL); return L_6; } IL_0067: { RuntimeObject * L_7 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); uint8_t L_8 = Convert_ToByte_m2F75DB84C61D7D1D64393FD5756A9C9DE04FF716(((*(bool*)((bool*)UnBox(L_7, Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); V_3 = L_8; String_t* L_9 = Byte_ToString_m731FDB27391432D7F14B6769B5D0A3E248803D25((uint8_t*)(&V_3), _stringLiteral9F792B61D0EC544D91E7AFF34E2E99EE3CF2B313, (RuntimeObject*)NULL, /*hidden argument*/NULL); return L_9; } IL_0081: { RuntimeObject * L_10 = ___value0; V_4 = (uint16_t)(((int32_t)((uint16_t)((*(int16_t*)((int16_t*)UnBox(L_10, Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_il2cpp_TypeInfo_var))))))); String_t* L_11 = UInt16_ToString_mD0CBA1F073A0E16528C1A7EB4E8A9892D218895B((uint16_t*)(&V_4), _stringLiteralD3BB58F43423756E664BDFC3FC3F45439766807B, (RuntimeObject*)NULL, /*hidden argument*/NULL); return L_11; } IL_0098: { RuntimeObject * L_12 = ___value0; V_5 = ((*(uint16_t*)((uint16_t*)UnBox(L_12, UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_il2cpp_TypeInfo_var)))); String_t* L_13 = UInt16_ToString_mD0CBA1F073A0E16528C1A7EB4E8A9892D218895B((uint16_t*)(&V_5), _stringLiteralD3BB58F43423756E664BDFC3FC3F45439766807B, (RuntimeObject*)NULL, /*hidden argument*/NULL); return L_13; } IL_00ae: { RuntimeObject * L_14 = ___value0; V_6 = (uint16_t)((*(Il2CppChar*)((Il2CppChar*)UnBox(L_14, Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var)))); String_t* L_15 = UInt16_ToString_mD0CBA1F073A0E16528C1A7EB4E8A9892D218895B((uint16_t*)(&V_6), _stringLiteralD3BB58F43423756E664BDFC3FC3F45439766807B, (RuntimeObject*)NULL, /*hidden argument*/NULL); return L_15; } IL_00c4: { RuntimeObject * L_16 = ___value0; V_7 = ((*(uint32_t*)((uint32_t*)UnBox(L_16, UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_il2cpp_TypeInfo_var)))); String_t* L_17 = UInt32_ToString_m57BE7A0F4A653986FEAC4794CD13B04CE012F4EE((uint32_t*)(&V_7), _stringLiteral150956358DFB2DD051536F24C362ED507F77CC3A, (RuntimeObject*)NULL, /*hidden argument*/NULL); return L_17; } IL_00da: { RuntimeObject * L_18 = ___value0; V_8 = ((*(int32_t*)((int32_t*)UnBox(L_18, Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var)))); String_t* L_19 = UInt32_ToString_m57BE7A0F4A653986FEAC4794CD13B04CE012F4EE((uint32_t*)(&V_8), _stringLiteral150956358DFB2DD051536F24C362ED507F77CC3A, (RuntimeObject*)NULL, /*hidden argument*/NULL); return L_19; } IL_00f0: { RuntimeObject * L_20 = ___value0; V_9 = ((*(uint64_t*)((uint64_t*)UnBox(L_20, UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_il2cpp_TypeInfo_var)))); String_t* L_21 = UInt64_ToString_mF6F94603E535C161BBD87AC747A1F403C274E8CD((uint64_t*)(&V_9), _stringLiteral7C920AC9C27322B466EC79E3F70C59D0EB2E27E3, (RuntimeObject*)NULL, /*hidden argument*/NULL); return L_21; } IL_0106: { RuntimeObject * L_22 = ___value0; V_10 = ((*(int64_t*)((int64_t*)UnBox(L_22, Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_il2cpp_TypeInfo_var)))); String_t* L_23 = UInt64_ToString_mF6F94603E535C161BBD87AC747A1F403C274E8CD((uint64_t*)(&V_10), _stringLiteral7C920AC9C27322B466EC79E3F70C59D0EB2E27E3, (RuntimeObject*)NULL, /*hidden argument*/NULL); return L_23; } IL_011c: { String_t* L_24 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFEC5F94EEF090E85867493394092E5DE8BF859D3, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_25 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_25, L_24, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_25, NULL, Enum_InternalFormattedHexString_mBE7CD93BAA508C20D13D470A11B40222893508DF_RuntimeMethod_var); } } // System.String System.Enum::InternalFormat(System.RuntimeType,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Enum_InternalFormat_mDDEDEA76AB6EA551C386ABB43B5E789696A6E04B (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___eT0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_InternalFormat_mDDEDEA76AB6EA551C386ABB43B5E789696A6E04B_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_0 = ___eT0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_1 = { reinterpret_cast<intptr_t> (FlagsAttribute_t7FB7BEFA2E1F2C6E3362A5996E82697475FFE867_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_2 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_1, /*hidden argument*/NULL); NullCheck(L_0); bool L_3 = VirtFuncInvoker2< bool, Type_t *, bool >::Invoke(12 /* System.Boolean System.Reflection.MemberInfo::IsDefined(System.Type,System.Boolean) */, L_0, L_2, (bool)0); if (L_3) { goto IL_0027; } } { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_4 = ___eT0; RuntimeObject * L_5 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); String_t* L_6 = Enum_GetName_m9DE2256BCA030763AE066DA2B23EBBC2E4C62C5D(L_4, L_5, /*hidden argument*/NULL); V_0 = L_6; String_t* L_7 = V_0; if (L_7) { goto IL_0025; } } { RuntimeObject * L_8 = ___value1; NullCheck(L_8); String_t* L_9 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_8); return L_9; } IL_0025: { String_t* L_10 = V_0; return L_10; } IL_0027: { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_11 = ___eT0; RuntimeObject * L_12 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); String_t* L_13 = Enum_InternalFlagsFormat_mD244B3277B49F145783C308015C9689FE9DF475C(L_11, L_12, /*hidden argument*/NULL); return L_13; } } // System.String System.Enum::InternalFlagsFormat(System.RuntimeType,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Enum_InternalFlagsFormat_mD244B3277B49F145783C308015C9689FE9DF475C (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___eT0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_InternalFlagsFormat_mD244B3277B49F145783C308015C9689FE9DF475C_MetadataUsageId); s_Il2CppMethodInitialized = true; } uint64_t V_0 = 0; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* V_1 = NULL; UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* V_2 = NULL; int32_t V_3 = 0; StringBuilder_t * V_4 = NULL; bool V_5 = false; uint64_t V_6 = 0; { RuntimeObject * L_0 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); uint64_t L_1 = Enum_ToUInt64_mF33D43629B55147D1AF6CC3D813F894435AA50F5(L_0, /*hidden argument*/NULL); V_0 = L_1; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_2 = ___eT0; ValuesAndNames_t48A099BB10887A683F62017FAD199FB2088CBDD2 * L_3 = Enum_GetCachedValuesAndNames_m1001EB28E9797369685546F225FE322640A1F6A3(L_2, (bool)1, /*hidden argument*/NULL); ValuesAndNames_t48A099BB10887A683F62017FAD199FB2088CBDD2 * L_4 = L_3; NullCheck(L_4); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_5 = L_4->get_Names_1(); V_1 = L_5; NullCheck(L_4); UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_6 = L_4->get_Values_0(); V_2 = L_6; UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_7 = V_2; NullCheck(L_7); V_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length)))), (int32_t)1)); StringBuilder_t * L_8 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_8, /*hidden argument*/NULL); V_4 = L_8; V_5 = (bool)1; uint64_t L_9 = V_0; V_6 = L_9; goto IL_006d; } IL_0030: { int32_t L_10 = V_3; if (L_10) { goto IL_0038; } } { UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_11 = V_2; int32_t L_12 = V_3; NullCheck(L_11); int32_t L_13 = L_12; int64_t L_14 = (int64_t)(L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_13)); if (!L_14) { goto IL_0071; } } IL_0038: { uint64_t L_15 = V_0; UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_16 = V_2; int32_t L_17 = V_3; NullCheck(L_16); int32_t L_18 = L_17; int64_t L_19 = (int64_t)(L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18)); UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_20 = V_2; int32_t L_21 = V_3; NullCheck(L_20); int32_t L_22 = L_21; int64_t L_23 = (int64_t)(L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_22)); if ((!(((uint64_t)((int64_t)((int64_t)L_15&(int64_t)L_19))) == ((uint64_t)L_23)))) { goto IL_0069; } } { uint64_t L_24 = V_0; UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_25 = V_2; int32_t L_26 = V_3; NullCheck(L_25); int32_t L_27 = L_26; int64_t L_28 = (int64_t)(L_25)->GetAt(static_cast<il2cpp_array_size_t>(L_27)); V_0 = ((int64_t)il2cpp_codegen_subtract((int64_t)L_24, (int64_t)L_28)); bool L_29 = V_5; if (L_29) { goto IL_005a; } } { StringBuilder_t * L_30 = V_4; NullCheck(L_30); StringBuilder_Insert_m38829D9C9FE52ACD6541ED735D4435FB2A831A2C(L_30, 0, _stringLiteralD3BC9A378DAAA1DDDBA1B19C1AA641D3E9683C46, /*hidden argument*/NULL); } IL_005a: { StringBuilder_t * L_31 = V_4; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_32 = V_1; int32_t L_33 = V_3; NullCheck(L_32); int32_t L_34 = L_33; String_t* L_35 = (L_32)->GetAt(static_cast<il2cpp_array_size_t>(L_34)); NullCheck(L_31); StringBuilder_Insert_m38829D9C9FE52ACD6541ED735D4435FB2A831A2C(L_31, 0, L_35, /*hidden argument*/NULL); V_5 = (bool)0; } IL_0069: { int32_t L_36 = V_3; V_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_36, (int32_t)1)); } IL_006d: { int32_t L_37 = V_3; if ((((int32_t)L_37) >= ((int32_t)0))) { goto IL_0030; } } IL_0071: { uint64_t L_38 = V_0; if (!L_38) { goto IL_007b; } } { RuntimeObject * L_39 = ___value1; NullCheck(L_39); String_t* L_40 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_39); return L_40; } IL_007b: { uint64_t L_41 = V_6; if (L_41) { goto IL_0092; } } { UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_42 = V_2; NullCheck(L_42); if (!(((RuntimeArray*)L_42)->max_length)) { goto IL_008c; } } { UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_43 = V_2; NullCheck(L_43); int32_t L_44 = 0; int64_t L_45 = (int64_t)(L_43)->GetAt(static_cast<il2cpp_array_size_t>(L_44)); if (L_45) { goto IL_008c; } } { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_46 = V_1; NullCheck(L_46); int32_t L_47 = 0; String_t* L_48 = (L_46)->GetAt(static_cast<il2cpp_array_size_t>(L_47)); return L_48; } IL_008c: { return _stringLiteralB6589FC6AB0DC82CF12099D1C2D40AB994E8410C; } IL_0092: { StringBuilder_t * L_49 = V_4; NullCheck(L_49); String_t* L_50 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_49); return L_50; } } // System.UInt64 System.Enum::ToUInt64(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Enum_ToUInt64_mF33D43629B55147D1AF6CC3D813F894435AA50F5 (RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_ToUInt64_mF33D43629B55147D1AF6CC3D813F894435AA50F5_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; uint64_t V_1 = 0; { RuntimeObject * L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); int32_t L_1 = Convert_GetTypeCode_mFE36252E332A7D699C91003DF56C37380C1AD58D(L_0, /*hidden argument*/NULL); V_0 = L_1; int32_t L_2 = V_0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)3))) { case 0: { goto IL_0047; } case 1: { goto IL_0047; } case 2: { goto IL_0039; } case 3: { goto IL_0047; } case 4: { goto IL_0039; } case 5: { goto IL_0047; } case 6: { goto IL_0039; } case 7: { goto IL_0047; } case 8: { goto IL_0039; } case 9: { goto IL_0047; } } } { goto IL_0055; } IL_0039: { RuntimeObject * L_3 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_4 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); int64_t L_5 = Convert_ToInt64_m8964FDE5D82FEC54106DBF35E1F67D70F6E73E29(L_3, L_4, /*hidden argument*/NULL); V_1 = L_5; goto IL_0065; } IL_0047: { RuntimeObject * L_6 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_7 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); uint64_t L_8 = Convert_ToUInt64_mA8C3C5498FC28CBA0EB0C37409EB9E04CCF6B8D2(L_6, L_7, /*hidden argument*/NULL); V_1 = L_8; goto IL_0065; } IL_0055: { String_t* L_9 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFEC5F94EEF090E85867493394092E5DE8BF859D3, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_10 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_10, L_9, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Enum_ToUInt64_mF33D43629B55147D1AF6CC3D813F894435AA50F5_RuntimeMethod_var); } IL_0065: { uint64_t L_11 = V_1; return L_11; } } // System.Int32 System.Enum::InternalCompareTo(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enum_InternalCompareTo_m3EBB69A78DA374BF88E9393542454A8DB9FEC73A (RuntimeObject * ___o10, RuntimeObject * ___o21, const RuntimeMethod* method) { typedef int32_t (*Enum_InternalCompareTo_m3EBB69A78DA374BF88E9393542454A8DB9FEC73A_ftn) (RuntimeObject *, RuntimeObject *); using namespace il2cpp::icalls; return ((Enum_InternalCompareTo_m3EBB69A78DA374BF88E9393542454A8DB9FEC73A_ftn)mscorlib::System::Enum::InternalCompareTo) (___o10, ___o21); } // System.RuntimeType System.Enum::InternalGetUnderlyingType(System.RuntimeType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * Enum_InternalGetUnderlyingType_m0BD79F3F8CD17913493226A8F3D07898D94CCB50 (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___enumType0, const RuntimeMethod* method) { typedef RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * (*Enum_InternalGetUnderlyingType_m0BD79F3F8CD17913493226A8F3D07898D94CCB50_ftn) (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *); using namespace il2cpp::icalls; return ((Enum_InternalGetUnderlyingType_m0BD79F3F8CD17913493226A8F3D07898D94CCB50_ftn)mscorlib::System::Enum::InternalGetUnderlyingType) (___enumType0); } // System.Boolean System.Enum::GetEnumValuesAndNames(System.RuntimeType,System.UInt64[]&,System.String[]&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enum_GetEnumValuesAndNames_m1DE3CB2A67168F041F94B867603001FA33DE19BB (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___enumType0, UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4** ___values1, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** ___names2, const RuntimeMethod* method) { typedef bool (*Enum_GetEnumValuesAndNames_m1DE3CB2A67168F041F94B867603001FA33DE19BB_ftn) (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *, UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4**, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E**); using namespace il2cpp::icalls; return ((Enum_GetEnumValuesAndNames_m1DE3CB2A67168F041F94B867603001FA33DE19BB_ftn)mscorlib::System::Enum::GetEnumValuesAndNames) (___enumType0, ___values1, ___names2); } // System.Object System.Enum::InternalBoxEnum(System.RuntimeType,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_InternalBoxEnum_m68B17FCE000371BEA515B898F6EC928DC8923251 (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___enumType0, int64_t ___value1, const RuntimeMethod* method) { typedef RuntimeObject * (*Enum_InternalBoxEnum_m68B17FCE000371BEA515B898F6EC928DC8923251_ftn) (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *, int64_t); using namespace il2cpp::icalls; return ((Enum_InternalBoxEnum_m68B17FCE000371BEA515B898F6EC928DC8923251_ftn)mscorlib::System::Enum::InternalBoxEnum) (___enumType0, ___value1); } // System.Object System.Enum::Parse(System.Type,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_Parse_m8677C5E01F1258902058D844824B93F7836BF4C3 (Type_t * ___enumType0, String_t* ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_Parse_m8677C5E01F1258902058D844824B93F7836BF4C3_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___enumType0; String_t* L_1 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); RuntimeObject * L_2 = Enum_Parse_mC51A0BD680AC2D2152A541E2A8475DB61A83A6E7(L_0, L_1, (bool)0, /*hidden argument*/NULL); return L_2; } } // System.Object System.Enum::Parse(System.Type,System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_Parse_mC51A0BD680AC2D2152A541E2A8475DB61A83A6E7 (Type_t * ___enumType0, String_t* ___value1, bool ___ignoreCase2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_Parse_mC51A0BD680AC2D2152A541E2A8475DB61A83A6E7_MetadataUsageId); s_Il2CppMethodInitialized = true; } EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C V_0; memset((&V_0), 0, sizeof(V_0)); { il2cpp_codegen_initobj((&V_0), sizeof(EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C )); EnumResult_Init_m216C0A2C400E00ECA1E85E1C6374C19862785478((EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C *)(&V_0), (bool)1, /*hidden argument*/NULL); Type_t * L_0 = ___enumType0; String_t* L_1 = ___value1; bool L_2 = ___ignoreCase2; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); bool L_3 = Enum_TryParseEnum_mABDEE4971D4257A8058A3F1AC12DE081AD694D4E(L_0, L_1, L_2, (EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C *)(&V_0), /*hidden argument*/NULL); if (!L_3) { goto IL_0023; } } { EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C L_4 = V_0; RuntimeObject * L_5 = L_4.get_parsedEnum_0(); return L_5; } IL_0023: { Exception_t * L_6 = EnumResult_GetEnumParseException_m7C06BD6056764876616D10BB96C55599D008740B((EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C *)(&V_0), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, Enum_Parse_mC51A0BD680AC2D2152A541E2A8475DB61A83A6E7_RuntimeMethod_var); } } // System.Boolean System.Enum::TryParseEnum(System.Type,System.String,System.Boolean,System.Enum_EnumResult&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enum_TryParseEnum_mABDEE4971D4257A8058A3F1AC12DE081AD694D4E (Type_t * ___enumType0, String_t* ___value1, bool ___ignoreCase2, EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C * ___parseResult3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_TryParseEnum_mABDEE4971D4257A8058A3F1AC12DE081AD694D4E_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_0 = NULL; uint64_t V_1 = 0; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* V_2 = NULL; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* V_3 = NULL; UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* V_4 = NULL; Type_t * V_5 = NULL; RuntimeObject * V_6 = NULL; bool V_7 = false; Exception_t * V_8 = NULL; int32_t V_9 = 0; bool V_10 = false; int32_t V_11 = 0; uint64_t V_12 = 0; Exception_t * V_13 = 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) * 5); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { Type_t * L_0 = ___enumType0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0014; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Enum_TryParseEnum_mABDEE4971D4257A8058A3F1AC12DE081AD694D4E_RuntimeMethod_var); } IL_0014: { Type_t * L_3 = ___enumType0; V_0 = ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)IsInstClass((RuntimeObject*)L_3, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_4 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_5 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_4, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)NULL, /*hidden argument*/NULL); if (!L_5) { goto IL_0039; } } { String_t* L_6 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD9AD6D6EE31EEA74A5B100D0C9320A75B260AC4C, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_7 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_7, L_6, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, Enum_TryParseEnum_mABDEE4971D4257A8058A3F1AC12DE081AD694D4E_RuntimeMethod_var); } IL_0039: { Type_t * L_8 = ___enumType0; NullCheck(L_8); bool L_9 = VirtFuncInvoker0< bool >::Invoke(70 /* System.Boolean System.Type::get_IsEnum() */, L_8); if (L_9) { goto IL_0056; } } { String_t* L_10 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral3435968A1FA5DC7806024802A561C1886C22803B, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_11 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_11, L_10, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, NULL, Enum_TryParseEnum_mABDEE4971D4257A8058A3F1AC12DE081AD694D4E_RuntimeMethod_var); } IL_0056: { String_t* L_12 = ___value1; if (L_12) { goto IL_0067; } } { EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C * L_13 = ___parseResult3; EnumResult_SetFailure_mE9F0F9CA050C904DA2409A923325038BEAC693BD((EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C *)L_13, 2, _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); return (bool)0; } IL_0067: { String_t* L_14 = ___value1; NullCheck(L_14); String_t* L_15 = String_Trim_mB52EB7876C7132358B76B7DC95DEACA20722EF4D(L_14, /*hidden argument*/NULL); ___value1 = L_15; String_t* L_16 = ___value1; NullCheck(L_16); int32_t L_17 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_16, /*hidden argument*/NULL); if (L_17) { goto IL_0086; } } { EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C * L_18 = ___parseResult3; EnumResult_SetFailure_m074187A9DB5CC9B1E8AC1149BC23D612B6A63629((EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C *)L_18, 1, _stringLiteral97F27E5AD8A8005896BEAB070988EA16E76BD0CC, NULL, /*hidden argument*/NULL); return (bool)0; } IL_0086: { V_1 = (((int64_t)((int64_t)0))); String_t* L_19 = ___value1; NullCheck(L_19); Il2CppChar L_20 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_19, 0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); bool L_21 = Char_IsDigit_m29508E0B60DAE54350BDC3DED0D42895DBA4087E(L_20, /*hidden argument*/NULL); if (L_21) { goto IL_00ad; } } { String_t* L_22 = ___value1; NullCheck(L_22); Il2CppChar L_23 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_22, 0, /*hidden argument*/NULL); if ((((int32_t)L_23) == ((int32_t)((int32_t)45)))) { goto IL_00ad; } } { String_t* L_24 = ___value1; NullCheck(L_24); Il2CppChar L_25 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_24, 0, /*hidden argument*/NULL); if ((!(((uint32_t)L_25) == ((uint32_t)((int32_t)43))))) { goto IL_00f9; } } IL_00ad: { Type_t * L_26 = ___enumType0; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); Type_t * L_27 = Enum_GetUnderlyingType_m0715B4E60E6909F03FF7302B6E20B1AB88DA84B1(L_26, /*hidden argument*/NULL); V_5 = L_27; } IL_00b5: try { // begin try (depth: 1) String_t* L_28 = ___value1; Type_t * L_29 = V_5; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_30 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); RuntimeObject * L_31 = Convert_ChangeType_m4F879F3D17C11FA0B648C99C6D3C42DD33F40926(L_28, L_29, L_30, /*hidden argument*/NULL); V_6 = L_31; EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C * L_32 = ___parseResult3; Type_t * L_33 = ___enumType0; RuntimeObject * L_34 = V_6; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); RuntimeObject * L_35 = Enum_ToObject_mED18F2B01F4BA412C1882396CE977411BB54165D(L_33, L_34, /*hidden argument*/NULL); L_32->set_parsedEnum_0(L_35); V_7 = (bool)1; goto IL_01c2; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_00da; if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_00dd; throw e; } CATCH_00da: { // begin catch(System.FormatException) goto IL_00f9; } // end catch (depth: 1) CATCH_00dd: { // begin catch(System.Exception) { V_8 = ((Exception_t *)__exception_local); EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C * L_36 = ___parseResult3; bool L_37 = L_36->get_canThrow_1(); if (!L_37) { goto IL_00e9; } } IL_00e7: { IL2CPP_RAISE_MANAGED_EXCEPTION(__exception_local, NULL, Enum_TryParseEnum_mABDEE4971D4257A8058A3F1AC12DE081AD694D4E_RuntimeMethod_var); } IL_00e9: { EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C * L_38 = ___parseResult3; Exception_t * L_39 = V_8; EnumResult_SetFailure_m30134BF6A5C03CF59E21BC54AF69042D327FA125((EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C *)L_38, L_39, /*hidden argument*/NULL); V_7 = (bool)0; goto IL_01c2; } } // end catch (depth: 1) IL_00f9: { String_t* L_40 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_41 = ((Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields*)il2cpp_codegen_static_fields_for(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var))->get_enumSeperatorCharArray_0(); NullCheck(L_40); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_42 = String_Split_m13262358217AD2C119FD1B9733C3C0289D608512(L_40, L_41, /*hidden argument*/NULL); V_2 = L_42; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_43 = V_0; ValuesAndNames_t48A099BB10887A683F62017FAD199FB2088CBDD2 * L_44 = Enum_GetCachedValuesAndNames_m1001EB28E9797369685546F225FE322640A1F6A3(L_43, (bool)1, /*hidden argument*/NULL); ValuesAndNames_t48A099BB10887A683F62017FAD199FB2088CBDD2 * L_45 = L_44; NullCheck(L_45); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_46 = L_45->get_Names_1(); V_3 = L_46; NullCheck(L_45); UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_47 = L_45->get_Values_0(); V_4 = L_47; V_9 = 0; goto IL_018f; } IL_011f: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_48 = V_2; int32_t L_49 = V_9; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_50 = V_2; int32_t L_51 = V_9; NullCheck(L_50); int32_t L_52 = L_51; String_t* L_53 = (L_50)->GetAt(static_cast<il2cpp_array_size_t>(L_52)); NullCheck(L_53); String_t* L_54 = String_Trim_mB52EB7876C7132358B76B7DC95DEACA20722EF4D(L_53, /*hidden argument*/NULL); NullCheck(L_48); ArrayElementTypeCheck (L_48, L_54); (L_48)->SetAt(static_cast<il2cpp_array_size_t>(L_49), (String_t*)L_54); V_10 = (bool)0; V_11 = 0; goto IL_016f; } IL_0134: { bool L_55 = ___ignoreCase2; if (!L_55) { goto IL_0149; } } { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_56 = V_3; int32_t L_57 = V_11; NullCheck(L_56); int32_t L_58 = L_57; String_t* L_59 = (L_56)->GetAt(static_cast<il2cpp_array_size_t>(L_58)); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_60 = V_2; int32_t L_61 = V_9; NullCheck(L_60); int32_t L_62 = L_61; String_t* L_63 = (L_60)->GetAt(static_cast<il2cpp_array_size_t>(L_62)); int32_t L_64 = String_Compare_m5BD1EF8904C9B13BEDB7A876B122F117B317B442(L_59, L_63, 5, /*hidden argument*/NULL); if (!L_64) { goto IL_0158; } } { goto IL_0169; } IL_0149: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_65 = V_3; int32_t L_66 = V_11; NullCheck(L_65); int32_t L_67 = L_66; String_t* L_68 = (L_65)->GetAt(static_cast<il2cpp_array_size_t>(L_67)); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_69 = V_2; int32_t L_70 = V_9; NullCheck(L_69); int32_t L_71 = L_70; String_t* L_72 = (L_69)->GetAt(static_cast<il2cpp_array_size_t>(L_71)); NullCheck(L_68); bool L_73 = String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1(L_68, L_72, /*hidden argument*/NULL); if (!L_73) { goto IL_0169; } } IL_0158: { UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_74 = V_4; int32_t L_75 = V_11; NullCheck(L_74); int32_t L_76 = L_75; int64_t L_77 = (int64_t)(L_74)->GetAt(static_cast<il2cpp_array_size_t>(L_76)); V_12 = L_77; uint64_t L_78 = V_1; uint64_t L_79 = V_12; V_1 = ((int64_t)((int64_t)L_78|(int64_t)L_79)); V_10 = (bool)1; goto IL_0176; } IL_0169: { int32_t L_80 = V_11; V_11 = ((int32_t)il2cpp_codegen_add((int32_t)L_80, (int32_t)1)); } IL_016f: { int32_t L_81 = V_11; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_82 = V_3; NullCheck(L_82); if ((((int32_t)L_81) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_82)->max_length))))))) { goto IL_0134; } } IL_0176: { bool L_83 = V_10; if (L_83) { goto IL_0189; } } { EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C * L_84 = ___parseResult3; String_t* L_85 = ___value1; EnumResult_SetFailure_m074187A9DB5CC9B1E8AC1149BC23D612B6A63629((EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C *)L_84, 3, _stringLiteral83EB9DF3AAB1C833EB3CCFD3CEFB43106280EF34, L_85, /*hidden argument*/NULL); return (bool)0; } IL_0189: { int32_t L_86 = V_9; V_9 = ((int32_t)il2cpp_codegen_add((int32_t)L_86, (int32_t)1)); } IL_018f: { int32_t L_87 = V_9; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_88 = V_2; NullCheck(L_88); if ((((int32_t)L_87) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_88)->max_length))))))) { goto IL_011f; } } { } IL_0197: try { // begin try (depth: 1) EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C * L_89 = ___parseResult3; Type_t * L_90 = ___enumType0; uint64_t L_91 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); RuntimeObject * L_92 = Enum_ToObject_m8F5068C996337F56B4000A4B255126A35951BD05(L_90, L_91, /*hidden argument*/NULL); L_89->set_parsedEnum_0(L_92); V_7 = (bool)1; goto IL_01c2; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_01a9; throw e; } CATCH_01a9: { // begin catch(System.Exception) { V_13 = ((Exception_t *)__exception_local); EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C * L_93 = ___parseResult3; bool L_94 = L_93->get_canThrow_1(); if (!L_94) { goto IL_01b5; } } IL_01b3: { IL2CPP_RAISE_MANAGED_EXCEPTION(__exception_local, NULL, Enum_TryParseEnum_mABDEE4971D4257A8058A3F1AC12DE081AD694D4E_RuntimeMethod_var); } IL_01b5: { EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C * L_95 = ___parseResult3; Exception_t * L_96 = V_13; EnumResult_SetFailure_m30134BF6A5C03CF59E21BC54AF69042D327FA125((EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C *)L_95, L_96, /*hidden argument*/NULL); V_7 = (bool)0; goto IL_01c2; } } // end catch (depth: 1) IL_01c2: { bool L_97 = V_7; return L_97; } } // System.Type System.Enum::GetUnderlyingType(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Enum_GetUnderlyingType_m0715B4E60E6909F03FF7302B6E20B1AB88DA84B1 (Type_t * ___enumType0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_GetUnderlyingType_m0715B4E60E6909F03FF7302B6E20B1AB88DA84B1_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___enumType0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0014; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Enum_GetUnderlyingType_m0715B4E60E6909F03FF7302B6E20B1AB88DA84B1_RuntimeMethod_var); } IL_0014: { Type_t * L_3 = ___enumType0; NullCheck(L_3); Type_t * L_4 = VirtFuncInvoker0< Type_t * >::Invoke(102 /* System.Type System.Type::GetEnumUnderlyingType() */, L_3); return L_4; } } // System.UInt64[] System.Enum::InternalGetValues(System.RuntimeType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* Enum_InternalGetValues_m4A2F2F5A56BA8A6F5C923327CD99C71BABEAB82F (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___enumType0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_InternalGetValues_m4A2F2F5A56BA8A6F5C923327CD99C71BABEAB82F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_0 = ___enumType0; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); ValuesAndNames_t48A099BB10887A683F62017FAD199FB2088CBDD2 * L_1 = Enum_GetCachedValuesAndNames_m1001EB28E9797369685546F225FE322640A1F6A3(L_0, (bool)0, /*hidden argument*/NULL); NullCheck(L_1); UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_2 = L_1->get_Values_0(); return L_2; } } // System.String System.Enum::GetName(System.Type,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Enum_GetName_m9DE2256BCA030763AE066DA2B23EBBC2E4C62C5D (Type_t * ___enumType0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_GetName_m9DE2256BCA030763AE066DA2B23EBBC2E4C62C5D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___enumType0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0014; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Enum_GetName_m9DE2256BCA030763AE066DA2B23EBBC2E4C62C5D_RuntimeMethod_var); } IL_0014: { Type_t * L_3 = ___enumType0; RuntimeObject * L_4 = ___value1; NullCheck(L_3); String_t* L_5 = VirtFuncInvoker1< String_t*, RuntimeObject * >::Invoke(104 /* System.String System.Type::GetEnumName(System.Object) */, L_3, L_4); return L_5; } } // System.String[] System.Enum::InternalGetNames(System.RuntimeType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* Enum_InternalGetNames_m258F0B71398559D545BA5BCA85D9B2744CDD444A (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___enumType0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_InternalGetNames_m258F0B71398559D545BA5BCA85D9B2744CDD444A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_0 = ___enumType0; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); ValuesAndNames_t48A099BB10887A683F62017FAD199FB2088CBDD2 * L_1 = Enum_GetCachedValuesAndNames_m1001EB28E9797369685546F225FE322640A1F6A3(L_0, (bool)1, /*hidden argument*/NULL); NullCheck(L_1); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_2 = L_1->get_Names_1(); return L_2; } } // System.Object System.Enum::ToObject(System.Type,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_ToObject_mED18F2B01F4BA412C1882396CE977411BB54165D (Type_t * ___enumType0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_ToObject_mED18F2B01F4BA412C1882396CE977411BB54165D_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { RuntimeObject * L_0 = ___value1; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Enum_ToObject_mED18F2B01F4BA412C1882396CE977411BB54165D_RuntimeMethod_var); } IL_000e: { RuntimeObject * L_2 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); int32_t L_3 = Convert_GetTypeCode_mFE36252E332A7D699C91003DF56C37380C1AD58D(L_2, /*hidden argument*/NULL); V_0 = L_3; bool L_4 = ((CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_StaticFields*)il2cpp_codegen_static_fields_for(CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_il2cpp_TypeInfo_var))->get_IsAppEarlierThanWindowsPhone8_1(); if (!L_4) { goto IL_0039; } } { int32_t L_5 = V_0; if ((((int32_t)L_5) == ((int32_t)3))) { goto IL_0024; } } { int32_t L_6 = V_0; if ((!(((uint32_t)L_6) == ((uint32_t)4)))) { goto IL_0039; } } IL_0024: { String_t* L_7 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral850828716F9C5476A885E4AF4B1592EDAF8390BA, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_8 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_8, L_7, _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, Enum_ToObject_mED18F2B01F4BA412C1882396CE977411BB54165D_RuntimeMethod_var); } IL_0039: { int32_t L_9 = V_0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)3))) { case 0: { goto IL_00e3; } case 1: { goto IL_00d6; } case 2: { goto IL_007b; } case 3: { goto IL_00af; } case 4: { goto IL_0088; } case 5: { goto IL_00bc; } case 6: { goto IL_006e; } case 7: { goto IL_00a2; } case 8: { goto IL_0095; } case 9: { goto IL_00c9; } } } { goto IL_00f0; } IL_006e: { Type_t * L_10 = ___enumType0; RuntimeObject * L_11 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); RuntimeObject * L_12 = Enum_ToObject_mD5E11C53D7BCC62EF4260FA727E14B7B95C2191F(L_10, ((*(int32_t*)((int32_t*)UnBox(L_11, Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); return L_12; } IL_007b: { Type_t * L_13 = ___enumType0; RuntimeObject * L_14 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); RuntimeObject * L_15 = Enum_ToObject_mF17916242A9F9ACD4F79E15749BEE3FBB2D7A57B(L_13, ((*(int8_t*)((int8_t*)UnBox(L_14, SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); return L_15; } IL_0088: { Type_t * L_16 = ___enumType0; RuntimeObject * L_17 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); RuntimeObject * L_18 = Enum_ToObject_mC2D7A39D56EFFFE7D0B61D685C8F285356CC71BF(L_16, ((*(int16_t*)((int16_t*)UnBox(L_17, Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); return L_18; } IL_0095: { Type_t * L_19 = ___enumType0; RuntimeObject * L_20 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); RuntimeObject * L_21 = Enum_ToObject_mE84F27DFCF3F22A1053968A9DCE6C0D14D25B7E2(L_19, ((*(int64_t*)((int64_t*)UnBox(L_20, Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); return L_21; } IL_00a2: { Type_t * L_22 = ___enumType0; RuntimeObject * L_23 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); RuntimeObject * L_24 = Enum_ToObject_m4C7675BBEBAD96C9706EAF7529E4113F7381F0C7(L_22, ((*(uint32_t*)((uint32_t*)UnBox(L_23, UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); return L_24; } IL_00af: { Type_t * L_25 = ___enumType0; RuntimeObject * L_26 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); RuntimeObject * L_27 = Enum_ToObject_m8F4C7D69296541DF78E40CEB98B59C7CA67633B6(L_25, ((*(uint8_t*)((uint8_t*)UnBox(L_26, Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); return L_27; } IL_00bc: { Type_t * L_28 = ___enumType0; RuntimeObject * L_29 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); RuntimeObject * L_30 = Enum_ToObject_mAF017E3EDCF2C7BA8FF7ED0DDCBCD827B51D4971(L_28, ((*(uint16_t*)((uint16_t*)UnBox(L_29, UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); return L_30; } IL_00c9: { Type_t * L_31 = ___enumType0; RuntimeObject * L_32 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); RuntimeObject * L_33 = Enum_ToObject_m8F5068C996337F56B4000A4B255126A35951BD05(L_31, ((*(uint64_t*)((uint64_t*)UnBox(L_32, UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); return L_33; } IL_00d6: { Type_t * L_34 = ___enumType0; RuntimeObject * L_35 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); RuntimeObject * L_36 = Enum_ToObject_mC3CE70A98934303986CC11631FC415BCA9C4000A(L_34, ((*(Il2CppChar*)((Il2CppChar*)UnBox(L_35, Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); return L_36; } IL_00e3: { Type_t * L_37 = ___enumType0; RuntimeObject * L_38 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); RuntimeObject * L_39 = Enum_ToObject_m22DBEC2C53D962AC357CC08D6ECEA2DE53867C15(L_37, ((*(bool*)((bool*)UnBox(L_38, Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); return L_39; } IL_00f0: { String_t* L_40 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral850828716F9C5476A885E4AF4B1592EDAF8390BA, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_41 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_41, L_40, _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_41, NULL, Enum_ToObject_mED18F2B01F4BA412C1882396CE977411BB54165D_RuntimeMethod_var); } } // System.Boolean System.Enum::IsDefined(System.Type,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enum_IsDefined_mA573B15329CA2AA7C59367D514D2927FC66217E2 (Type_t * ___enumType0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_IsDefined_mA573B15329CA2AA7C59367D514D2927FC66217E2_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___enumType0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0014; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Enum_IsDefined_mA573B15329CA2AA7C59367D514D2927FC66217E2_RuntimeMethod_var); } IL_0014: { Type_t * L_3 = ___enumType0; RuntimeObject * L_4 = ___value1; NullCheck(L_3); bool L_5 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(103 /* System.Boolean System.Type::IsEnumDefined(System.Object) */, L_3, L_4); return L_5; } } // System.Object System.Enum::get_value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_get_value_mDC122E270C1A2937603D2A196C319A148C02A0B4 (RuntimeObject * __this, const RuntimeMethod* method) { typedef RuntimeObject * (*Enum_get_value_mDC122E270C1A2937603D2A196C319A148C02A0B4_ftn) (RuntimeObject *); using namespace il2cpp::icalls; return ((Enum_get_value_mDC122E270C1A2937603D2A196C319A148C02A0B4_ftn)mscorlib::System::Enum::get_value) (__this); } // System.Object System.Enum::GetValue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_GetValue_m1537D0F805734D5C039C47E59D0B1A53B659AC0A (RuntimeObject * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = Enum_get_value_mDC122E270C1A2937603D2A196C319A148C02A0B4(__this, /*hidden argument*/NULL); return L_0; } } // System.Int32 System.Enum::get_hashcode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enum_get_hashcode_mA42CD9ED05E0F9B2E029B7215A4F5EF879376853 (RuntimeObject * __this, const RuntimeMethod* method) { typedef int32_t (*Enum_get_hashcode_mA42CD9ED05E0F9B2E029B7215A4F5EF879376853_ftn) (RuntimeObject *); using namespace il2cpp::icalls; return ((Enum_get_hashcode_mA42CD9ED05E0F9B2E029B7215A4F5EF879376853_ftn)mscorlib::System::Enum::get_hashcode) (__this); } // System.Boolean System.Enum::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enum_Equals_mA344E3D044BE40ED5BB8C4A5838F9F5A2A235901 (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___obj0; bool L_1 = ValueType_DefaultEquals_m139582CD1BAD7472B45D806F76E4E14E82E629DB(__this, L_0, /*hidden argument*/NULL); return L_1; } } // System.Int32 System.Enum::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enum_GetHashCode_m41E0B8F2D9F7BB662A043FD8400C05F047A75B26 (RuntimeObject * __this, const RuntimeMethod* method) { { int32_t L_0 = Enum_get_hashcode_mA42CD9ED05E0F9B2E029B7215A4F5EF879376853(__this, /*hidden argument*/NULL); return L_0; } } // System.String System.Enum::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Enum_ToString_mFD0D85F8ECEC2AF1E474A44483BE02729CE488CF (RuntimeObject * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_ToString_mFD0D85F8ECEC2AF1E474A44483BE02729CE488CF_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(__this, /*hidden argument*/NULL); RuntimeObject * L_1 = Enum_GetValue_m1537D0F805734D5C039C47E59D0B1A53B659AC0A(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); String_t* L_2 = Enum_InternalFormat_mDDEDEA76AB6EA551C386ABB43B5E789696A6E04B(((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)CastclassClass((RuntimeObject*)L_0, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)), L_1, /*hidden argument*/NULL); return L_2; } } // System.String System.Enum::ToString(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Enum_ToString_m9E184D984FDCBEADCB2C9BCCFBC9DB6C920443B2 (RuntimeObject * __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method) { { String_t* L_0 = ___format0; String_t* L_1 = Enum_ToString_m6BEF4567C67A1EF85E25BAEBF882C792CDC0808C(__this, L_0, /*hidden argument*/NULL); return L_1; } } // System.Int32 System.Enum::CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enum_CompareTo_m9FA79C9B482ADB78DE9431F5BA7552C7D2B317BE (RuntimeObject * __this, RuntimeObject * ___target0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_CompareTo_m9FA79C9B482ADB78DE9431F5BA7552C7D2B317BE_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; Type_t * V_1 = NULL; Type_t * V_2 = NULL; { if (__this) { goto IL_0009; } } { NullReferenceException_t204B194BC4DDA3259AF5A8633EA248AE5977ABDC * L_0 = (NullReferenceException_t204B194BC4DDA3259AF5A8633EA248AE5977ABDC *)il2cpp_codegen_object_new(NullReferenceException_t204B194BC4DDA3259AF5A8633EA248AE5977ABDC_il2cpp_TypeInfo_var); NullReferenceException__ctor_m7D46E331C349DD29CBA488C9B6A950A3E7DD5CAE(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Enum_CompareTo_m9FA79C9B482ADB78DE9431F5BA7552C7D2B317BE_RuntimeMethod_var); } IL_0009: { RuntimeObject * L_1 = ___target0; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); int32_t L_2 = Enum_InternalCompareTo_m3EBB69A78DA374BF88E9393542454A8DB9FEC73A(__this, L_1, /*hidden argument*/NULL); V_0 = L_2; int32_t L_3 = V_0; if ((((int32_t)L_3) >= ((int32_t)2))) { goto IL_0017; } } { int32_t L_4 = V_0; return L_4; } IL_0017: { int32_t L_5 = V_0; if ((!(((uint32_t)L_5) == ((uint32_t)2)))) { goto IL_0051; } } { Type_t * L_6 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(__this, /*hidden argument*/NULL); V_1 = L_6; RuntimeObject * L_7 = ___target0; NullCheck(L_7); Type_t * L_8 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_7, /*hidden argument*/NULL); V_2 = L_8; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_9 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_10 = L_9; Type_t * L_11 = V_2; NullCheck(L_11); String_t* L_12 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_11); NullCheck(L_10); ArrayElementTypeCheck (L_10, L_12); (L_10)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_12); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_13 = L_10; Type_t * L_14 = V_1; NullCheck(L_14); String_t* L_15 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_14); NullCheck(L_13); ArrayElementTypeCheck (L_13, L_15); (L_13)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_15); String_t* L_16 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteral19D5B110F19B2190575B7810E1FA91334E8E400F, L_13, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_17 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_17, L_16, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, NULL, Enum_CompareTo_m9FA79C9B482ADB78DE9431F5BA7552C7D2B317BE_RuntimeMethod_var); } IL_0051: { String_t* L_18 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFEC5F94EEF090E85867493394092E5DE8BF859D3, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_19 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_19, L_18, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, NULL, Enum_CompareTo_m9FA79C9B482ADB78DE9431F5BA7552C7D2B317BE_RuntimeMethod_var); } } // System.String System.Enum::ToString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Enum_ToString_m6BEF4567C67A1EF85E25BAEBF882C792CDC0808C (RuntimeObject * __this, String_t* ___format0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_ToString_m6BEF4567C67A1EF85E25BAEBF882C792CDC0808C_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___format0; if (!L_0) { goto IL_000b; } } { String_t* L_1 = ___format0; NullCheck(L_1); int32_t L_2 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_1, /*hidden argument*/NULL); if (L_2) { goto IL_0012; } } IL_000b: { ___format0 = _stringLiteralA36A6718F54524D846894FB04B5B885B4E43E63B; } IL_0012: { String_t* L_3 = ___format0; int32_t L_4 = String_Compare_m5BD1EF8904C9B13BEDB7A876B122F117B317B442(L_3, _stringLiteralA36A6718F54524D846894FB04B5B885B4E43E63B, 5, /*hidden argument*/NULL); if (L_4) { goto IL_0027; } } { String_t* L_5 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, __this); return L_5; } IL_0027: { String_t* L_6 = ___format0; int32_t L_7 = String_Compare_m5BD1EF8904C9B13BEDB7A876B122F117B317B442(L_6, _stringLiteral50C9E8D5FC98727B4BBC93CF5D64A68DB647F04F, 5, /*hidden argument*/NULL); if (L_7) { goto IL_0041; } } { RuntimeObject * L_8 = Enum_GetValue_m1537D0F805734D5C039C47E59D0B1A53B659AC0A(__this, /*hidden argument*/NULL); NullCheck(L_8); String_t* L_9 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_8); return L_9; } IL_0041: { String_t* L_10 = ___format0; int32_t L_11 = String_Compare_m5BD1EF8904C9B13BEDB7A876B122F117B317B442(L_10, _stringLiteralC032ADC1FF629C9B66F22749AD667E6BEADF144B, 5, /*hidden argument*/NULL); if (L_11) { goto IL_005b; } } { RuntimeObject * L_12 = Enum_GetValue_m1537D0F805734D5C039C47E59D0B1A53B659AC0A(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); String_t* L_13 = Enum_InternalFormattedHexString_mBE7CD93BAA508C20D13D470A11B40222893508DF(L_12, /*hidden argument*/NULL); return L_13; } IL_005b: { String_t* L_14 = ___format0; int32_t L_15 = String_Compare_m5BD1EF8904C9B13BEDB7A876B122F117B317B442(L_14, _stringLiteralE69F20E9F683920D3FB4329ABD951E878B1F9372, 5, /*hidden argument*/NULL); if (L_15) { goto IL_0080; } } { Type_t * L_16 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(__this, /*hidden argument*/NULL); RuntimeObject * L_17 = Enum_GetValue_m1537D0F805734D5C039C47E59D0B1A53B659AC0A(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); String_t* L_18 = Enum_InternalFlagsFormat_mD244B3277B49F145783C308015C9689FE9DF475C(((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)CastclassClass((RuntimeObject*)L_16, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)), L_17, /*hidden argument*/NULL); return L_18; } IL_0080: { String_t* L_19 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral3E05D1803CBCEFD7109BD5259E9057AD7C3AC318, /*hidden argument*/NULL); FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * L_20 = (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC *)il2cpp_codegen_object_new(FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var); FormatException__ctor_m89167FF9884AE20232190FE9286DC50E146A4F14(L_20, L_19, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, NULL, Enum_ToString_m6BEF4567C67A1EF85E25BAEBF882C792CDC0808C_RuntimeMethod_var); } } // System.String System.Enum::ToString(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Enum_ToString_mF372E130456A4B63011F26A93166AF2E49DAD149 (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { { String_t* L_0 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, __this); return L_0; } } // System.TypeCode System.Enum::GetTypeCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enum_GetTypeCode_m9D0FF53153AF9E180B67F3B48054E9868CAFF032 (RuntimeObject * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_GetTypeCode_m9D0FF53153AF9E180B67F3B48054E9868CAFF032_MetadataUsageId); s_Il2CppMethodInitialized = true; } Type_t * V_0 = NULL; { Type_t * L_0 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); Type_t * L_1 = Enum_GetUnderlyingType_m0715B4E60E6909F03FF7302B6E20B1AB88DA84B1(L_0, /*hidden argument*/NULL); V_0 = L_1; Type_t * L_2 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_3, /*hidden argument*/NULL); bool L_5 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_2, L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_0021; } } { return (int32_t)(((int32_t)9)); } IL_0021: { Type_t * L_6 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_7 = { reinterpret_cast<intptr_t> (SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_8 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_7, /*hidden argument*/NULL); bool L_9 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_6, L_8, /*hidden argument*/NULL); if (!L_9) { goto IL_0035; } } { return (int32_t)(5); } IL_0035: { Type_t * L_10 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_11 = { reinterpret_cast<intptr_t> (Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_12 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_11, /*hidden argument*/NULL); bool L_13 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_10, L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_0049; } } { return (int32_t)(7); } IL_0049: { Type_t * L_14 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_15 = { reinterpret_cast<intptr_t> (Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_16 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_15, /*hidden argument*/NULL); bool L_17 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_14, L_16, /*hidden argument*/NULL); if (!L_17) { goto IL_005e; } } { return (int32_t)(((int32_t)11)); } IL_005e: { Type_t * L_18 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_19 = { reinterpret_cast<intptr_t> (UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_20 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_19, /*hidden argument*/NULL); bool L_21 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_18, L_20, /*hidden argument*/NULL); if (!L_21) { goto IL_0073; } } { return (int32_t)(((int32_t)10)); } IL_0073: { Type_t * L_22 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_23 = { reinterpret_cast<intptr_t> (Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_24 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_23, /*hidden argument*/NULL); bool L_25 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_22, L_24, /*hidden argument*/NULL); if (!L_25) { goto IL_0087; } } { return (int32_t)(6); } IL_0087: { Type_t * L_26 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_27 = { reinterpret_cast<intptr_t> (UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_28 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_27, /*hidden argument*/NULL); bool L_29 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_26, L_28, /*hidden argument*/NULL); if (!L_29) { goto IL_009b; } } { return (int32_t)(8); } IL_009b: { Type_t * L_30 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_31 = { reinterpret_cast<intptr_t> (UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_32 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_31, /*hidden argument*/NULL); bool L_33 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_30, L_32, /*hidden argument*/NULL); if (!L_33) { goto IL_00b0; } } { return (int32_t)(((int32_t)12)); } IL_00b0: { Type_t * L_34 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_35 = { reinterpret_cast<intptr_t> (Boolean_tB53F6830F670160873277339AA58F15CAED4399C_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_36 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_35, /*hidden argument*/NULL); bool L_37 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_34, L_36, /*hidden argument*/NULL); if (!L_37) { goto IL_00c4; } } { return (int32_t)(3); } IL_00c4: { Type_t * L_38 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_39 = { reinterpret_cast<intptr_t> (Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_40 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_39, /*hidden argument*/NULL); bool L_41 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_38, L_40, /*hidden argument*/NULL); if (!L_41) { goto IL_00d8; } } { return (int32_t)(4); } IL_00d8: { String_t* L_42 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFEC5F94EEF090E85867493394092E5DE8BF859D3, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_43 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_43, L_42, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_43, NULL, Enum_GetTypeCode_m9D0FF53153AF9E180B67F3B48054E9868CAFF032_RuntimeMethod_var); } } // System.Boolean System.Enum::System.IConvertible.ToBoolean(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enum_System_IConvertible_ToBoolean_m3EF5E33A9128CD048EEA69A04F6B422884EE8D4B (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_System_IConvertible_ToBoolean_m3EF5E33A9128CD048EEA69A04F6B422884EE8D4B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = Enum_GetValue_m1537D0F805734D5C039C47E59D0B1A53B659AC0A(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); bool L_2 = Convert_ToBoolean_m881535C7C6F8B032F5883E7F18A90C27690FB5E4(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Char System.Enum::System.IConvertible.ToChar(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Enum_System_IConvertible_ToChar_mE05C5BDA35FD64946853DAD041736C5CE5892593 (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_System_IConvertible_ToChar_mE05C5BDA35FD64946853DAD041736C5CE5892593_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = Enum_GetValue_m1537D0F805734D5C039C47E59D0B1A53B659AC0A(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); Il2CppChar L_2 = Convert_ToChar_m94EF86BDBD5110CF4C652C48A625F546AA24CE95(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.SByte System.Enum::System.IConvertible.ToSByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Enum_System_IConvertible_ToSByte_mAF0D676F0F0687E14F0C1E762D9DA9BB651A6187 (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_System_IConvertible_ToSByte_mAF0D676F0F0687E14F0C1E762D9DA9BB651A6187_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = Enum_GetValue_m1537D0F805734D5C039C47E59D0B1A53B659AC0A(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); int8_t L_2 = Convert_ToSByte_m2716303126BD8C930D1D4E8590F8706A8F26AD48(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Byte System.Enum::System.IConvertible.ToByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Enum_System_IConvertible_ToByte_m5BE387416F92EACEB0128ECFE6416748FE72D6E6 (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_System_IConvertible_ToByte_m5BE387416F92EACEB0128ECFE6416748FE72D6E6_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = Enum_GetValue_m1537D0F805734D5C039C47E59D0B1A53B659AC0A(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); uint8_t L_2 = Convert_ToByte_m71CFEFDB61F13E2AD7ECF91BA5DEE0616C1E857A(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Int16 System.Enum::System.IConvertible.ToInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Enum_System_IConvertible_ToInt16_mF634B6CC5EE72D354C34877FF1AE6CC34E6B4AFB (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_System_IConvertible_ToInt16_mF634B6CC5EE72D354C34877FF1AE6CC34E6B4AFB_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = Enum_GetValue_m1537D0F805734D5C039C47E59D0B1A53B659AC0A(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); int16_t L_2 = Convert_ToInt16_m9E4E48A97E050355468F58D2EAEB3AB3C811CE8B(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.UInt16 System.Enum::System.IConvertible.ToUInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Enum_System_IConvertible_ToUInt16_m203C0CE3AE4167514D5FE5F1B238A4767B39039E (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_System_IConvertible_ToUInt16_m203C0CE3AE4167514D5FE5F1B238A4767B39039E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = Enum_GetValue_m1537D0F805734D5C039C47E59D0B1A53B659AC0A(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); uint16_t L_2 = Convert_ToUInt16_mB7311DB5960043FD81C1305B69C5328126F43C89(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Int32 System.Enum::System.IConvertible.ToInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enum_System_IConvertible_ToInt32_mB974E67C083098966108C522AB020C4E5505ACE4 (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_System_IConvertible_ToInt32_mB974E67C083098966108C522AB020C4E5505ACE4_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = Enum_GetValue_m1537D0F805734D5C039C47E59D0B1A53B659AC0A(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); int32_t L_2 = Convert_ToInt32_m5D40340597602FB6C20BAB933E8B29617232757A(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.UInt32 System.Enum::System.IConvertible.ToUInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Enum_System_IConvertible_ToUInt32_m38E249A9BF47B07A3693183A9C930E1E39415EC5 (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_System_IConvertible_ToUInt32_m38E249A9BF47B07A3693183A9C930E1E39415EC5_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = Enum_GetValue_m1537D0F805734D5C039C47E59D0B1A53B659AC0A(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); uint32_t L_2 = Convert_ToUInt32_mB53B83E03C15DCD785806793ACC3083FCC7F4BCA(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Int64 System.Enum::System.IConvertible.ToInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Enum_System_IConvertible_ToInt64_mE8737C7F601FFC92423779856882960DC0F83974 (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_System_IConvertible_ToInt64_mE8737C7F601FFC92423779856882960DC0F83974_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = Enum_GetValue_m1537D0F805734D5C039C47E59D0B1A53B659AC0A(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); int64_t L_2 = Convert_ToInt64_m8964FDE5D82FEC54106DBF35E1F67D70F6E73E29(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.UInt64 System.Enum::System.IConvertible.ToUInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Enum_System_IConvertible_ToUInt64_mA2ED7907AF20FBFD20F802AE06F18ACB4E23CA9D (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_System_IConvertible_ToUInt64_mA2ED7907AF20FBFD20F802AE06F18ACB4E23CA9D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = Enum_GetValue_m1537D0F805734D5C039C47E59D0B1A53B659AC0A(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); uint64_t L_2 = Convert_ToUInt64_mA8C3C5498FC28CBA0EB0C37409EB9E04CCF6B8D2(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Single System.Enum::System.IConvertible.ToSingle(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Enum_System_IConvertible_ToSingle_mAC17D8550816E4E23FE6ADA89D4CEDE9DEF98DC9 (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_System_IConvertible_ToSingle_mAC17D8550816E4E23FE6ADA89D4CEDE9DEF98DC9_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = Enum_GetValue_m1537D0F805734D5C039C47E59D0B1A53B659AC0A(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); float L_2 = Convert_ToSingle_mDC4B8C88AF6F230E79A887EFD4D745CB08341828(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Double System.Enum::System.IConvertible.ToDouble(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Enum_System_IConvertible_ToDouble_mB55D36C91D85AB21483720880D702F7F70F7D8BE (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_System_IConvertible_ToDouble_mB55D36C91D85AB21483720880D702F7F70F7D8BE_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = Enum_GetValue_m1537D0F805734D5C039C47E59D0B1A53B659AC0A(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); double L_2 = Convert_ToDouble_m053A47D87C59CA7A87D4E67E5E06368D775D7651(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Decimal System.Enum::System.IConvertible.ToDecimal(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Enum_System_IConvertible_ToDecimal_m65F8B300A95DF82D982AD78D3E3FF84F5BF2E2AA (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_System_IConvertible_ToDecimal_m65F8B300A95DF82D982AD78D3E3FF84F5BF2E2AA_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = Enum_GetValue_m1537D0F805734D5C039C47E59D0B1A53B659AC0A(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_2 = Convert_ToDecimal_mD8F65E8B251DBE61789CAD032172D089375D1E5B(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.DateTime System.Enum::System.IConvertible.ToDateTime(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Enum_System_IConvertible_ToDateTime_m4370621C3EB84BB84E1554A41A2F601D3CC4A11E (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_System_IConvertible_ToDateTime_m4370621C3EB84BB84E1554A41A2F601D3CC4A11E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0; NullCheck(L_1); ArrayElementTypeCheck (L_1, _stringLiteral20588AE8E5C269292D35F9DFFFA8F2EB3FD3C259); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteral20588AE8E5C269292D35F9DFFFA8F2EB3FD3C259); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = L_1; NullCheck(L_2); ArrayElementTypeCheck (L_2, _stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F); (L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)_stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F); String_t* L_3 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralE5559C91F3F57F398B8B547CA356C67FFA1F6497, L_2, /*hidden argument*/NULL); InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_4 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var); InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Enum_System_IConvertible_ToDateTime_m4370621C3EB84BB84E1554A41A2F601D3CC4A11E_RuntimeMethod_var); } } // System.Object System.Enum::System.IConvertible.ToType(System.Type,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_System_IConvertible_ToType_m31DBF0CD8F83E59C06B8EC8473BD8639DC1B2853 (RuntimeObject * __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_System_IConvertible_ToType_m31DBF0CD8F83E59C06B8EC8473BD8639DC1B2853_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___type0; RuntimeObject* L_1 = ___provider1; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); RuntimeObject * L_2 = Convert_DefaultToType_m899D5F6B9FE3E8B878BC56172C6BFE788B6C1BE3(__this, L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Object System.Enum::ToObject(System.Type,System.SByte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_ToObject_mF17916242A9F9ACD4F79E15749BEE3FBB2D7A57B (Type_t * ___enumType0, int8_t ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_ToObject_mF17916242A9F9ACD4F79E15749BEE3FBB2D7A57B_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * G_B6_0 = NULL; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * G_B5_0 = NULL; { Type_t * L_0 = ___enumType0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0014; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Enum_ToObject_mF17916242A9F9ACD4F79E15749BEE3FBB2D7A57B_RuntimeMethod_var); } IL_0014: { Type_t * L_3 = ___enumType0; NullCheck(L_3); bool L_4 = VirtFuncInvoker0< bool >::Invoke(70 /* System.Boolean System.Type::get_IsEnum() */, L_3); if (L_4) { goto IL_0031; } } { String_t* L_5 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral3435968A1FA5DC7806024802A561C1886C22803B, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_6 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_6, L_5, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, Enum_ToObject_mF17916242A9F9ACD4F79E15749BEE3FBB2D7A57B_RuntimeMethod_var); } IL_0031: { Type_t * L_7 = ___enumType0; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_8 = ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)IsInstClass((RuntimeObject*)L_7, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_9 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_8, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)NULL, /*hidden argument*/NULL); G_B5_0 = L_8; if (!L_9) { G_B6_0 = L_8; goto IL_0055; } } { String_t* L_10 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD9AD6D6EE31EEA74A5B100D0C9320A75B260AC4C, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_11 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_11, L_10, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, NULL, Enum_ToObject_mF17916242A9F9ACD4F79E15749BEE3FBB2D7A57B_RuntimeMethod_var); } IL_0055: { int8_t L_12 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); RuntimeObject * L_13 = Enum_InternalBoxEnum_m68B17FCE000371BEA515B898F6EC928DC8923251(G_B6_0, (((int64_t)((int64_t)L_12))), /*hidden argument*/NULL); return L_13; } } // System.Object System.Enum::ToObject(System.Type,System.Int16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_ToObject_mC2D7A39D56EFFFE7D0B61D685C8F285356CC71BF (Type_t * ___enumType0, int16_t ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_ToObject_mC2D7A39D56EFFFE7D0B61D685C8F285356CC71BF_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * G_B6_0 = NULL; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * G_B5_0 = NULL; { Type_t * L_0 = ___enumType0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0014; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Enum_ToObject_mC2D7A39D56EFFFE7D0B61D685C8F285356CC71BF_RuntimeMethod_var); } IL_0014: { Type_t * L_3 = ___enumType0; NullCheck(L_3); bool L_4 = VirtFuncInvoker0< bool >::Invoke(70 /* System.Boolean System.Type::get_IsEnum() */, L_3); if (L_4) { goto IL_0031; } } { String_t* L_5 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral3435968A1FA5DC7806024802A561C1886C22803B, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_6 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_6, L_5, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, Enum_ToObject_mC2D7A39D56EFFFE7D0B61D685C8F285356CC71BF_RuntimeMethod_var); } IL_0031: { Type_t * L_7 = ___enumType0; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_8 = ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)IsInstClass((RuntimeObject*)L_7, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_9 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_8, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)NULL, /*hidden argument*/NULL); G_B5_0 = L_8; if (!L_9) { G_B6_0 = L_8; goto IL_0055; } } { String_t* L_10 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD9AD6D6EE31EEA74A5B100D0C9320A75B260AC4C, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_11 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_11, L_10, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, NULL, Enum_ToObject_mC2D7A39D56EFFFE7D0B61D685C8F285356CC71BF_RuntimeMethod_var); } IL_0055: { int16_t L_12 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); RuntimeObject * L_13 = Enum_InternalBoxEnum_m68B17FCE000371BEA515B898F6EC928DC8923251(G_B6_0, (((int64_t)((int64_t)L_12))), /*hidden argument*/NULL); return L_13; } } // System.Object System.Enum::ToObject(System.Type,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_ToObject_mD5E11C53D7BCC62EF4260FA727E14B7B95C2191F (Type_t * ___enumType0, int32_t ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_ToObject_mD5E11C53D7BCC62EF4260FA727E14B7B95C2191F_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * G_B6_0 = NULL; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * G_B5_0 = NULL; { Type_t * L_0 = ___enumType0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0014; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Enum_ToObject_mD5E11C53D7BCC62EF4260FA727E14B7B95C2191F_RuntimeMethod_var); } IL_0014: { Type_t * L_3 = ___enumType0; NullCheck(L_3); bool L_4 = VirtFuncInvoker0< bool >::Invoke(70 /* System.Boolean System.Type::get_IsEnum() */, L_3); if (L_4) { goto IL_0031; } } { String_t* L_5 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral3435968A1FA5DC7806024802A561C1886C22803B, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_6 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_6, L_5, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, Enum_ToObject_mD5E11C53D7BCC62EF4260FA727E14B7B95C2191F_RuntimeMethod_var); } IL_0031: { Type_t * L_7 = ___enumType0; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_8 = ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)IsInstClass((RuntimeObject*)L_7, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_9 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_8, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)NULL, /*hidden argument*/NULL); G_B5_0 = L_8; if (!L_9) { G_B6_0 = L_8; goto IL_0055; } } { String_t* L_10 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD9AD6D6EE31EEA74A5B100D0C9320A75B260AC4C, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_11 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_11, L_10, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, NULL, Enum_ToObject_mD5E11C53D7BCC62EF4260FA727E14B7B95C2191F_RuntimeMethod_var); } IL_0055: { int32_t L_12 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); RuntimeObject * L_13 = Enum_InternalBoxEnum_m68B17FCE000371BEA515B898F6EC928DC8923251(G_B6_0, (((int64_t)((int64_t)L_12))), /*hidden argument*/NULL); return L_13; } } // System.Object System.Enum::ToObject(System.Type,System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_ToObject_m8F4C7D69296541DF78E40CEB98B59C7CA67633B6 (Type_t * ___enumType0, uint8_t ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_ToObject_m8F4C7D69296541DF78E40CEB98B59C7CA67633B6_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * G_B6_0 = NULL; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * G_B5_0 = NULL; { Type_t * L_0 = ___enumType0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0014; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Enum_ToObject_m8F4C7D69296541DF78E40CEB98B59C7CA67633B6_RuntimeMethod_var); } IL_0014: { Type_t * L_3 = ___enumType0; NullCheck(L_3); bool L_4 = VirtFuncInvoker0< bool >::Invoke(70 /* System.Boolean System.Type::get_IsEnum() */, L_3); if (L_4) { goto IL_0031; } } { String_t* L_5 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral3435968A1FA5DC7806024802A561C1886C22803B, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_6 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_6, L_5, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, Enum_ToObject_m8F4C7D69296541DF78E40CEB98B59C7CA67633B6_RuntimeMethod_var); } IL_0031: { Type_t * L_7 = ___enumType0; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_8 = ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)IsInstClass((RuntimeObject*)L_7, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_9 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_8, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)NULL, /*hidden argument*/NULL); G_B5_0 = L_8; if (!L_9) { G_B6_0 = L_8; goto IL_0055; } } { String_t* L_10 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD9AD6D6EE31EEA74A5B100D0C9320A75B260AC4C, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_11 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_11, L_10, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, NULL, Enum_ToObject_m8F4C7D69296541DF78E40CEB98B59C7CA67633B6_RuntimeMethod_var); } IL_0055: { uint8_t L_12 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); RuntimeObject * L_13 = Enum_InternalBoxEnum_m68B17FCE000371BEA515B898F6EC928DC8923251(G_B6_0, (((int64_t)((uint64_t)L_12))), /*hidden argument*/NULL); return L_13; } } // System.Object System.Enum::ToObject(System.Type,System.UInt16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_ToObject_mAF017E3EDCF2C7BA8FF7ED0DDCBCD827B51D4971 (Type_t * ___enumType0, uint16_t ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_ToObject_mAF017E3EDCF2C7BA8FF7ED0DDCBCD827B51D4971_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * G_B6_0 = NULL; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * G_B5_0 = NULL; { Type_t * L_0 = ___enumType0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0014; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Enum_ToObject_mAF017E3EDCF2C7BA8FF7ED0DDCBCD827B51D4971_RuntimeMethod_var); } IL_0014: { Type_t * L_3 = ___enumType0; NullCheck(L_3); bool L_4 = VirtFuncInvoker0< bool >::Invoke(70 /* System.Boolean System.Type::get_IsEnum() */, L_3); if (L_4) { goto IL_0031; } } { String_t* L_5 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral3435968A1FA5DC7806024802A561C1886C22803B, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_6 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_6, L_5, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, Enum_ToObject_mAF017E3EDCF2C7BA8FF7ED0DDCBCD827B51D4971_RuntimeMethod_var); } IL_0031: { Type_t * L_7 = ___enumType0; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_8 = ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)IsInstClass((RuntimeObject*)L_7, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_9 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_8, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)NULL, /*hidden argument*/NULL); G_B5_0 = L_8; if (!L_9) { G_B6_0 = L_8; goto IL_0055; } } { String_t* L_10 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD9AD6D6EE31EEA74A5B100D0C9320A75B260AC4C, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_11 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_11, L_10, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, NULL, Enum_ToObject_mAF017E3EDCF2C7BA8FF7ED0DDCBCD827B51D4971_RuntimeMethod_var); } IL_0055: { uint16_t L_12 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); RuntimeObject * L_13 = Enum_InternalBoxEnum_m68B17FCE000371BEA515B898F6EC928DC8923251(G_B6_0, (((int64_t)((uint64_t)L_12))), /*hidden argument*/NULL); return L_13; } } // System.Object System.Enum::ToObject(System.Type,System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_ToObject_m4C7675BBEBAD96C9706EAF7529E4113F7381F0C7 (Type_t * ___enumType0, uint32_t ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_ToObject_m4C7675BBEBAD96C9706EAF7529E4113F7381F0C7_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * G_B6_0 = NULL; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * G_B5_0 = NULL; { Type_t * L_0 = ___enumType0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0014; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Enum_ToObject_m4C7675BBEBAD96C9706EAF7529E4113F7381F0C7_RuntimeMethod_var); } IL_0014: { Type_t * L_3 = ___enumType0; NullCheck(L_3); bool L_4 = VirtFuncInvoker0< bool >::Invoke(70 /* System.Boolean System.Type::get_IsEnum() */, L_3); if (L_4) { goto IL_0031; } } { String_t* L_5 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral3435968A1FA5DC7806024802A561C1886C22803B, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_6 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_6, L_5, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, Enum_ToObject_m4C7675BBEBAD96C9706EAF7529E4113F7381F0C7_RuntimeMethod_var); } IL_0031: { Type_t * L_7 = ___enumType0; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_8 = ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)IsInstClass((RuntimeObject*)L_7, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_9 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_8, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)NULL, /*hidden argument*/NULL); G_B5_0 = L_8; if (!L_9) { G_B6_0 = L_8; goto IL_0055; } } { String_t* L_10 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD9AD6D6EE31EEA74A5B100D0C9320A75B260AC4C, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_11 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_11, L_10, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, NULL, Enum_ToObject_m4C7675BBEBAD96C9706EAF7529E4113F7381F0C7_RuntimeMethod_var); } IL_0055: { uint32_t L_12 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); RuntimeObject * L_13 = Enum_InternalBoxEnum_m68B17FCE000371BEA515B898F6EC928DC8923251(G_B6_0, (((int64_t)((uint64_t)L_12))), /*hidden argument*/NULL); return L_13; } } // System.Object System.Enum::ToObject(System.Type,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_ToObject_mE84F27DFCF3F22A1053968A9DCE6C0D14D25B7E2 (Type_t * ___enumType0, int64_t ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_ToObject_mE84F27DFCF3F22A1053968A9DCE6C0D14D25B7E2_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * G_B6_0 = NULL; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * G_B5_0 = NULL; { Type_t * L_0 = ___enumType0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0014; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Enum_ToObject_mE84F27DFCF3F22A1053968A9DCE6C0D14D25B7E2_RuntimeMethod_var); } IL_0014: { Type_t * L_3 = ___enumType0; NullCheck(L_3); bool L_4 = VirtFuncInvoker0< bool >::Invoke(70 /* System.Boolean System.Type::get_IsEnum() */, L_3); if (L_4) { goto IL_0031; } } { String_t* L_5 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral3435968A1FA5DC7806024802A561C1886C22803B, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_6 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_6, L_5, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, Enum_ToObject_mE84F27DFCF3F22A1053968A9DCE6C0D14D25B7E2_RuntimeMethod_var); } IL_0031: { Type_t * L_7 = ___enumType0; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_8 = ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)IsInstClass((RuntimeObject*)L_7, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_9 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_8, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)NULL, /*hidden argument*/NULL); G_B5_0 = L_8; if (!L_9) { G_B6_0 = L_8; goto IL_0055; } } { String_t* L_10 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD9AD6D6EE31EEA74A5B100D0C9320A75B260AC4C, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_11 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_11, L_10, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, NULL, Enum_ToObject_mE84F27DFCF3F22A1053968A9DCE6C0D14D25B7E2_RuntimeMethod_var); } IL_0055: { int64_t L_12 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); RuntimeObject * L_13 = Enum_InternalBoxEnum_m68B17FCE000371BEA515B898F6EC928DC8923251(G_B6_0, L_12, /*hidden argument*/NULL); return L_13; } } // System.Object System.Enum::ToObject(System.Type,System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_ToObject_m8F5068C996337F56B4000A4B255126A35951BD05 (Type_t * ___enumType0, uint64_t ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_ToObject_m8F5068C996337F56B4000A4B255126A35951BD05_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * G_B6_0 = NULL; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * G_B5_0 = NULL; { Type_t * L_0 = ___enumType0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0014; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Enum_ToObject_m8F5068C996337F56B4000A4B255126A35951BD05_RuntimeMethod_var); } IL_0014: { Type_t * L_3 = ___enumType0; NullCheck(L_3); bool L_4 = VirtFuncInvoker0< bool >::Invoke(70 /* System.Boolean System.Type::get_IsEnum() */, L_3); if (L_4) { goto IL_0031; } } { String_t* L_5 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral3435968A1FA5DC7806024802A561C1886C22803B, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_6 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_6, L_5, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, Enum_ToObject_m8F5068C996337F56B4000A4B255126A35951BD05_RuntimeMethod_var); } IL_0031: { Type_t * L_7 = ___enumType0; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_8 = ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)IsInstClass((RuntimeObject*)L_7, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_9 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_8, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)NULL, /*hidden argument*/NULL); G_B5_0 = L_8; if (!L_9) { G_B6_0 = L_8; goto IL_0055; } } { String_t* L_10 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD9AD6D6EE31EEA74A5B100D0C9320A75B260AC4C, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_11 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_11, L_10, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, NULL, Enum_ToObject_m8F5068C996337F56B4000A4B255126A35951BD05_RuntimeMethod_var); } IL_0055: { uint64_t L_12 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); RuntimeObject * L_13 = Enum_InternalBoxEnum_m68B17FCE000371BEA515B898F6EC928DC8923251(G_B6_0, L_12, /*hidden argument*/NULL); return L_13; } } // System.Object System.Enum::ToObject(System.Type,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_ToObject_mC3CE70A98934303986CC11631FC415BCA9C4000A (Type_t * ___enumType0, Il2CppChar ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_ToObject_mC3CE70A98934303986CC11631FC415BCA9C4000A_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * G_B6_0 = NULL; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * G_B5_0 = NULL; { Type_t * L_0 = ___enumType0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0014; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Enum_ToObject_mC3CE70A98934303986CC11631FC415BCA9C4000A_RuntimeMethod_var); } IL_0014: { Type_t * L_3 = ___enumType0; NullCheck(L_3); bool L_4 = VirtFuncInvoker0< bool >::Invoke(70 /* System.Boolean System.Type::get_IsEnum() */, L_3); if (L_4) { goto IL_0031; } } { String_t* L_5 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral3435968A1FA5DC7806024802A561C1886C22803B, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_6 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_6, L_5, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, Enum_ToObject_mC3CE70A98934303986CC11631FC415BCA9C4000A_RuntimeMethod_var); } IL_0031: { Type_t * L_7 = ___enumType0; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_8 = ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)IsInstClass((RuntimeObject*)L_7, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_9 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_8, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)NULL, /*hidden argument*/NULL); G_B5_0 = L_8; if (!L_9) { G_B6_0 = L_8; goto IL_0055; } } { String_t* L_10 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD9AD6D6EE31EEA74A5B100D0C9320A75B260AC4C, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_11 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_11, L_10, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, NULL, Enum_ToObject_mC3CE70A98934303986CC11631FC415BCA9C4000A_RuntimeMethod_var); } IL_0055: { Il2CppChar L_12 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); RuntimeObject * L_13 = Enum_InternalBoxEnum_m68B17FCE000371BEA515B898F6EC928DC8923251(G_B6_0, (((int64_t)((uint64_t)L_12))), /*hidden argument*/NULL); return L_13; } } // System.Object System.Enum::ToObject(System.Type,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enum_ToObject_m22DBEC2C53D962AC357CC08D6ECEA2DE53867C15 (Type_t * ___enumType0, bool ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum_ToObject_m22DBEC2C53D962AC357CC08D6ECEA2DE53867C15_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * G_B6_0 = NULL; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * G_B5_0 = NULL; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * G_B8_0 = NULL; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * G_B7_0 = NULL; int32_t G_B9_0 = 0; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * G_B9_1 = NULL; { Type_t * L_0 = ___enumType0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0014; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Enum_ToObject_m22DBEC2C53D962AC357CC08D6ECEA2DE53867C15_RuntimeMethod_var); } IL_0014: { Type_t * L_3 = ___enumType0; NullCheck(L_3); bool L_4 = VirtFuncInvoker0< bool >::Invoke(70 /* System.Boolean System.Type::get_IsEnum() */, L_3); if (L_4) { goto IL_0031; } } { String_t* L_5 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral3435968A1FA5DC7806024802A561C1886C22803B, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_6 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_6, L_5, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, Enum_ToObject_m22DBEC2C53D962AC357CC08D6ECEA2DE53867C15_RuntimeMethod_var); } IL_0031: { Type_t * L_7 = ___enumType0; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_8 = ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)IsInstClass((RuntimeObject*)L_7, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_9 = RuntimeType_op_Equality_mB551059029FC92ABEFC75A240B80302BE8302CA4(L_8, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)NULL, /*hidden argument*/NULL); G_B5_0 = L_8; if (!L_9) { G_B6_0 = L_8; goto IL_0055; } } { String_t* L_10 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD9AD6D6EE31EEA74A5B100D0C9320A75B260AC4C, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_11 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_11, L_10, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, NULL, Enum_ToObject_m22DBEC2C53D962AC357CC08D6ECEA2DE53867C15_RuntimeMethod_var); } IL_0055: { bool L_12 = ___value1; G_B7_0 = G_B6_0; if (L_12) { G_B8_0 = G_B6_0; goto IL_005b; } } { G_B9_0 = 0; G_B9_1 = G_B7_0; goto IL_005c; } IL_005b: { G_B9_0 = 1; G_B9_1 = G_B8_0; } IL_005c: { IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); RuntimeObject * L_13 = Enum_InternalBoxEnum_m68B17FCE000371BEA515B898F6EC928DC8923251(G_B9_1, (((int64_t)((int64_t)G_B9_0))), /*hidden argument*/NULL); return L_13; } } // System.Void System.Enum::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enum__ctor_mCC9F42D49734100FAD982FAEE723DB747A0E97CB (RuntimeObject * __this, const RuntimeMethod* method) { { ValueType__ctor_m091BDF02E011A41101A74AABB803417EE40CA5B7(__this, /*hidden argument*/NULL); return; } } // System.Void System.Enum::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enum__cctor_m0D90111BC3889271B4D8E11627D95ABD3F037AB3 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Enum__cctor_m0D90111BC3889271B4D8E11627D95ABD3F037AB3_MetadataUsageId); s_Il2CppMethodInitialized = true; } { CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)1); CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_1 = L_0; NullCheck(L_1); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppChar)((int32_t)44)); ((Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields*)il2cpp_codegen_static_fields_for(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var))->set_enumSeperatorCharArray_0(L_1); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Conversion methods for marshalling of: System.Enum/EnumResult IL2CPP_EXTERN_C void EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C_marshal_pinvoke(const EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C& unmarshaled, EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C_marshaled_pinvoke& marshaled) { Exception_t* ___m_innerException_6Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_innerException' of type 'EnumResult': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___m_innerException_6Exception, NULL, NULL); } IL2CPP_EXTERN_C void EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C_marshal_pinvoke_back(const EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C_marshaled_pinvoke& marshaled, EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C& unmarshaled) { Exception_t* ___m_innerException_6Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_innerException' of type 'EnumResult': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___m_innerException_6Exception, NULL, NULL); } // Conversion method for clean up from marshalling of: System.Enum/EnumResult IL2CPP_EXTERN_C void EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C_marshal_pinvoke_cleanup(EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: System.Enum/EnumResult IL2CPP_EXTERN_C void EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C_marshal_com(const EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C& unmarshaled, EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C_marshaled_com& marshaled) { Exception_t* ___m_innerException_6Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_innerException' of type 'EnumResult': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___m_innerException_6Exception, NULL, NULL); } IL2CPP_EXTERN_C void EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C_marshal_com_back(const EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C_marshaled_com& marshaled, EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C& unmarshaled) { Exception_t* ___m_innerException_6Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_innerException' of type 'EnumResult': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___m_innerException_6Exception, NULL, NULL); } // Conversion method for clean up from marshalling of: System.Enum/EnumResult IL2CPP_EXTERN_C void EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C_marshal_com_cleanup(EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C_marshaled_com& marshaled) { } // System.Void System.Enum_EnumResult::Init(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnumResult_Init_m216C0A2C400E00ECA1E85E1C6374C19862785478 (EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C * __this, bool ___canMethodThrow0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EnumResult_Init_m216C0A2C400E00ECA1E85E1C6374C19862785478_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = 0; RuntimeObject * L_1 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_0); __this->set_parsedEnum_0(L_1); bool L_2 = ___canMethodThrow0; __this->set_canThrow_1(L_2); return; } } IL2CPP_EXTERN_C void EnumResult_Init_m216C0A2C400E00ECA1E85E1C6374C19862785478_AdjustorThunk (RuntimeObject * __this, bool ___canMethodThrow0, const RuntimeMethod* method) { EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C * _thisAdjusted = reinterpret_cast<EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C *>(__this + 1); EnumResult_Init_m216C0A2C400E00ECA1E85E1C6374C19862785478(_thisAdjusted, ___canMethodThrow0, method); } // System.Void System.Enum_EnumResult::SetFailure(System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnumResult_SetFailure_m30134BF6A5C03CF59E21BC54AF69042D327FA125 (EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C * __this, Exception_t * ___unhandledException0, const RuntimeMethod* method) { { __this->set_m_failure_2(4); Exception_t * L_0 = ___unhandledException0; __this->set_m_innerException_6(L_0); return; } } IL2CPP_EXTERN_C void EnumResult_SetFailure_m30134BF6A5C03CF59E21BC54AF69042D327FA125_AdjustorThunk (RuntimeObject * __this, Exception_t * ___unhandledException0, const RuntimeMethod* method) { EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C * _thisAdjusted = reinterpret_cast<EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C *>(__this + 1); EnumResult_SetFailure_m30134BF6A5C03CF59E21BC54AF69042D327FA125(_thisAdjusted, ___unhandledException0, method); } // System.Void System.Enum_EnumResult::SetFailure(System.Enum_ParseFailureKind,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnumResult_SetFailure_mE9F0F9CA050C904DA2409A923325038BEAC693BD (EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C * __this, int32_t ___failure0, String_t* ___failureParameter1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EnumResult_SetFailure_mE9F0F9CA050C904DA2409A923325038BEAC693BD_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___failure0; __this->set_m_failure_2(L_0); String_t* L_1 = ___failureParameter1; __this->set_m_failureParameter_4(L_1); bool L_2 = __this->get_canThrow_1(); if (!L_2) { goto IL_001d; } } { Exception_t * L_3 = EnumResult_GetEnumParseException_m7C06BD6056764876616D10BB96C55599D008740B((EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C *)__this, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, EnumResult_SetFailure_mE9F0F9CA050C904DA2409A923325038BEAC693BD_RuntimeMethod_var); } IL_001d: { return; } } IL2CPP_EXTERN_C void EnumResult_SetFailure_mE9F0F9CA050C904DA2409A923325038BEAC693BD_AdjustorThunk (RuntimeObject * __this, int32_t ___failure0, String_t* ___failureParameter1, const RuntimeMethod* method) { EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C * _thisAdjusted = reinterpret_cast<EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C *>(__this + 1); EnumResult_SetFailure_mE9F0F9CA050C904DA2409A923325038BEAC693BD(_thisAdjusted, ___failure0, ___failureParameter1, method); } // System.Void System.Enum_EnumResult::SetFailure(System.Enum_ParseFailureKind,System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnumResult_SetFailure_m074187A9DB5CC9B1E8AC1149BC23D612B6A63629 (EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C * __this, int32_t ___failure0, String_t* ___failureMessageID1, RuntimeObject * ___failureMessageFormatArgument2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EnumResult_SetFailure_m074187A9DB5CC9B1E8AC1149BC23D612B6A63629_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___failure0; __this->set_m_failure_2(L_0); String_t* L_1 = ___failureMessageID1; __this->set_m_failureMessageID_3(L_1); RuntimeObject * L_2 = ___failureMessageFormatArgument2; __this->set_m_failureMessageFormatArgument_5(L_2); bool L_3 = __this->get_canThrow_1(); if (!L_3) { goto IL_0024; } } { Exception_t * L_4 = EnumResult_GetEnumParseException_m7C06BD6056764876616D10BB96C55599D008740B((EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C *)__this, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, EnumResult_SetFailure_m074187A9DB5CC9B1E8AC1149BC23D612B6A63629_RuntimeMethod_var); } IL_0024: { return; } } IL2CPP_EXTERN_C void EnumResult_SetFailure_m074187A9DB5CC9B1E8AC1149BC23D612B6A63629_AdjustorThunk (RuntimeObject * __this, int32_t ___failure0, String_t* ___failureMessageID1, RuntimeObject * ___failureMessageFormatArgument2, const RuntimeMethod* method) { EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C * _thisAdjusted = reinterpret_cast<EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C *>(__this + 1); EnumResult_SetFailure_m074187A9DB5CC9B1E8AC1149BC23D612B6A63629(_thisAdjusted, ___failure0, ___failureMessageID1, ___failureMessageFormatArgument2, method); } // System.Exception System.Enum_EnumResult::GetEnumParseException() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * EnumResult_GetEnumParseException_m7C06BD6056764876616D10BB96C55599D008740B (EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EnumResult_GetEnumParseException_m7C06BD6056764876616D10BB96C55599D008740B_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { int32_t L_0 = __this->get_m_failure_2(); V_0 = L_0; int32_t L_1 = V_0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)1))) { case 0: { goto IL_0021; } case 1: { goto IL_0032; } case 2: { goto IL_003e; } case 3: { goto IL_005e; } } } { goto IL_0065; } IL_0021: { String_t* L_2 = __this->get_m_failureMessageID_3(); String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(L_2, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_4 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_4, L_3, /*hidden argument*/NULL); return L_4; } IL_0032: { String_t* L_5 = __this->get_m_failureParameter_4(); ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_6 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_6, L_5, /*hidden argument*/NULL); return L_6; } IL_003e: { String_t* L_7 = __this->get_m_failureMessageID_3(); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_9 = L_8; RuntimeObject * L_10 = __this->get_m_failureMessageFormatArgument_5(); NullCheck(L_9); ArrayElementTypeCheck (L_9, L_10); (L_9)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_10); String_t* L_11 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(L_7, L_9, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_12, L_11, /*hidden argument*/NULL); return L_12; } IL_005e: { Exception_t * L_13 = __this->get_m_innerException_6(); return L_13; } IL_0065: { String_t* L_14 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral83EB9DF3AAB1C833EB3CCFD3CEFB43106280EF34, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_15 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_15, L_14, /*hidden argument*/NULL); return L_15; } } IL2CPP_EXTERN_C Exception_t * EnumResult_GetEnumParseException_m7C06BD6056764876616D10BB96C55599D008740B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C * _thisAdjusted = reinterpret_cast<EnumResult_t35D8EE76FAC6638FD89A5338957F377BF893566C *>(__this + 1); return EnumResult_GetEnumParseException_m7C06BD6056764876616D10BB96C55599D008740B(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #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.Enum_ValuesAndNames::.ctor(System.UInt64[],System.String[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesAndNames__ctor_mB8D86E5162F53D54672653DDE596C5FEBD9B3D7F (ValuesAndNames_t48A099BB10887A683F62017FAD199FB2088CBDD2 * __this, UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* ___values0, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___names1, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_0 = ___values0; __this->set_Values_0(L_0); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_1 = ___names1; __this->set_Names_1(L_1); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.String System.Environment::GetResourceString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9 (String_t* ___key0, const RuntimeMethod* method) { { String_t* L_0 = ___key0; return L_0; } } // System.String System.Environment::GetResourceString(System.String,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB (String_t* ___key0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___values1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_0 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); String_t* L_1 = ___key0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___values1; String_t* L_3 = String_Format_mF68EE0DEC1AA5ADE9DFEF9AE0508E428FBB10EFD(L_0, L_1, L_2, /*hidden argument*/NULL); return L_3; } } // System.String System.Environment::GetResourceStringEncodingName(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetResourceStringEncodingName_mB514D97C814AF47301B938B99C800A2130CB46AA (int32_t ___codePage0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Environment_GetResourceStringEncodingName_mB514D97C814AF47301B938B99C800A2130CB46AA_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___codePage0; if ((((int32_t)L_0) > ((int32_t)((int32_t)12000)))) { goto IL_0022; } } { int32_t L_1 = ___codePage0; if ((((int32_t)L_1) == ((int32_t)((int32_t)1200)))) { goto IL_004e; } } { int32_t L_2 = ___codePage0; if ((((int32_t)L_2) == ((int32_t)((int32_t)1201)))) { goto IL_0059; } } { int32_t L_3 = ___codePage0; if ((((int32_t)L_3) == ((int32_t)((int32_t)12000)))) { goto IL_0064; } } { goto IL_009b; } IL_0022: { int32_t L_4 = ___codePage0; if ((((int32_t)L_4) > ((int32_t)((int32_t)20127)))) { goto IL_003c; } } { int32_t L_5 = ___codePage0; if ((((int32_t)L_5) == ((int32_t)((int32_t)12001)))) { goto IL_006f; } } { int32_t L_6 = ___codePage0; if ((((int32_t)L_6) == ((int32_t)((int32_t)20127)))) { goto IL_007a; } } { goto IL_009b; } IL_003c: { int32_t L_7 = ___codePage0; if ((((int32_t)L_7) == ((int32_t)((int32_t)65000)))) { goto IL_0085; } } { int32_t L_8 = ___codePage0; if ((((int32_t)L_8) == ((int32_t)((int32_t)65001)))) { goto IL_0090; } } { goto IL_009b; } IL_004e: { String_t* L_9 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral9AB0BD9A6126EE4B9D7538D5C6CBA7AA587F31ED, /*hidden argument*/NULL); return L_9; } IL_0059: { String_t* L_10 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral902685EF3692B3767BC81B2C5518F1DB33AF2498, /*hidden argument*/NULL); return L_10; } IL_0064: { String_t* L_11 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral07D16614C7EAFA63B6B2E43D94BCADBAD1CF4C3B, /*hidden argument*/NULL); return L_11; } IL_006f: { String_t* L_12 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral3F98816C9705E9EA06CFD4DA52C96A453E6CB2D8, /*hidden argument*/NULL); return L_12; } IL_007a: { String_t* L_13 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral03EE66A3DAB3D2CDCE115FCC8379D06011B9D4B9, /*hidden argument*/NULL); return L_13; } IL_0085: { String_t* L_14 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral12209D77C65DDBBBCC60B5E59E78677AC5470772, /*hidden argument*/NULL); return L_14; } IL_0090: { String_t* L_15 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralBBFDD5D9E202955BADC46A0444FEDB1D583D1C04, /*hidden argument*/NULL); return L_15; } IL_009b: { IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_16 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); String_t* L_17 = Int32_ToString_m1D0AF82BDAB5D4710527DD3FEFA6F01246D128A5((int32_t*)(&___codePage0), L_16, /*hidden argument*/NULL); return L_17; } } // System.Int32 System.Environment::get_CurrentManagedThreadId() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Environment_get_CurrentManagedThreadId_m0E897C88355903220B1EC214832F5E815D7C13D1 (const RuntimeMethod* method) { { Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * L_0 = Thread_get_CurrentThread_mB7A83CAE2B9A74CEA053196DFD1AF1E7AB30A70E(/*hidden argument*/NULL); NullCheck(L_0); int32_t L_1 = Thread_get_ManagedThreadId_m7FA85162CB00713B94EF5708B19120F791D3AAD1(L_0, /*hidden argument*/NULL); return L_1; } } // System.Boolean System.Environment::get_HasShutdownStarted() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Environment_get_HasShutdownStarted_m722CC30F8A3C58FE3165427FF2858922C13F7A5C (const RuntimeMethod* method) { typedef bool (*Environment_get_HasShutdownStarted_m722CC30F8A3C58FE3165427FF2858922C13F7A5C_ftn) (); using namespace il2cpp::icalls; return ((Environment_get_HasShutdownStarted_m722CC30F8A3C58FE3165427FF2858922C13F7A5C_ftn)mscorlib::System::Environment::get_HasShutdownStarted) (); } // System.String System.Environment::GetNewLine() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetNewLine_m06F2388258016A6A3E6823FFC11E249F9D628254 (const RuntimeMethod* method) { typedef String_t* (*Environment_GetNewLine_m06F2388258016A6A3E6823FFC11E249F9D628254_ftn) (); using namespace il2cpp::icalls; return ((Environment_GetNewLine_m06F2388258016A6A3E6823FFC11E249F9D628254_ftn)mscorlib::System::Environment::GetNewLine) (); } // System.String System.Environment::get_NewLine() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_get_NewLine_m5D4F4667FA5D1E2DBDD4DF9696D0CE76C83EF318 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Environment_get_NewLine_m5D4F4667FA5D1E2DBDD4DF9696D0CE76C83EF318_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ((Environment_tC93BF7477A1AEA39D05EDFEBAFF62EE5353FF806_StaticFields*)il2cpp_codegen_static_fields_for(Environment_tC93BF7477A1AEA39D05EDFEBAFF62EE5353FF806_il2cpp_TypeInfo_var))->get_nl_1(); if (!L_0) { goto IL_000d; } } { String_t* L_1 = ((Environment_tC93BF7477A1AEA39D05EDFEBAFF62EE5353FF806_StaticFields*)il2cpp_codegen_static_fields_for(Environment_tC93BF7477A1AEA39D05EDFEBAFF62EE5353FF806_il2cpp_TypeInfo_var))->get_nl_1(); return L_1; } IL_000d: { String_t* L_2 = Environment_GetNewLine_m06F2388258016A6A3E6823FFC11E249F9D628254(/*hidden argument*/NULL); ((Environment_tC93BF7477A1AEA39D05EDFEBAFF62EE5353FF806_StaticFields*)il2cpp_codegen_static_fields_for(Environment_tC93BF7477A1AEA39D05EDFEBAFF62EE5353FF806_il2cpp_TypeInfo_var))->set_nl_1(L_2); String_t* L_3 = ((Environment_tC93BF7477A1AEA39D05EDFEBAFF62EE5353FF806_StaticFields*)il2cpp_codegen_static_fields_for(Environment_tC93BF7477A1AEA39D05EDFEBAFF62EE5353FF806_il2cpp_TypeInfo_var))->get_nl_1(); return L_3; } } // System.PlatformID System.Environment::get_Platform() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Environment_get_Platform_m09BB945B43442029D4EFB0835BBD23774F248B0C (const RuntimeMethod* method) { typedef int32_t (*Environment_get_Platform_m09BB945B43442029D4EFB0835BBD23774F248B0C_ftn) (); using namespace il2cpp::icalls; return ((Environment_get_Platform_m09BB945B43442029D4EFB0835BBD23774F248B0C_ftn)mscorlib::System::Environment::get_Platform) (); } // System.String System.Environment::GetOSVersionString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetOSVersionString_m8ECDAFD7F8071A970ACA14732006C7BA71E2F46C (const RuntimeMethod* method) { typedef String_t* (*Environment_GetOSVersionString_m8ECDAFD7F8071A970ACA14732006C7BA71E2F46C_ftn) (); using namespace il2cpp::icalls; return ((Environment_GetOSVersionString_m8ECDAFD7F8071A970ACA14732006C7BA71E2F46C_ftn)mscorlib::System::Environment::GetOSVersionString) (); } // System.OperatingSystem System.Environment::get_OSVersion() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR OperatingSystem_tBB05846D5AA6960FFEB42C59E5FE359255C2BE83 * Environment_get_OSVersion_mD6E99E279170E00D17F7D29F242EF65434812233 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Environment_get_OSVersion_mD6E99E279170E00D17F7D29F242EF65434812233_MetadataUsageId); s_Il2CppMethodInitialized = true; } Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * V_0 = NULL; int32_t V_1 = 0; { OperatingSystem_tBB05846D5AA6960FFEB42C59E5FE359255C2BE83 * L_0 = ((Environment_tC93BF7477A1AEA39D05EDFEBAFF62EE5353FF806_StaticFields*)il2cpp_codegen_static_fields_for(Environment_tC93BF7477A1AEA39D05EDFEBAFF62EE5353FF806_il2cpp_TypeInfo_var))->get_os_2(); if (L_0) { goto IL_002a; } } { String_t* L_1 = Environment_GetOSVersionString_m8ECDAFD7F8071A970ACA14732006C7BA71E2F46C(/*hidden argument*/NULL); Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * L_2 = Environment_CreateVersionFromString_mCDE19D44ACAB5C81224AC4F35FDA0F51140A8318(L_1, /*hidden argument*/NULL); V_0 = L_2; int32_t L_3 = Environment_get_Platform_m09BB945B43442029D4EFB0835BBD23774F248B0C(/*hidden argument*/NULL); V_1 = L_3; int32_t L_4 = V_1; if ((!(((uint32_t)L_4) == ((uint32_t)6)))) { goto IL_001e; } } { V_1 = 4; } IL_001e: { int32_t L_5 = V_1; Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * L_6 = V_0; OperatingSystem_tBB05846D5AA6960FFEB42C59E5FE359255C2BE83 * L_7 = (OperatingSystem_tBB05846D5AA6960FFEB42C59E5FE359255C2BE83 *)il2cpp_codegen_object_new(OperatingSystem_tBB05846D5AA6960FFEB42C59E5FE359255C2BE83_il2cpp_TypeInfo_var); OperatingSystem__ctor_m17CCE490F4F87F8193C6D4AE9265AE907D8634CE(L_7, L_5, L_6, /*hidden argument*/NULL); ((Environment_tC93BF7477A1AEA39D05EDFEBAFF62EE5353FF806_StaticFields*)il2cpp_codegen_static_fields_for(Environment_tC93BF7477A1AEA39D05EDFEBAFF62EE5353FF806_il2cpp_TypeInfo_var))->set_os_2(L_7); } IL_002a: { OperatingSystem_tBB05846D5AA6960FFEB42C59E5FE359255C2BE83 * L_8 = ((Environment_tC93BF7477A1AEA39D05EDFEBAFF62EE5353FF806_StaticFields*)il2cpp_codegen_static_fields_for(Environment_tC93BF7477A1AEA39D05EDFEBAFF62EE5353FF806_il2cpp_TypeInfo_var))->get_os_2(); return L_8; } } // System.Version System.Environment::CreateVersionFromString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * Environment_CreateVersionFromString_mCDE19D44ACAB5C81224AC4F35FDA0F51140A8318 (String_t* ___info0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Environment_CreateVersionFromString_mCDE19D44ACAB5C81224AC4F35FDA0F51140A8318_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; int32_t V_5 = 0; int32_t V_6 = 0; Il2CppChar V_7 = 0x0; { V_0 = 0; V_1 = 0; V_2 = 0; V_3 = 0; V_4 = 1; V_5 = (-1); String_t* L_0 = ___info0; if (L_0) { goto IL_001b; } } { Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * L_1 = (Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD *)il2cpp_codegen_object_new(Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD_il2cpp_TypeInfo_var); Version__ctor_mFA5AABF2294D59FA7B3F32BB48CB238BCACBDF80(L_1, 0, 0, 0, 0, /*hidden argument*/NULL); return L_1; } IL_001b: { V_6 = 0; goto IL_0096; } IL_0020: { String_t* L_2 = ___info0; int32_t L_3 = V_6; NullCheck(L_2); Il2CppChar L_4 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_2, L_3, /*hidden argument*/NULL); V_7 = L_4; Il2CppChar L_5 = V_7; IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); bool L_6 = Char_IsDigit_m29508E0B60DAE54350BDC3DED0D42895DBA4087E(L_5, /*hidden argument*/NULL); if (!L_6) { goto IL_0050; } } { int32_t L_7 = V_5; if ((((int32_t)L_7) >= ((int32_t)0))) { goto IL_0041; } } { Il2CppChar L_8 = V_7; V_5 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)((int32_t)48))); goto IL_008b; } IL_0041: { int32_t L_9 = V_5; Il2CppChar L_10 = V_7; V_5 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_9, (int32_t)((int32_t)10))), (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)((int32_t)48))))); goto IL_008b; } IL_0050: { int32_t L_11 = V_5; if ((((int32_t)L_11) < ((int32_t)0))) { goto IL_008b; } } { int32_t L_12 = V_4; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)1))) { case 0: { goto IL_0070; } case 1: { goto IL_0075; } case 2: { goto IL_007a; } case 3: { goto IL_007f; } } } { goto IL_0082; } IL_0070: { int32_t L_13 = V_5; V_0 = L_13; goto IL_0082; } IL_0075: { int32_t L_14 = V_5; V_1 = L_14; goto IL_0082; } IL_007a: { int32_t L_15 = V_5; V_2 = L_15; goto IL_0082; } IL_007f: { int32_t L_16 = V_5; V_3 = L_16; } IL_0082: { V_5 = (-1); int32_t L_17 = V_4; V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1)); } IL_008b: { int32_t L_18 = V_4; if ((((int32_t)L_18) == ((int32_t)5))) { goto IL_00a0; } } { int32_t L_19 = V_6; V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)1)); } IL_0096: { int32_t L_20 = V_6; String_t* L_21 = ___info0; NullCheck(L_21); int32_t L_22 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_21, /*hidden argument*/NULL); if ((((int32_t)L_20) < ((int32_t)L_22))) { goto IL_0020; } } IL_00a0: { int32_t L_23 = V_5; if ((((int32_t)L_23) < ((int32_t)0))) { goto IL_00d2; } } { int32_t L_24 = V_4; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_24, (int32_t)1))) { case 0: { goto IL_00c0; } case 1: { goto IL_00c5; } case 2: { goto IL_00ca; } case 3: { goto IL_00cf; } } } { goto IL_00d2; } IL_00c0: { int32_t L_25 = V_5; V_0 = L_25; goto IL_00d2; } IL_00c5: { int32_t L_26 = V_5; V_1 = L_26; goto IL_00d2; } IL_00ca: { int32_t L_27 = V_5; V_2 = L_27; goto IL_00d2; } IL_00cf: { int32_t L_28 = V_5; V_3 = L_28; } IL_00d2: { int32_t L_29 = V_0; int32_t L_30 = V_1; int32_t L_31 = V_2; int32_t L_32 = V_3; Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * L_33 = (Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD *)il2cpp_codegen_object_new(Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD_il2cpp_TypeInfo_var); Version__ctor_mFA5AABF2294D59FA7B3F32BB48CB238BCACBDF80(L_33, L_29, L_30, L_31, L_32, /*hidden argument*/NULL); return L_33; } } // System.String System.Environment::get_StackTrace() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_get_StackTrace_m5F9CFF0981E84FE0FE6A7D03522A0DE91376B70D (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Environment_get_StackTrace_m5F9CFF0981E84FE0FE6A7D03522A0DE91376B70D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99 * L_0 = (StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99 *)il2cpp_codegen_object_new(StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99_il2cpp_TypeInfo_var); StackTrace__ctor_mC06D6ED2D5E080D5B9D31E7B595D8A7F0675F504(L_0, 0, (bool)1, /*hidden argument*/NULL); NullCheck(L_0); String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_0); return L_1; } } // System.Int32 System.Environment::get_TickCount() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Environment_get_TickCount_m0A119BE4354EA90C82CC48E559588C987A79FE0C (const RuntimeMethod* method) { typedef int32_t (*Environment_get_TickCount_m0A119BE4354EA90C82CC48E559588C987A79FE0C_ftn) (); using namespace il2cpp::icalls; return ((Environment_get_TickCount_m0A119BE4354EA90C82CC48E559588C987A79FE0C_ftn)mscorlib::System::Environment::get_TickCount) (); } // System.Void System.Environment::Exit(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Environment_Exit_m3398C2AF5F6AE7197249ECFEDFC624582ADB86EE (int32_t ___exitCode0, const RuntimeMethod* method) { typedef void (*Environment_Exit_m3398C2AF5F6AE7197249ECFEDFC624582ADB86EE_ftn) (int32_t); using namespace il2cpp::icalls; ((Environment_Exit_m3398C2AF5F6AE7197249ECFEDFC624582ADB86EE_ftn)mscorlib::System::Environment::Exit) (___exitCode0); } // System.String System.Environment::ExpandEnvironmentVariables(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_ExpandEnvironmentVariables_m4AE2B7DE995C0708225F56B5FF9DB6F95F91D300 (String_t* ___name0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Environment_ExpandEnvironmentVariables_m4AE2B7DE995C0708225F56B5FF9DB6F95F91D300_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; StringBuilder_t * V_3 = NULL; Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * V_4 = NULL; String_t* V_5 = NULL; String_t* V_6 = NULL; int32_t V_7 = 0; int32_t V_8 = 0; int32_t V_9 = 0; int32_t G_B20_0 = 0; { String_t* L_0 = ___name0; 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, _stringLiteral6AE999552A0D2DCA14D62E2BC8B764D377B1DD6C, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Environment_ExpandEnvironmentVariables_m4AE2B7DE995C0708225F56B5FF9DB6F95F91D300_RuntimeMethod_var); } IL_000e: { String_t* L_2 = ___name0; NullCheck(L_2); int32_t L_3 = String_IndexOf_m2909B8CF585E1BD0C81E11ACA2F48012156FD5BD(L_2, ((int32_t)37), /*hidden argument*/NULL); V_0 = L_3; int32_t L_4 = V_0; if ((!(((uint32_t)L_4) == ((uint32_t)(-1))))) { goto IL_001d; } } { String_t* L_5 = ___name0; return L_5; } IL_001d: { String_t* L_6 = ___name0; NullCheck(L_6); int32_t L_7 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_6, /*hidden argument*/NULL); V_1 = L_7; V_2 = 0; int32_t L_8 = V_0; int32_t L_9 = V_1; if ((((int32_t)L_8) == ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1))))) { goto IL_003c; } } { String_t* L_10 = ___name0; int32_t L_11 = V_0; NullCheck(L_10); int32_t L_12 = String_IndexOf_m66F6178DB4B2F61F4FAFD8B75787D0AB142ADD7D(L_10, ((int32_t)37), ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)), /*hidden argument*/NULL); int32_t L_13 = L_12; V_2 = L_13; if ((!(((uint32_t)L_13) == ((uint32_t)(-1))))) { goto IL_003e; } } IL_003c: { String_t* L_14 = ___name0; return L_14; } IL_003e: { StringBuilder_t * L_15 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_15, /*hidden argument*/NULL); V_3 = L_15; StringBuilder_t * L_16 = V_3; String_t* L_17 = ___name0; int32_t L_18 = V_0; NullCheck(L_16); StringBuilder_Append_m9EB954E99DC99B8CC712ABB70EAA07616B841D46(L_16, L_17, 0, L_18, /*hidden argument*/NULL); V_4 = (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)NULL; } IL_0051: { String_t* L_19 = ___name0; int32_t L_20 = V_0; int32_t L_21 = V_2; int32_t L_22 = V_0; NullCheck(L_19); String_t* L_23 = String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB(L_19, ((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1)), ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_21, (int32_t)L_22)), (int32_t)1)), /*hidden argument*/NULL); V_5 = L_23; String_t* L_24 = V_5; String_t* L_25 = Environment_GetEnvironmentVariable_mB94020EE6B0D5BADF024E4BE6FBC54A5954D2185(L_24, /*hidden argument*/NULL); V_6 = L_25; String_t* L_26 = V_6; if (L_26) { goto IL_0090; } } { bool L_27 = Environment_get_IsRunningOnWindows_m450E4F44CC5B040187C3E0E42B129780FABE455D(/*hidden argument*/NULL); if (!L_27) { goto IL_0090; } } { Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_28 = V_4; if (L_28) { goto IL_0080; } } { Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_29 = Environment_GetEnvironmentVariablesNoCase_m96643C3EE79581997F046EE52069B19E8369D63E(/*hidden argument*/NULL); V_4 = L_29; } IL_0080: { Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_30 = V_4; String_t* L_31 = V_5; NullCheck(L_30); RuntimeObject * L_32 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(18 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_30, L_31); V_6 = ((String_t*)IsInstSealed((RuntimeObject*)L_32, String_t_il2cpp_TypeInfo_var)); } IL_0090: { int32_t L_33 = V_2; V_7 = L_33; String_t* L_34 = V_6; if (L_34) { goto IL_00af; } } { StringBuilder_t * L_35 = V_3; NullCheck(L_35); StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_35, ((int32_t)37), /*hidden argument*/NULL); StringBuilder_t * L_36 = V_3; String_t* L_37 = V_5; NullCheck(L_36); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_36, L_37, /*hidden argument*/NULL); int32_t L_38 = V_2; V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_38, (int32_t)1)); goto IL_00b8; } IL_00af: { StringBuilder_t * L_39 = V_3; String_t* L_40 = V_6; NullCheck(L_39); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_39, L_40, /*hidden argument*/NULL); } IL_00b8: { int32_t L_41 = V_2; V_8 = L_41; String_t* L_42 = ___name0; int32_t L_43 = V_2; NullCheck(L_42); int32_t L_44 = String_IndexOf_m66F6178DB4B2F61F4FAFD8B75787D0AB142ADD7D(L_42, ((int32_t)37), ((int32_t)il2cpp_codegen_add((int32_t)L_43, (int32_t)1)), /*hidden argument*/NULL); V_0 = L_44; int32_t L_45 = V_0; if ((((int32_t)L_45) == ((int32_t)(-1)))) { goto IL_00de; } } { int32_t L_46 = V_2; int32_t L_47 = V_1; if ((((int32_t)L_46) > ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_47, (int32_t)1))))) { goto IL_00de; } } { String_t* L_48 = ___name0; int32_t L_49 = V_0; NullCheck(L_48); int32_t L_50 = String_IndexOf_m66F6178DB4B2F61F4FAFD8B75787D0AB142ADD7D(L_48, ((int32_t)37), ((int32_t)il2cpp_codegen_add((int32_t)L_49, (int32_t)1)), /*hidden argument*/NULL); G_B20_0 = L_50; goto IL_00df; } IL_00de: { G_B20_0 = (-1); } IL_00df: { V_2 = G_B20_0; int32_t L_51 = V_0; if ((((int32_t)L_51) == ((int32_t)(-1)))) { goto IL_00e8; } } { int32_t L_52 = V_2; if ((!(((uint32_t)L_52) == ((uint32_t)(-1))))) { goto IL_00f2; } } IL_00e8: { int32_t L_53 = V_1; int32_t L_54 = V_8; V_9 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_53, (int32_t)L_54)), (int32_t)1)); goto IL_0106; } IL_00f2: { String_t* L_55 = V_6; if (!L_55) { goto IL_0100; } } { int32_t L_56 = V_0; int32_t L_57 = V_8; V_9 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_56, (int32_t)L_57)), (int32_t)1)); goto IL_0106; } IL_0100: { int32_t L_58 = V_0; int32_t L_59 = V_7; V_9 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_58, (int32_t)L_59)); } IL_0106: { int32_t L_60 = V_0; int32_t L_61 = V_8; if ((((int32_t)L_60) >= ((int32_t)L_61))) { goto IL_010f; } } { int32_t L_62 = V_0; if ((!(((uint32_t)L_62) == ((uint32_t)(-1))))) { goto IL_011d; } } IL_010f: { StringBuilder_t * L_63 = V_3; String_t* L_64 = ___name0; int32_t L_65 = V_8; int32_t L_66 = V_9; NullCheck(L_63); StringBuilder_Append_m9EB954E99DC99B8CC712ABB70EAA07616B841D46(L_63, L_64, ((int32_t)il2cpp_codegen_add((int32_t)L_65, (int32_t)1)), L_66, /*hidden argument*/NULL); } IL_011d: { int32_t L_67 = V_2; if ((((int32_t)L_67) <= ((int32_t)(-1)))) { goto IL_0128; } } { int32_t L_68 = V_2; int32_t L_69 = V_1; if ((((int32_t)L_68) < ((int32_t)L_69))) { goto IL_0051; } } IL_0128: { StringBuilder_t * L_70 = V_3; NullCheck(L_70); String_t* L_71 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_70); return L_71; } } // System.String System.Environment::internalGetEnvironmentVariable_native(System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_internalGetEnvironmentVariable_native_m7B353C5EFFF5E3740E0D343A0435E503BB694E74 (intptr_t ___variable0, const RuntimeMethod* method) { typedef String_t* (*Environment_internalGetEnvironmentVariable_native_m7B353C5EFFF5E3740E0D343A0435E503BB694E74_ftn) (intptr_t); using namespace il2cpp::icalls; return ((Environment_internalGetEnvironmentVariable_native_m7B353C5EFFF5E3740E0D343A0435E503BB694E74_ftn)mscorlib::System::Environment::internalGetEnvironmentVariable_native) (___variable0); } // System.String System.Environment::internalGetEnvironmentVariable(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_internalGetEnvironmentVariable_m49ACD082ABE4C40D49DC9CEE88AB3DCC402D6972 (String_t* ___variable0, const RuntimeMethod* method) { SafeStringMarshal_tD41B530333F2C9F500BD6FEC91735D16F06C9A6F V_0; memset((&V_0), 0, sizeof(V_0)); String_t* V_1 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { String_t* L_0 = ___variable0; if (L_0) { goto IL_0005; } } { return (String_t*)NULL; } IL_0005: { String_t* L_1 = ___variable0; SafeStringMarshal_tD41B530333F2C9F500BD6FEC91735D16F06C9A6F L_2 = RuntimeMarshal_MarshalString_m8A782D398D13D0865FFE9B3396966ED903180A1F(L_1, /*hidden argument*/NULL); V_0 = L_2; } IL_000c: try { // begin try (depth: 1) intptr_t L_3 = SafeStringMarshal_get_Value_m70D3D1F546F1D924BDAA1A1322FE2EB7FE18F1D5((SafeStringMarshal_tD41B530333F2C9F500BD6FEC91735D16F06C9A6F *)(&V_0), /*hidden argument*/NULL); String_t* L_4 = Environment_internalGetEnvironmentVariable_native_m7B353C5EFFF5E3740E0D343A0435E503BB694E74((intptr_t)L_3, /*hidden argument*/NULL); V_1 = L_4; IL2CPP_LEAVE(0x29, FINALLY_001b); } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_001b; } FINALLY_001b: { // begin finally (depth: 1) SafeStringMarshal_Dispose_m031213ECC460DFEA083ECAF0AE51AA70FF548898((SafeStringMarshal_tD41B530333F2C9F500BD6FEC91735D16F06C9A6F *)(&V_0), /*hidden argument*/NULL); IL2CPP_END_FINALLY(27) } // end finally (depth: 1) IL2CPP_CLEANUP(27) { IL2CPP_JUMP_TBL(0x29, IL_0029) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0029: { String_t* L_5 = V_1; return L_5; } } // System.String System.Environment::GetEnvironmentVariable(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetEnvironmentVariable_mB94020EE6B0D5BADF024E4BE6FBC54A5954D2185 (String_t* ___variable0, const RuntimeMethod* method) { { String_t* L_0 = ___variable0; String_t* L_1 = Environment_internalGetEnvironmentVariable_m49ACD082ABE4C40D49DC9CEE88AB3DCC402D6972(L_0, /*hidden argument*/NULL); return L_1; } } // System.Collections.Hashtable System.Environment::GetEnvironmentVariablesNoCase() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * Environment_GetEnvironmentVariablesNoCase_m96643C3EE79581997F046EE52069B19E8369D63E (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Environment_GetEnvironmentVariablesNoCase_m96643C3EE79581997F046EE52069B19E8369D63E_MetadataUsageId); s_Il2CppMethodInitialized = true; } Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * V_0 = NULL; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* V_1 = NULL; int32_t V_2 = 0; String_t* V_3 = NULL; { CaseInsensitiveHashCodeProvider_tC6D5564219051252BBC7B49F78CC8173105F0C34 * L_0 = CaseInsensitiveHashCodeProvider_get_Default_mEB75D6529BEF600AEC8A3F848B9CAB5650C588B8(/*hidden argument*/NULL); CaseInsensitiveComparer_tF9935EB25E69CEF5A3B17CE8D22E2797F23B17BE * L_1 = CaseInsensitiveComparer_get_Default_m1E0D7C553D3E1A4E201C807116BDD551279306E9(/*hidden argument*/NULL); Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_2 = (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)il2cpp_codegen_object_new(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var); Hashtable__ctor_mFC259F7B115F0D1AEDE934D8CF7F1288A10A1DFB(L_2, L_0, L_1, /*hidden argument*/NULL); V_0 = L_2; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_3 = Environment_GetEnvironmentVariableNames_mFDDA0116D39EBFC7C6985C7E09535E1B61F534FB(/*hidden argument*/NULL); V_1 = L_3; V_2 = 0; goto IL_002f; } IL_001a: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_4 = V_1; int32_t L_5 = V_2; NullCheck(L_4); int32_t L_6 = L_5; String_t* L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6)); V_3 = L_7; Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_8 = V_0; String_t* L_9 = V_3; String_t* L_10 = V_3; String_t* L_11 = Environment_internalGetEnvironmentVariable_m49ACD082ABE4C40D49DC9CEE88AB3DCC402D6972(L_10, /*hidden argument*/NULL); NullCheck(L_8); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(19 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_8, L_9, L_11); int32_t L_12 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_002f: { int32_t L_13 = V_2; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_14 = V_1; NullCheck(L_14); if ((((int32_t)L_13) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_14)->max_length))))))) { goto IL_001a; } } { Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_15 = V_0; return L_15; } } // System.String System.Environment::GetFolderPath(System.Environment_SpecialFolder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetFolderPath_m536A7D7C29197A7B66B60EA9A78B63C7B0BE9C17 (int32_t ___folder0, const RuntimeMethod* method) { { int32_t L_0 = ___folder0; String_t* L_1 = Environment_GetFolderPath_m6E9EC33C813EC32EF22350270BCC8D8F59D972C5(L_0, 0, /*hidden argument*/NULL); return L_1; } } // System.String System.Environment::GetWindowsFolderPath(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetWindowsFolderPath_m1A2A85D251544A4A200BE075F72D45B1E2160726 (int32_t ___folder0, const RuntimeMethod* method) { typedef String_t* (*Environment_GetWindowsFolderPath_m1A2A85D251544A4A200BE075F72D45B1E2160726_ftn) (int32_t); using namespace il2cpp::icalls; return ((Environment_GetWindowsFolderPath_m1A2A85D251544A4A200BE075F72D45B1E2160726_ftn)mscorlib::System::Environment::GetWindowsFolderPath) (___folder0); } // System.String System.Environment::GetFolderPath(System.Environment_SpecialFolder,System.Environment_SpecialFolderOption) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetFolderPath_m6E9EC33C813EC32EF22350270BCC8D8F59D972C5 (int32_t ___folder0, int32_t ___option1, const RuntimeMethod* method) { String_t* V_0 = NULL; { SecurityManager_EnsureElevatedPermissions_m4169B183D4094E3E840DC0942FBCBDB3E0F127A6(/*hidden argument*/NULL); V_0 = (String_t*)NULL; bool L_0 = Environment_get_IsRunningOnWindows_m450E4F44CC5B040187C3E0E42B129780FABE455D(/*hidden argument*/NULL); if (!L_0) { goto IL_0017; } } { int32_t L_1 = ___folder0; String_t* L_2 = Environment_GetWindowsFolderPath_m1A2A85D251544A4A200BE075F72D45B1E2160726(L_1, /*hidden argument*/NULL); V_0 = L_2; goto IL_001f; } IL_0017: { int32_t L_3 = ___folder0; int32_t L_4 = ___option1; String_t* L_5 = Environment_UnixGetFolderPath_mD4042C67476F52494B34BEAC11D4F381DABAB59B(L_3, L_4, /*hidden argument*/NULL); V_0 = L_5; } IL_001f: { String_t* L_6 = V_0; return L_6; } } // System.String System.Environment::ReadXdgUserDir(System.String,System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_ReadXdgUserDir_m2BBB7A3FB0BE8C2016FBB553C812913D15D34613 (String_t* ___config_dir0, String_t* ___home_dir1, String_t* ___key2, String_t* ___fallback3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Environment_ReadXdgUserDir_m2BBB7A3FB0BE8C2016FBB553C812913D15D34613_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; String_t* V_1 = NULL; StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * V_2 = NULL; String_t* V_3 = NULL; int32_t V_4 = 0; String_t* V_5 = NULL; bool V_6 = false; String_t* V_7 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 4); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); String_t* G_B17_0 = NULL; { String_t* L_0 = ___key2; String_t* L_1 = Environment_internalGetEnvironmentVariable_m49ACD082ABE4C40D49DC9CEE88AB3DCC402D6972(L_0, /*hidden argument*/NULL); V_0 = L_1; String_t* L_2 = V_0; if (!L_2) { goto IL_0019; } } { String_t* L_3 = V_0; String_t* L_4 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); bool L_5 = String_op_Inequality_m0BD184A74F453A72376E81CC6CAEE2556B80493E(L_3, L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_0019; } } { String_t* L_6 = V_0; return L_6; } IL_0019: { String_t* L_7 = ___config_dir0; IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var); String_t* L_8 = Path_Combine_mA495A18104786EB450EC0E44EE0FB7F9040C4311(L_7, _stringLiteral9ECB2E572CFDA900F36B37BE28189AFF0757C5D3, /*hidden argument*/NULL); V_1 = L_8; String_t* L_9 = V_1; bool L_10 = File_Exists_m6B9BDD8EEB33D744EB0590DD27BC0152FAFBD1FB(L_9, /*hidden argument*/NULL); if (L_10) { goto IL_0035; } } { String_t* L_11 = ___home_dir1; String_t* L_12 = ___fallback3; IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var); String_t* L_13 = Path_Combine_mA495A18104786EB450EC0E44EE0FB7F9040C4311(L_11, L_12, /*hidden argument*/NULL); return L_13; } IL_0035: { } IL_0036: try { // begin try (depth: 1) { String_t* L_14 = V_1; StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * L_15 = (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E *)il2cpp_codegen_object_new(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E_il2cpp_TypeInfo_var); StreamReader__ctor_mE646A80660B17E91CEA1048DB5B6F0616C77EECD(L_15, L_14, /*hidden argument*/NULL); V_2 = L_15; } IL_003d: try { // begin try (depth: 2) { goto IL_00ca; } IL_0042: { String_t* L_16 = V_3; NullCheck(L_16); String_t* L_17 = String_Trim_mB52EB7876C7132358B76B7DC95DEACA20722EF4D(L_16, /*hidden argument*/NULL); V_3 = L_17; String_t* L_18 = V_3; NullCheck(L_18); int32_t L_19 = String_IndexOf_m2909B8CF585E1BD0C81E11ACA2F48012156FD5BD(L_18, ((int32_t)61), /*hidden argument*/NULL); V_4 = L_19; int32_t L_20 = V_4; if ((((int32_t)L_20) <= ((int32_t)8))) { goto IL_00ca; } } IL_0058: { String_t* L_21 = V_3; int32_t L_22 = V_4; NullCheck(L_21); String_t* L_23 = String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB(L_21, 0, L_22, /*hidden argument*/NULL); String_t* L_24 = ___key2; bool L_25 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_23, L_24, /*hidden argument*/NULL); if (!L_25) { goto IL_00ca; } } IL_0069: { String_t* L_26 = V_3; int32_t L_27 = V_4; NullCheck(L_26); String_t* L_28 = String_Substring_m2C4AFF5E79DD8BADFD2DFBCF156BF728FBB8E1AE(L_26, ((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1)), /*hidden argument*/NULL); CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_29 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)1); CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_30 = L_29; NullCheck(L_30); (L_30)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppChar)((int32_t)34)); NullCheck(L_28); String_t* L_31 = String_Trim_m788DE5AEFDAC40E778745C4DF4AFD45A4BC1007E(L_28, L_30, /*hidden argument*/NULL); V_5 = L_31; V_6 = (bool)0; String_t* L_32 = V_5; NullCheck(L_32); bool L_33 = String_StartsWithOrdinalUnchecked_mC028BA12B4C1D3EA141134DD13C9DB2F1350CC4B(L_32, _stringLiteral3D87DCCAF91986FA4C389725BCAF948EFFA3E43D, /*hidden argument*/NULL); if (!L_33) { goto IL_00a5; } } IL_0096: { V_6 = (bool)1; String_t* L_34 = V_5; NullCheck(L_34); String_t* L_35 = String_Substring_m2C4AFF5E79DD8BADFD2DFBCF156BF728FBB8E1AE(L_34, 6, /*hidden argument*/NULL); V_5 = L_35; goto IL_00b6; } IL_00a5: { String_t* L_36 = V_5; NullCheck(L_36); bool L_37 = String_StartsWithOrdinalUnchecked_mC028BA12B4C1D3EA141134DD13C9DB2F1350CC4B(L_36, _stringLiteral42099B4AF021E53FD8FD4E056C2568D7C2E3FFA8, /*hidden argument*/NULL); if (L_37) { goto IL_00b6; } } IL_00b3: { V_6 = (bool)1; } IL_00b6: { bool L_38 = V_6; if (L_38) { goto IL_00be; } } IL_00ba: { String_t* L_39 = V_5; G_B17_0 = L_39; goto IL_00c6; } IL_00be: { String_t* L_40 = ___home_dir1; String_t* L_41 = V_5; IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var); String_t* L_42 = Path_Combine_mA495A18104786EB450EC0E44EE0FB7F9040C4311(L_40, L_41, /*hidden argument*/NULL); G_B17_0 = L_42; } IL_00c6: { V_7 = G_B17_0; IL2CPP_LEAVE(0xF0, FINALLY_00d9); } IL_00ca: { StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * L_43 = V_2; NullCheck(L_43); String_t* L_44 = VirtFuncInvoker0< String_t* >::Invoke(12 /* System.String System.IO.TextReader::ReadLine() */, L_43); String_t* L_45 = L_44; V_3 = L_45; if (L_45) { goto IL_0042; } } IL_00d7: { IL2CPP_LEAVE(0xE3, FINALLY_00d9); } } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00d9; } FINALLY_00d9: { // begin finally (depth: 2) { StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * L_46 = V_2; if (!L_46) { goto IL_00e2; } } IL_00dc: { StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * L_47 = V_2; NullCheck(L_47); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_47); } IL_00e2: { IL2CPP_END_FINALLY(217) } } // end finally (depth: 2) IL2CPP_CLEANUP(217) { IL2CPP_JUMP_TBL(0xF0, IL_00f0) IL2CPP_JUMP_TBL(0xE3, IL_00e3) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_00e3: { goto IL_00e8; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (FileNotFoundException_t0B3F0AE5C94A781A7E2ABBD786F91C229B703431_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_00e5; throw e; } CATCH_00e5: { // begin catch(System.IO.FileNotFoundException) goto IL_00e8; } // end catch (depth: 1) IL_00e8: { String_t* L_48 = ___home_dir1; String_t* L_49 = ___fallback3; IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var); String_t* L_50 = Path_Combine_mA495A18104786EB450EC0E44EE0FB7F9040C4311(L_48, L_49, /*hidden argument*/NULL); return L_50; } IL_00f0: { String_t* L_51 = V_7; return L_51; } } // System.String System.Environment::UnixGetFolderPath(System.Environment_SpecialFolder,System.Environment_SpecialFolderOption) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_UnixGetFolderPath_mD4042C67476F52494B34BEAC11D4F381DABAB59B (int32_t ___folder0, int32_t ___option1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Environment_UnixGetFolderPath_mD4042C67476F52494B34BEAC11D4F381DABAB59B_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; String_t* V_1 = NULL; String_t* V_2 = NULL; { String_t* L_0 = Environment_internalGetHome_m4B03F6F0B0C466284C7F02AE967B1DE8AF811E8E(/*hidden argument*/NULL); V_0 = L_0; String_t* L_1 = Environment_internalGetEnvironmentVariable_m49ACD082ABE4C40D49DC9CEE88AB3DCC402D6972(_stringLiteral6D57B527E7613982252D681B40F03DFBEC803607, /*hidden argument*/NULL); V_1 = L_1; String_t* L_2 = V_1; if (!L_2) { goto IL_0021; } } { String_t* L_3 = V_1; String_t* L_4 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); bool L_5 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_3, L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_0039; } } IL_0021: { String_t* L_6 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var); String_t* L_7 = Path_Combine_mA495A18104786EB450EC0E44EE0FB7F9040C4311(L_6, _stringLiteralD9BBFE341E231DD531A559F974E1015BCC9E6DC1, /*hidden argument*/NULL); V_1 = L_7; String_t* L_8 = V_1; String_t* L_9 = Path_Combine_mA495A18104786EB450EC0E44EE0FB7F9040C4311(L_8, _stringLiteralAAB90DFE8C6F152A4FB071F5F4F9DF804626E6AB, /*hidden argument*/NULL); V_1 = L_9; } IL_0039: { String_t* L_10 = Environment_internalGetEnvironmentVariable_m49ACD082ABE4C40D49DC9CEE88AB3DCC402D6972(_stringLiteral6D2279C3ECA84EC66A200D8092FAC2AE76692E6F, /*hidden argument*/NULL); V_2 = L_10; String_t* L_11 = V_2; if (!L_11) { goto IL_0054; } } { String_t* L_12 = V_2; String_t* L_13 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); bool L_14 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_12, L_13, /*hidden argument*/NULL); if (!L_14) { goto IL_0060; } } IL_0054: { String_t* L_15 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var); String_t* L_16 = Path_Combine_mA495A18104786EB450EC0E44EE0FB7F9040C4311(L_15, _stringLiteral3E63A20FD24D82D9E81A5F39CCDC550B85A2182A, /*hidden argument*/NULL); V_2 = L_16; } IL_0060: { int32_t L_17 = ___folder0; switch (L_17) { case 0: { goto IL_0167; } case 1: { goto IL_0274; } case 2: { goto IL_0268; } case 3: { goto IL_0274; } case 4: { goto IL_0274; } case 5: { goto IL_0161; } case 6: { goto IL_0214; } case 7: { goto IL_0268; } case 8: { goto IL_0268; } case 9: { goto IL_0268; } case 10: { goto IL_0274; } case 11: { goto IL_0268; } case 12: { goto IL_0274; } case 13: { goto IL_0179; } case 14: { goto IL_01d7; } case 15: { goto IL_0274; } case 16: { goto IL_0167; } case 17: { goto IL_015b; } case 18: { goto IL_0274; } case 19: { goto IL_0268; } case 20: { goto IL_01ef; } case 21: { goto IL_01c5; } case 22: { goto IL_0268; } case 23: { goto IL_0268; } case 24: { goto IL_0268; } case 25: { goto IL_0268; } case 26: { goto IL_0163; } case 27: { goto IL_0268; } case 28: { goto IL_0165; } case 29: { goto IL_0274; } case 30: { goto IL_0274; } case 31: { goto IL_0274; } case 32: { goto IL_0247; } case 33: { goto IL_0268; } case 34: { goto IL_0268; } case 35: { goto IL_026e; } case 36: { goto IL_0268; } case 37: { goto IL_0268; } case 38: { goto IL_0233; } case 39: { goto IL_019f; } case 40: { goto IL_0266; } case 41: { goto IL_0268; } case 42: { goto IL_0268; } case 43: { goto IL_0268; } case 44: { goto IL_0268; } case 45: { goto IL_01e9; } case 46: { goto IL_0268; } case 47: { goto IL_0268; } case 48: { goto IL_0268; } case 49: { goto IL_0274; } case 50: { goto IL_0274; } case 51: { goto IL_0274; } case 52: { goto IL_0274; } case 53: { goto IL_0268; } case 54: { goto IL_0268; } case 55: { goto IL_0268; } case 56: { goto IL_0268; } case 57: { goto IL_0268; } case 58: { goto IL_0268; } case 59: { goto IL_0268; } } } { goto IL_0274; } IL_015b: { String_t* L_18 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return L_18; } IL_0161: { String_t* L_19 = V_0; return L_19; } IL_0163: { String_t* L_20 = V_2; return L_20; } IL_0165: { String_t* L_21 = V_1; return L_21; } IL_0167: { String_t* L_22 = V_2; String_t* L_23 = V_0; String_t* L_24 = Environment_ReadXdgUserDir_m2BBB7A3FB0BE8C2016FBB553C812913D15D34613(L_22, L_23, _stringLiteral758F870D25D935A22E7B6F601A5D67252C7D24A1, _stringLiteral532C67FE1B5AFAE15D2D08FBA7A78DE0F63CC4B5, /*hidden argument*/NULL); return L_24; } IL_0179: { int32_t L_25 = Environment_get_Platform_m09BB945B43442029D4EFB0835BBD23774F248B0C(/*hidden argument*/NULL); if ((!(((uint32_t)L_25) == ((uint32_t)6)))) { goto IL_018d; } } { String_t* L_26 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var); String_t* L_27 = Path_Combine_mA495A18104786EB450EC0E44EE0FB7F9040C4311(L_26, _stringLiteral131260CBFBB0C821F8EAE5E7C3C296C7AA4D50B9, /*hidden argument*/NULL); return L_27; } IL_018d: { String_t* L_28 = V_2; String_t* L_29 = V_0; String_t* L_30 = Environment_ReadXdgUserDir_m2BBB7A3FB0BE8C2016FBB553C812913D15D34613(L_28, L_29, _stringLiteral764C1CDCDDB924E02A85EDBA8640D467D06A6FA4, _stringLiteral131260CBFBB0C821F8EAE5E7C3C296C7AA4D50B9, /*hidden argument*/NULL); return L_30; } IL_019f: { int32_t L_31 = Environment_get_Platform_m09BB945B43442029D4EFB0835BBD23774F248B0C(/*hidden argument*/NULL); if ((!(((uint32_t)L_31) == ((uint32_t)6)))) { goto IL_01b3; } } { String_t* L_32 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var); String_t* L_33 = Path_Combine_mA495A18104786EB450EC0E44EE0FB7F9040C4311(L_32, _stringLiteral935EDBE91F7D3337C2FE13E3AD2373C9A8EC468C, /*hidden argument*/NULL); return L_33; } IL_01b3: { String_t* L_34 = V_2; String_t* L_35 = V_0; String_t* L_36 = Environment_ReadXdgUserDir_m2BBB7A3FB0BE8C2016FBB553C812913D15D34613(L_34, L_35, _stringLiteral9300964C68712BA23F34ACEF429540225754B632, _stringLiteral935EDBE91F7D3337C2FE13E3AD2373C9A8EC468C, /*hidden argument*/NULL); return L_36; } IL_01c5: { String_t* L_37 = V_2; String_t* L_38 = V_0; String_t* L_39 = Environment_ReadXdgUserDir_m2BBB7A3FB0BE8C2016FBB553C812913D15D34613(L_37, L_38, _stringLiteral33EA80F35FE737B35E1D085138643A2660006847, _stringLiteralF25B700ED9F092123A43ACB205A6869342CF9DD6, /*hidden argument*/NULL); return L_39; } IL_01d7: { String_t* L_40 = V_2; String_t* L_41 = V_0; String_t* L_42 = Environment_ReadXdgUserDir_m2BBB7A3FB0BE8C2016FBB553C812913D15D34613(L_40, L_41, _stringLiteralD6D9970C3066A54835E00256D44ECD8153325A03, _stringLiteral56B71E89FB1079CAAADEFD0889E9A22E8B0560E3, /*hidden argument*/NULL); return L_42; } IL_01e9: { return _stringLiteral99D088ED5F1BAC91ECED72079B3134C8258E1646; } IL_01ef: { int32_t L_43 = Environment_get_Platform_m09BB945B43442029D4EFB0835BBD23774F248B0C(/*hidden argument*/NULL); if ((!(((uint32_t)L_43) == ((uint32_t)6)))) { goto IL_0208; } } { String_t* L_44 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var); String_t* L_45 = Path_Combine_mAB92AD33FF91D3550E1683D5E732895A08B758DA(L_44, _stringLiteralB8100F5BA8BD048A7CF11D116FBBD73130C3C6F5, _stringLiteralFFE688A5014306635CD935F7169187B7DB387CD5, /*hidden argument*/NULL); return L_45; } IL_0208: { String_t* L_46 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var); String_t* L_47 = Path_Combine_mA495A18104786EB450EC0E44EE0FB7F9040C4311(L_46, _stringLiteral8705DFCA077C41F08BF9E2BF4473510D785B14E3, /*hidden argument*/NULL); return L_47; } IL_0214: { int32_t L_48 = Environment_get_Platform_m09BB945B43442029D4EFB0835BBD23774F248B0C(/*hidden argument*/NULL); if ((!(((uint32_t)L_48) == ((uint32_t)6)))) { goto IL_022d; } } { String_t* L_49 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var); String_t* L_50 = Path_Combine_mAB92AD33FF91D3550E1683D5E732895A08B758DA(L_49, _stringLiteralB8100F5BA8BD048A7CF11D116FBBD73130C3C6F5, _stringLiteral07B3E447DB02B7CC20A78A57C316FEBAE22ED72B, /*hidden argument*/NULL); return L_50; } IL_022d: { String_t* L_51 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return L_51; } IL_0233: { int32_t L_52 = Environment_get_Platform_m09BB945B43442029D4EFB0835BBD23774F248B0C(/*hidden argument*/NULL); if ((!(((uint32_t)L_52) == ((uint32_t)6)))) { goto IL_0241; } } { return _stringLiteral4EE7F9F6F091866B32663BB85C3E9589E6A0D50E; } IL_0241: { String_t* L_53 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return L_53; } IL_0247: { int32_t L_54 = Environment_get_Platform_m09BB945B43442029D4EFB0835BBD23774F248B0C(/*hidden argument*/NULL); if ((!(((uint32_t)L_54) == ((uint32_t)6)))) { goto IL_0260; } } { String_t* L_55 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var); String_t* L_56 = Path_Combine_mAB92AD33FF91D3550E1683D5E732895A08B758DA(L_55, _stringLiteralB8100F5BA8BD048A7CF11D116FBBD73130C3C6F5, _stringLiteral26D1D6E68E2EFB43040F5747213A436E201DDBD2, /*hidden argument*/NULL); return L_56; } IL_0260: { String_t* L_57 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return L_57; } IL_0266: { String_t* L_58 = V_0; return L_58; } IL_0268: { String_t* L_59 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return L_59; } IL_026e: { return _stringLiteral88CCFACD3FCBE4CCCD76B3480CC051D875ED4591; } IL_0274: { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_60 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_60, _stringLiteralF38EA64458B7FBE78C409B9159F322E075AF0B50, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_60, NULL, Environment_UnixGetFolderPath_mD4042C67476F52494B34BEAC11D4F381DABAB59B_RuntimeMethod_var); } } // System.Void System.Environment::FailFast(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Environment_FailFast_mAAC3E58BB4725CF25EFB13BE6AFB4418AC32C176 (String_t* ___message0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Environment_FailFast_mAAC3E58BB4725CF25EFB13BE6AFB4418AC32C176_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4 * L_0 = (NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4 *)il2cpp_codegen_object_new(NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4_il2cpp_TypeInfo_var); NotImplementedException__ctor_m8BEA657E260FC05F0C6D2C43A6E9BC08040F59C4(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Environment_FailFast_mAAC3E58BB4725CF25EFB13BE6AFB4418AC32C176_RuntimeMethod_var); } } // System.Void System.Environment::FailFast(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Environment_FailFast_mAEC5FD40A83110B9B342497AE1683229CA4F1607 (String_t* ___message0, Exception_t * ___exception1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Environment_FailFast_mAEC5FD40A83110B9B342497AE1683229CA4F1607_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___message0; Exception_t * L_1 = ___exception1; ExecutionEngineException_t9D6DDEC5449D08251371AB57FE61558C2A2B1F21 * L_2 = (ExecutionEngineException_t9D6DDEC5449D08251371AB57FE61558C2A2B1F21 *)il2cpp_codegen_object_new(ExecutionEngineException_t9D6DDEC5449D08251371AB57FE61558C2A2B1F21_il2cpp_TypeInfo_var); ExecutionEngineException__ctor_m920A0F10B7F5A314C49A9036028509ACB57C4F6D(L_2, L_0, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Environment_FailFast_mAEC5FD40A83110B9B342497AE1683229CA4F1607_RuntimeMethod_var); } } // System.Boolean System.Environment::get_Is64BitProcess() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Environment_get_Is64BitProcess_mEEAFF56728363604DEE63AFBDFE97E54A251AEB1 (const RuntimeMethod* method) { { int32_t L_0 = IntPtr_get_Size_m1342A61F11766A494F2F90D9B68CADAD62261929(/*hidden argument*/NULL); return (bool)((((int32_t)L_0) == ((int32_t)8))? 1 : 0); } } // System.Int32 System.Environment::get_ProcessorCount() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Environment_get_ProcessorCount_m086119F1D40B7319BFC37F4501C6A73517E9B8CD (const RuntimeMethod* method) { typedef int32_t (*Environment_get_ProcessorCount_m086119F1D40B7319BFC37F4501C6A73517E9B8CD_ftn) (); using namespace il2cpp::icalls; return ((Environment_get_ProcessorCount_m086119F1D40B7319BFC37F4501C6A73517E9B8CD_ftn)mscorlib::System::Environment::get_ProcessorCount) (); } // System.Boolean System.Environment::get_IsRunningOnWindows() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Environment_get_IsRunningOnWindows_m450E4F44CC5B040187C3E0E42B129780FABE455D (const RuntimeMethod* method) { { int32_t L_0 = Environment_get_Platform_m09BB945B43442029D4EFB0835BBD23774F248B0C(/*hidden argument*/NULL); return (bool)((((int32_t)L_0) < ((int32_t)4))? 1 : 0); } } // System.String[] System.Environment::GetEnvironmentVariableNames() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* Environment_GetEnvironmentVariableNames_mFDDA0116D39EBFC7C6985C7E09535E1B61F534FB (const RuntimeMethod* method) { typedef StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* (*Environment_GetEnvironmentVariableNames_mFDDA0116D39EBFC7C6985C7E09535E1B61F534FB_ftn) (); using namespace il2cpp::icalls; return ((Environment_GetEnvironmentVariableNames_mFDDA0116D39EBFC7C6985C7E09535E1B61F534FB_ftn)mscorlib::System::Environment::GetEnvironmentVariableNames) (); } // System.String System.Environment::GetMachineConfigPath() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetMachineConfigPath_m7EFF6DDC6233A66D43753D264714227F550A6C9C (const RuntimeMethod* method) { typedef String_t* (*Environment_GetMachineConfigPath_m7EFF6DDC6233A66D43753D264714227F550A6C9C_ftn) (); using namespace il2cpp::icalls; return ((Environment_GetMachineConfigPath_m7EFF6DDC6233A66D43753D264714227F550A6C9C_ftn)mscorlib::System::Environment::GetMachineConfigPath) (); } // System.String System.Environment::internalGetHome() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_internalGetHome_m4B03F6F0B0C466284C7F02AE967B1DE8AF811E8E (const RuntimeMethod* method) { typedef String_t* (*Environment_internalGetHome_m4B03F6F0B0C466284C7F02AE967B1DE8AF811E8E_ftn) (); using namespace il2cpp::icalls; return ((Environment_internalGetHome_m4B03F6F0B0C466284C7F02AE967B1DE8AF811E8E_ftn)mscorlib::System::Environment::internalGetHome) (); } // System.Int32 System.Environment::GetPageSize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Environment_GetPageSize_m9DDEBE89C1AD0F93124F0DC120F4495B5A72515E (const RuntimeMethod* method) { typedef int32_t (*Environment_GetPageSize_m9DDEBE89C1AD0F93124F0DC120F4495B5A72515E_ftn) (); using namespace il2cpp::icalls; return ((Environment_GetPageSize_m9DDEBE89C1AD0F93124F0DC120F4495B5A72515E_ftn)mscorlib::System::Environment::GetPageSize) (); } // System.String System.Environment::GetStackTrace(System.Exception,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetStackTrace_m12FAD59C12D3ED43C780A01CF9A91072EA1E2D6B (Exception_t * ___e0, bool ___needFileInfo1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Environment_GetStackTrace_m12FAD59C12D3ED43C780A01CF9A91072EA1E2D6B_MetadataUsageId); s_Il2CppMethodInitialized = true; } StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99 * V_0 = NULL; { Exception_t * L_0 = ___e0; if (L_0) { goto IL_000c; } } { bool L_1 = ___needFileInfo1; StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99 * L_2 = (StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99 *)il2cpp_codegen_object_new(StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99_il2cpp_TypeInfo_var); StackTrace__ctor_mCF16893B6C5EEC13841370A064CFF74E9F54E997(L_2, L_1, /*hidden argument*/NULL); V_0 = L_2; goto IL_0014; } IL_000c: { Exception_t * L_3 = ___e0; bool L_4 = ___needFileInfo1; StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99 * L_5 = (StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99 *)il2cpp_codegen_object_new(StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99_il2cpp_TypeInfo_var); StackTrace__ctor_m3D57C02A24F1CCFD03425E2C4697A6347EB90408(L_5, L_3, L_4, /*hidden argument*/NULL); V_0 = L_5; } IL_0014: { StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99 * L_6 = V_0; NullCheck(L_6); String_t* L_7 = StackTrace_ToString_m1C8457C5B1405CB08B90BEC24F67D636EF5026A5(L_6, 0, /*hidden argument*/NULL); return L_7; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.EventArgs::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventArgs__ctor_m3551293259861C5A78CD47689D559F828ED29DF7 (EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * __this, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); return; } } // System.Void System.EventArgs::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventArgs__cctor_mBF27EE7D8B306AD18122FA05169D94D932D60A0A (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (EventArgs__cctor_mBF27EE7D8B306AD18122FA05169D94D932D60A0A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * L_0 = (EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E *)il2cpp_codegen_object_new(EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_il2cpp_TypeInfo_var); EventArgs__ctor_m3551293259861C5A78CD47689D559F828ED29DF7(L_0, /*hidden argument*/NULL); ((EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_StaticFields*)il2cpp_codegen_static_fields_for(EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_il2cpp_TypeInfo_var))->set_Empty_0(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.EventHandler::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventHandler__ctor_m497A2BCD46DB769EAFFDE919303FCAE226906B6F (EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Void System.EventHandler::Invoke(System.Object,System.EventArgs) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventHandler_Invoke_mD23D5EFEA562A05C5EACDD3E91EEDD2BF6C22800 (EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * __this, RuntimeObject * ___sender0, EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * ___e1, const RuntimeMethod* method) { DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 2) { // open typedef void (*FunctionPointerType) (RuntimeObject *, EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___sender0, ___e1, targetMethod); } else { // closed typedef void (*FunctionPointerType) (void*, RuntimeObject *, EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___sender0, ___e1, targetMethod); } } else if (___parameterCount != 2) { // open if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) GenericInterfaceActionInvoker1< EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * >::Invoke(targetMethod, ___sender0, ___e1); else GenericVirtActionInvoker1< EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * >::Invoke(targetMethod, ___sender0, ___e1); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker1< EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___sender0, ___e1); else VirtActionInvoker1< EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___sender0, ___e1); } } else { typedef void (*FunctionPointerType) (RuntimeObject *, EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___sender0, ___e1, targetMethod); } } else { // closed if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (targetThis == NULL) { typedef void (*FunctionPointerType) (RuntimeObject *, EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___sender0, ___e1, targetMethod); } else if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) GenericInterfaceActionInvoker2< RuntimeObject *, EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * >::Invoke(targetMethod, targetThis, ___sender0, ___e1); else GenericVirtActionInvoker2< RuntimeObject *, EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * >::Invoke(targetMethod, targetThis, ___sender0, ___e1); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker2< RuntimeObject *, EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___sender0, ___e1); else VirtActionInvoker2< RuntimeObject *, EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___sender0, ___e1); } } else { typedef void (*FunctionPointerType) (void*, RuntimeObject *, EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___sender0, ___e1, targetMethod); } } } } // System.IAsyncResult System.EventHandler::BeginInvoke(System.Object,System.EventArgs,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* EventHandler_BeginInvoke_m60A0326EC6963814F98B6D62CA083FACACE82FA9 (EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * __this, RuntimeObject * ___sender0, EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * ___e1, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method) { void *__d_args[3] = {0}; __d_args[0] = ___sender0; __d_args[1] = ___e1; return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3); } // System.Void System.EventHandler::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventHandler_EndInvoke_mDC1492EADF97D0B486622531F5AD06AA15849A24 (EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Conversion methods for marshalling of: System.Exception IL2CPP_EXTERN_C void Exception_t_marshal_pinvoke(const Exception_t& unmarshaled, Exception_t_marshaled_pinvoke& marshaled) { Exception_t* ____data_3Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '_data' of type 'Exception': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(____data_3Exception, NULL, NULL); } IL2CPP_EXTERN_C void Exception_t_marshal_pinvoke_back(const Exception_t_marshaled_pinvoke& marshaled, Exception_t& unmarshaled) { Exception_t* ____data_3Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '_data' of type 'Exception': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(____data_3Exception, NULL, NULL); } // Conversion method for clean up from marshalling of: System.Exception IL2CPP_EXTERN_C void Exception_t_marshal_pinvoke_cleanup(Exception_t_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: System.Exception IL2CPP_EXTERN_C void Exception_t_marshal_com(const Exception_t& unmarshaled, Exception_t_marshaled_com& marshaled) { Exception_t* ____data_3Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '_data' of type 'Exception': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(____data_3Exception, NULL, NULL); } IL2CPP_EXTERN_C void Exception_t_marshal_com_back(const Exception_t_marshaled_com& marshaled, Exception_t& unmarshaled) { Exception_t* ____data_3Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '_data' of type 'Exception': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(____data_3Exception, NULL, NULL); } // Conversion method for clean up from marshalling of: System.Exception IL2CPP_EXTERN_C void Exception_t_marshal_com_cleanup(Exception_t_marshaled_com& marshaled) { } // System.Void System.Exception::Init() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception_Init_mB543C81C2EEC2B99274329ACD365429C3AB65B81 (Exception_t * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Exception_Init_mB543C81C2EEC2B99274329ACD365429C3AB65B81_MetadataUsageId); s_Il2CppMethodInitialized = true; } { __this->set__message_2((String_t*)NULL); __this->set__stackTrace_6(NULL); __this->set__dynamicMethods_10(NULL); Exception_set_HResult_m920DF8C728D8A0EC0759685FED890C775FA08B99_inline(__this, ((int32_t)-2146233088), /*hidden argument*/NULL); SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * L_0 = (SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 *)il2cpp_codegen_object_new(SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770_il2cpp_TypeInfo_var); SafeSerializationManager__ctor_mB5F471396A3FDEB14E216389830B1589AFC4857A(L_0, /*hidden argument*/NULL); __this->set__safeSerializationManager_13(L_0); return; } } // System.Void System.Exception::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_m5FEC89FBFACEEDCEE29CCFD44A85D72FC28EB0D1 (Exception_t * __this, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); Exception_Init_mB543C81C2EEC2B99274329ACD365429C3AB65B81(__this, /*hidden argument*/NULL); return; } } // System.Void System.Exception::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_m89BADFF36C3B170013878726E07729D51AA9FBE0 (Exception_t * __this, String_t* ___message0, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); Exception_Init_mB543C81C2EEC2B99274329ACD365429C3AB65B81(__this, /*hidden argument*/NULL); String_t* L_0 = ___message0; __this->set__message_2(L_0); return; } } // System.Void System.Exception::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_m62590BC1925B7B354EBFD852E162CD170FEB861D (Exception_t * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); Exception_Init_mB543C81C2EEC2B99274329ACD365429C3AB65B81(__this, /*hidden argument*/NULL); String_t* L_0 = ___message0; __this->set__message_2(L_0); Exception_t * L_1 = ___innerException1; __this->set__innerException_4(L_1); return; } } // System.Void System.Exception::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_mBFF5996A1B65FCEEE0054A95A652BA3DD6366618 (Exception_t * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Exception__ctor_mBFF5996A1B65FCEEE0054A95A652BA3DD6366618_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; if (L_0) { goto IL_0014; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Exception__ctor_mBFF5996A1B65FCEEE0054A95A652BA3DD6366618_RuntimeMethod_var); } IL_0014: { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0; NullCheck(L_2); String_t* L_3 = SerializationInfo_GetString_m06805A4E368E0B98D5FA70A9333B277CBDD84CF4(L_2, _stringLiteralEEEC90853FC9B89566DD858A99CEE46219C6FB39, /*hidden argument*/NULL); __this->set__className_1(L_3); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_4 = ___info0; NullCheck(L_4); String_t* L_5 = SerializationInfo_GetString_m06805A4E368E0B98D5FA70A9333B277CBDD84CF4(L_4, _stringLiteral68F4145FEE7DDE76AFCEB910165924AD14CF0D00, /*hidden argument*/NULL); __this->set__message_2(L_5); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_6 = ___info0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_7 = { reinterpret_cast<intptr_t> (IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_8 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_7, /*hidden argument*/NULL); NullCheck(L_6); RuntimeObject * L_9 = SerializationInfo_GetValueNoThrow_m096541B70283B3F278C63DF8D6D1BE8C51C2C7DF(L_6, _stringLiteralE5E429BCC9C2E4A41A3C7A4D96203BE6CB273B11, L_8, /*hidden argument*/NULL); __this->set__data_3(((RuntimeObject*)Castclass((RuntimeObject*)L_9, IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_il2cpp_TypeInfo_var))); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_10 = ___info0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_11 = { reinterpret_cast<intptr_t> (Exception_t_0_0_0_var) }; Type_t * L_12 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_11, /*hidden argument*/NULL); NullCheck(L_10); RuntimeObject * L_13 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF(L_10, _stringLiteral28332BF3F5ECB907F6B48B01FA850D52EDABD9F6, L_12, /*hidden argument*/NULL); __this->set__innerException_4(((Exception_t *)CastclassClass((RuntimeObject*)L_13, Exception_t_il2cpp_TypeInfo_var))); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_14 = ___info0; NullCheck(L_14); String_t* L_15 = SerializationInfo_GetString_m06805A4E368E0B98D5FA70A9333B277CBDD84CF4(L_14, _stringLiteral49A9D09283F8FB50FA0AFE850910B0835161D9EA, /*hidden argument*/NULL); __this->set__helpURL_5(L_15); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_16 = ___info0; NullCheck(L_16); String_t* L_17 = SerializationInfo_GetString_m06805A4E368E0B98D5FA70A9333B277CBDD84CF4(L_16, _stringLiteralBA68CC085BCDB2ACC7A9EAC506B72375599B4895, /*hidden argument*/NULL); __this->set__stackTraceString_7(L_17); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_18 = ___info0; NullCheck(L_18); String_t* L_19 = SerializationInfo_GetString_m06805A4E368E0B98D5FA70A9333B277CBDD84CF4(L_18, _stringLiteralF5A19884ABD0F810E9BC20D747EBAE160D517170, /*hidden argument*/NULL); __this->set__remoteStackTraceString_8(L_19); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_20 = ___info0; NullCheck(L_20); int32_t L_21 = SerializationInfo_GetInt32_mB47BD46A0BDBBAF5B47BB62E6EFF8E092E3F3656(L_20, _stringLiteral9809EEBD54AE05C9E348295B938477E70D63935C, /*hidden argument*/NULL); __this->set__remoteStackIndex_9(L_21); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_22 = ___info0; NullCheck(L_22); int32_t L_23 = SerializationInfo_GetInt32_mB47BD46A0BDBBAF5B47BB62E6EFF8E092E3F3656(L_22, _stringLiteralA55F1512DA06994D35F587926787BC86E1C37545, /*hidden argument*/NULL); Exception_set_HResult_m920DF8C728D8A0EC0759685FED890C775FA08B99_inline(__this, L_23, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_24 = ___info0; NullCheck(L_24); String_t* L_25 = SerializationInfo_GetString_m06805A4E368E0B98D5FA70A9333B277CBDD84CF4(L_24, _stringLiteral6DA13ADDB000B67D42A6D66391713819E634149F, /*hidden argument*/NULL); __this->set__source_12(L_25); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_26 = ___info0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_27 = { reinterpret_cast<intptr_t> (SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770_0_0_0_var) }; Type_t * L_28 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_27, /*hidden argument*/NULL); NullCheck(L_26); RuntimeObject * L_29 = SerializationInfo_GetValueNoThrow_m096541B70283B3F278C63DF8D6D1BE8C51C2C7DF(L_26, _stringLiteralADD9B279679F9595A61957DB72E98E204DF6E3F2, L_28, /*hidden argument*/NULL); __this->set__safeSerializationManager_13(((SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 *)IsInstSealed((RuntimeObject*)L_29, SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770_il2cpp_TypeInfo_var))); String_t* L_30 = __this->get__className_1(); if (!L_30) { goto IL_010c; } } { int32_t L_31 = Exception_get_HResult_m1F2775B234F243AD3D8AAE63B1BB5130ADD29502_inline(__this, /*hidden argument*/NULL); if (L_31) { goto IL_011c; } } IL_010c: { String_t* L_32 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral8944FFAD1E8C07AABD7BA714D715171EAAD5687C, /*hidden argument*/NULL); SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 * L_33 = (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 *)il2cpp_codegen_object_new(SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var); SerializationException__ctor_m88AAD9671030A8A96AA87CB95701938FBD8F16E1(L_33, L_32, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_33, NULL, Exception__ctor_mBFF5996A1B65FCEEE0054A95A652BA3DD6366618_RuntimeMethod_var); } IL_011c: { int32_t L_34 = StreamingContext_get_State_mC28CB681EC71C3E6B08B277F3BD0F041FC5D1F62_inline((StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 *)(&___context1), /*hidden argument*/NULL); if ((!(((uint32_t)L_34) == ((uint32_t)((int32_t)128))))) { goto IL_0148; } } { String_t* L_35 = __this->get__remoteStackTraceString_8(); String_t* L_36 = __this->get__stackTraceString_7(); String_t* L_37 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_35, L_36, /*hidden argument*/NULL); __this->set__remoteStackTraceString_8(L_37); __this->set__stackTraceString_7((String_t*)NULL); } IL_0148: { return; } } // System.String System.Exception::get_Message() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Exception_get_Message_m4315B19A04019652708F20C1B855805157F23CFD (Exception_t * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Exception_get_Message_m4315B19A04019652708F20C1B855805157F23CFD_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = __this->get__message_2(); if (L_0) { goto IL_0036; } } { String_t* L_1 = __this->get__className_1(); if (L_1) { goto IL_001c; } } { String_t* L_2 = Exception_GetClassName_mA1AF30AF222EA80BED79AC7E1FF5CB7A44E59389(__this, /*hidden argument*/NULL); __this->set__className_1(L_2); } IL_001c: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = L_3; String_t* L_5 = __this->get__className_1(); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_5); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_5); String_t* L_6 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteral587CAF0E2EADCED18EC63C9F5DCB6EB925840F59, L_4, /*hidden argument*/NULL); return L_6; } IL_0036: { String_t* L_7 = __this->get__message_2(); return L_7; } } // System.String System.Exception::GetClassName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Exception_GetClassName_mA1AF30AF222EA80BED79AC7E1FF5CB7A44E59389 (Exception_t * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get__className_1(); if (L_0) { goto IL_0019; } } { Type_t * L_1 = Exception_GetType_mA3390B9D538D5FAC3802D9D8A2FCAC31465130F3(__this, /*hidden argument*/NULL); NullCheck(L_1); String_t* L_2 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_1); __this->set__className_1(L_2); } IL_0019: { String_t* L_3 = __this->get__className_1(); return L_3; } } // System.Exception System.Exception::get_InnerException() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * Exception_get_InnerException_mCB68CC8CBF2540EF381CB17A4E4E3F6D0E33453F (Exception_t * __this, const RuntimeMethod* method) { { Exception_t * L_0 = __this->get__innerException_4(); return L_0; } } // System.String System.Exception::get_StackTrace() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Exception_get_StackTrace_mF54AABBF2569597935F88AAF7BCD29C6639F8306 (Exception_t * __this, const RuntimeMethod* method) { { String_t* L_0 = Exception_GetStackTrace_m8FE5D5A0DDDC59C343C9A353824C54DFB6A182A0(__this, (bool)1, /*hidden argument*/NULL); return L_0; } } // System.String System.Exception::GetStackTrace(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Exception_GetStackTrace_m8FE5D5A0DDDC59C343C9A353824C54DFB6A182A0 (Exception_t * __this, bool ___needFileInfo0, const RuntimeMethod* method) { String_t* V_0 = NULL; String_t* V_1 = NULL; String_t* V_2 = NULL; { String_t* L_0 = __this->get__stackTraceString_7(); V_0 = L_0; String_t* L_1 = __this->get__remoteStackTraceString_8(); V_1 = L_1; bool L_2 = ___needFileInfo0; if (L_2) { goto IL_0023; } } { String_t* L_3 = V_0; String_t* L_4 = Exception_StripFileInfo_m39B49712FFB0D5BC37BFC2F3D076CA1585E760D1(__this, L_3, (bool)0, /*hidden argument*/NULL); V_0 = L_4; String_t* L_5 = V_1; String_t* L_6 = Exception_StripFileInfo_m39B49712FFB0D5BC37BFC2F3D076CA1585E760D1(__this, L_5, (bool)1, /*hidden argument*/NULL); V_1 = L_6; } IL_0023: { String_t* L_7 = V_0; if (!L_7) { goto IL_002e; } } { String_t* L_8 = V_1; String_t* L_9 = V_0; String_t* L_10 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_8, L_9, /*hidden argument*/NULL); return L_10; } IL_002e: { RuntimeObject * L_11 = __this->get__stackTrace_6(); if (L_11) { goto IL_0038; } } { String_t* L_12 = V_1; return L_12; } IL_0038: { bool L_13 = ___needFileInfo0; String_t* L_14 = Environment_GetStackTrace_m12FAD59C12D3ED43C780A01CF9A91072EA1E2D6B(__this, L_13, /*hidden argument*/NULL); V_2 = L_14; String_t* L_15 = V_1; String_t* L_16 = V_2; String_t* L_17 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_15, L_16, /*hidden argument*/NULL); return L_17; } } // System.Void System.Exception::SetErrorCode(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7 (Exception_t * __this, int32_t ___hr0, const RuntimeMethod* method) { { int32_t L_0 = ___hr0; Exception_set_HResult_m920DF8C728D8A0EC0759685FED890C775FA08B99_inline(__this, L_0, /*hidden argument*/NULL); return; } } // System.String System.Exception::get_Source() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Exception_get_Source_mF1C5DE7EDD1567C4ACE302CFD82AC336504070BB (Exception_t * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Exception_get_Source_mF1C5DE7EDD1567C4ACE302CFD82AC336504070BB_MetadataUsageId); s_Il2CppMethodInitialized = true; } StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99 * V_0 = NULL; MethodBase_t * V_1 = NULL; { String_t* L_0 = __this->get__source_12(); if (L_0) { goto IL_004a; } } { StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99 * L_1 = (StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99 *)il2cpp_codegen_object_new(StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99_il2cpp_TypeInfo_var); StackTrace__ctor_m3D57C02A24F1CCFD03425E2C4697A6347EB90408(L_1, __this, (bool)1, /*hidden argument*/NULL); V_0 = L_1; StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = VirtFuncInvoker0< int32_t >::Invoke(4 /* System.Int32 System.Diagnostics.StackTrace::get_FrameCount() */, L_2); if ((((int32_t)L_3) <= ((int32_t)0))) { goto IL_004a; } } { StackTrace_tD5D45826A379D8DF0CFB2CA206D992EE718C7E99 * L_4 = V_0; NullCheck(L_4); StackFrame_tD06959DD2B585E9BEB73C60AB5C110DE69F23A00 * L_5 = VirtFuncInvoker1< StackFrame_tD06959DD2B585E9BEB73C60AB5C110DE69F23A00 *, int32_t >::Invoke(5 /* System.Diagnostics.StackFrame System.Diagnostics.StackTrace::GetFrame(System.Int32) */, L_4, 0); NullCheck(L_5); MethodBase_t * L_6 = VirtFuncInvoker0< MethodBase_t * >::Invoke(7 /* System.Reflection.MethodBase System.Diagnostics.StackFrame::GetMethod() */, L_5); V_1 = L_6; MethodBase_t * L_7 = V_1; bool L_8 = MethodBase_op_Inequality_mA03AE708DD0D76404AED7C36A75741E2A6BC6BF7(L_7, (MethodBase_t *)NULL, /*hidden argument*/NULL); if (!L_8) { goto IL_004a; } } { MethodBase_t * L_9 = V_1; NullCheck(L_9); Type_t * L_10 = VirtFuncInvoker0< Type_t * >::Invoke(8 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_9); NullCheck(L_10); Assembly_t * L_11 = VirtFuncInvoker0< Assembly_t * >::Invoke(23 /* System.Reflection.Assembly System.Type::get_Assembly() */, L_10); NullCheck(L_11); AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * L_12 = VirtFuncInvoker0< AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * >::Invoke(18 /* System.Reflection.AssemblyName System.Reflection.Assembly::GetName() */, L_11); NullCheck(L_12); String_t* L_13 = AssemblyName_get_Name_m6EA5C18D2FF050D3AF58D4A21ED39D161DFF218B_inline(L_12, /*hidden argument*/NULL); __this->set__source_12(L_13); } IL_004a: { String_t* L_14 = __this->get__source_12(); return L_14; } } // System.String System.Exception::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Exception_ToString_m403BC2DBD48C830789D6270B4E917AB2D5E88183 (Exception_t * __this, const RuntimeMethod* method) { { String_t* L_0 = Exception_ToString_m297BCBDFD8F98A7BD69F689436100573B2F71D72(__this, (bool)1, (bool)1, /*hidden argument*/NULL); return L_0; } } // System.String System.Exception::ToString(System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Exception_ToString_m297BCBDFD8F98A7BD69F689436100573B2F71D72 (Exception_t * __this, bool ___needFileLineInfo0, bool ___needMessage1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Exception_ToString_m297BCBDFD8F98A7BD69F689436100573B2F71D72_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; String_t* V_1 = NULL; String_t* V_2 = NULL; String_t* G_B3_0 = NULL; { bool L_0 = ___needMessage1; if (L_0) { goto IL_0006; } } { G_B3_0 = ((String_t*)(NULL)); goto IL_000c; } IL_0006: { String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Exception::get_Message() */, __this); G_B3_0 = L_1; } IL_000c: { V_0 = G_B3_0; String_t* L_2 = V_0; if (!L_2) { goto IL_0019; } } { String_t* L_3 = V_0; NullCheck(L_3); int32_t L_4 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_3, /*hidden argument*/NULL); if ((((int32_t)L_4) > ((int32_t)0))) { goto IL_0022; } } IL_0019: { String_t* L_5 = Exception_GetClassName_mA1AF30AF222EA80BED79AC7E1FF5CB7A44E59389(__this, /*hidden argument*/NULL); V_1 = L_5; goto IL_0034; } IL_0022: { String_t* L_6 = Exception_GetClassName_mA1AF30AF222EA80BED79AC7E1FF5CB7A44E59389(__this, /*hidden argument*/NULL); String_t* L_7 = V_0; String_t* L_8 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(L_6, _stringLiteralCECA32E904728D1645727CB2B9CDEAA153807D77, L_7, /*hidden argument*/NULL); V_1 = L_8; } IL_0034: { Exception_t * L_9 = __this->get__innerException_4(); if (!L_9) { goto IL_0081; } } { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_10 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)6); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_11 = L_10; String_t* L_12 = V_1; NullCheck(L_11); ArrayElementTypeCheck (L_11, L_12); (L_11)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_12); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_13 = L_11; NullCheck(L_13); ArrayElementTypeCheck (L_13, _stringLiteral0EF8991E15895E04C4E0B24686E452411F00B53D); (L_13)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral0EF8991E15895E04C4E0B24686E452411F00B53D); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_14 = L_13; Exception_t * L_15 = __this->get__innerException_4(); bool L_16 = ___needFileLineInfo0; bool L_17 = ___needMessage1; NullCheck(L_15); String_t* L_18 = Exception_ToString_m297BCBDFD8F98A7BD69F689436100573B2F71D72(L_15, L_16, L_17, /*hidden argument*/NULL); NullCheck(L_14); ArrayElementTypeCheck (L_14, L_18); (L_14)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)L_18); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_19 = L_14; String_t* L_20 = Environment_get_NewLine_m5D4F4667FA5D1E2DBDD4DF9696D0CE76C83EF318(/*hidden argument*/NULL); NullCheck(L_19); ArrayElementTypeCheck (L_19, L_20); (L_19)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)L_20); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_21 = L_19; NullCheck(L_21); ArrayElementTypeCheck (L_21, _stringLiteral088FB1A4AB057F4FCF7D487006499060C7FE5773); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral088FB1A4AB057F4FCF7D487006499060C7FE5773); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_22 = L_21; String_t* L_23 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral408F64453B908F42FD60655B6602FE9C593982CA, /*hidden argument*/NULL); NullCheck(L_22); ArrayElementTypeCheck (L_22, L_23); (L_22)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)L_23); String_t* L_24 = String_Concat_m232E857CA5107EA6AC52E7DD7018716C021F237B(L_22, /*hidden argument*/NULL); V_1 = L_24; } IL_0081: { bool L_25 = ___needFileLineInfo0; String_t* L_26 = Exception_GetStackTrace_m8FE5D5A0DDDC59C343C9A353824C54DFB6A182A0(__this, L_25, /*hidden argument*/NULL); V_2 = L_26; String_t* L_27 = V_2; if (!L_27) { goto IL_0099; } } { String_t* L_28 = V_1; String_t* L_29 = Environment_get_NewLine_m5D4F4667FA5D1E2DBDD4DF9696D0CE76C83EF318(/*hidden argument*/NULL); String_t* L_30 = V_2; String_t* L_31 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(L_28, L_29, L_30, /*hidden argument*/NULL); V_1 = L_31; } IL_0099: { String_t* L_32 = V_1; return L_32; } } // System.Void System.Exception::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception_GetObjectData_m76F759ED00FA218FFC522C32626B851FDE849AD6 (Exception_t * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Exception_GetObjectData_m76F759ED00FA218FFC522C32626B851FDE849AD6_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = 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, _stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Exception_GetObjectData_m76F759ED00FA218FFC522C32626B851FDE849AD6_RuntimeMethod_var); } IL_000e: { String_t* L_2 = __this->get__stackTraceString_7(); V_0 = L_2; RuntimeObject * L_3 = __this->get__stackTrace_6(); if (!L_3) { goto IL_0028; } } { String_t* L_4 = V_0; if (L_4) { goto IL_0028; } } { String_t* L_5 = Environment_GetStackTrace_m12FAD59C12D3ED43C780A01CF9A91072EA1E2D6B(__this, (bool)1, /*hidden argument*/NULL); V_0 = L_5; } IL_0028: { String_t* L_6 = __this->get__source_12(); if (L_6) { goto IL_003c; } } { String_t* L_7 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Exception::get_Source() */, __this); __this->set__source_12(L_7); } IL_003c: { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_8 = ___info0; String_t* L_9 = Exception_GetClassName_mA1AF30AF222EA80BED79AC7E1FF5CB7A44E59389(__this, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_10 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_11 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_10, /*hidden argument*/NULL); NullCheck(L_8); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC(L_8, _stringLiteralEEEC90853FC9B89566DD858A99CEE46219C6FB39, L_9, L_11, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_12 = ___info0; String_t* L_13 = __this->get__message_2(); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_14, /*hidden argument*/NULL); NullCheck(L_12); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC(L_12, _stringLiteral68F4145FEE7DDE76AFCEB910165924AD14CF0D00, L_13, L_15, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_16 = ___info0; RuntimeObject* L_17 = __this->get__data_3(); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_18 = { reinterpret_cast<intptr_t> (IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_0_0_0_var) }; Type_t * L_19 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_18, /*hidden argument*/NULL); NullCheck(L_16); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC(L_16, _stringLiteralE5E429BCC9C2E4A41A3C7A4D96203BE6CB273B11, L_17, L_19, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_20 = ___info0; Exception_t * L_21 = __this->get__innerException_4(); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_22 = { reinterpret_cast<intptr_t> (Exception_t_0_0_0_var) }; Type_t * L_23 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_22, /*hidden argument*/NULL); NullCheck(L_20); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC(L_20, _stringLiteral28332BF3F5ECB907F6B48B01FA850D52EDABD9F6, L_21, L_23, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_24 = ___info0; String_t* L_25 = __this->get__helpURL_5(); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_26 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; Type_t * L_27 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_26, /*hidden argument*/NULL); NullCheck(L_24); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC(L_24, _stringLiteral49A9D09283F8FB50FA0AFE850910B0835161D9EA, L_25, L_27, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_28 = ___info0; String_t* L_29 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_30 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; Type_t * L_31 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_30, /*hidden argument*/NULL); NullCheck(L_28); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC(L_28, _stringLiteralBA68CC085BCDB2ACC7A9EAC506B72375599B4895, L_29, L_31, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_32 = ___info0; String_t* L_33 = __this->get__remoteStackTraceString_8(); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_34 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; Type_t * L_35 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_34, /*hidden argument*/NULL); NullCheck(L_32); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC(L_32, _stringLiteralF5A19884ABD0F810E9BC20D747EBAE160D517170, L_33, L_35, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_36 = ___info0; int32_t L_37 = __this->get__remoteStackIndex_9(); int32_t L_38 = L_37; RuntimeObject * L_39 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_38); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_40 = { reinterpret_cast<intptr_t> (Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var) }; Type_t * L_41 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_40, /*hidden argument*/NULL); NullCheck(L_36); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC(L_36, _stringLiteral9809EEBD54AE05C9E348295B938477E70D63935C, L_39, L_41, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_42 = ___info0; NullCheck(L_42); SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_42, _stringLiteralDFE109EFC8BE01B7D637E36D004DD36AD98A1201, NULL, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_43 = ___info0; int32_t L_44 = Exception_get_HResult_m1F2775B234F243AD3D8AAE63B1BB5130ADD29502_inline(__this, /*hidden argument*/NULL); NullCheck(L_43); SerializationInfo_AddValue_m7C73917D9DC4B8FE4AFEF4BA8EBEDAB046A8D0BD(L_43, _stringLiteralA55F1512DA06994D35F587926787BC86E1C37545, L_44, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_45 = ___info0; String_t* L_46 = __this->get__source_12(); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_47 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; Type_t * L_48 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_47, /*hidden argument*/NULL); NullCheck(L_45); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC(L_45, _stringLiteral6DA13ADDB000B67D42A6D66391713819E634149F, L_46, L_48, /*hidden argument*/NULL); SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * L_49 = __this->get__safeSerializationManager_13(); if (!L_49) { goto IL_018a; } } { SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * L_50 = __this->get__safeSerializationManager_13(); NullCheck(L_50); bool L_51 = SafeSerializationManager_get_IsActive_m66AE1987E10E73E7CB019E3CE14D7FFD7856AD4B(L_50, /*hidden argument*/NULL); if (!L_51) { goto IL_018a; } } { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_52 = ___info0; SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * L_53 = __this->get__safeSerializationManager_13(); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_54 = { reinterpret_cast<intptr_t> (SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_55 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_54, /*hidden argument*/NULL); NullCheck(L_52); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC(L_52, _stringLiteralADD9B279679F9595A61957DB72E98E204DF6E3F2, L_53, L_55, /*hidden argument*/NULL); SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * L_56 = __this->get__safeSerializationManager_13(); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_57 = ___info0; StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_58 = ___context1; NullCheck(L_56); SafeSerializationManager_CompleteSerialization_mC577DAFEBD7AA3E14807DCA75864D835475231CB(L_56, __this, L_57, L_58, /*hidden argument*/NULL); } IL_018a: { return; } } // System.Void System.Exception::OnDeserialized(System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception_OnDeserialized_m1A821B40091BF093EA8ECA629CAA0B61C129712E (Exception_t * __this, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Exception_OnDeserialized_m1A821B40091BF093EA8ECA629CAA0B61C129712E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { __this->set__stackTrace_6(NULL); SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * L_0 = __this->get__safeSerializationManager_13(); if (L_0) { goto IL_001b; } } { SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * L_1 = (SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 *)il2cpp_codegen_object_new(SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770_il2cpp_TypeInfo_var); SafeSerializationManager__ctor_mB5F471396A3FDEB14E216389830B1589AFC4857A(L_1, /*hidden argument*/NULL); __this->set__safeSerializationManager_13(L_1); return; } IL_001b: { SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * L_2 = __this->get__safeSerializationManager_13(); NullCheck(L_2); SafeSerializationManager_CompleteDeserialization_mC041209DDA3C3D765E7045DCA34682108858E3B1(L_2, __this, /*hidden argument*/NULL); return; } } // System.String System.Exception::StripFileInfo(System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Exception_StripFileInfo_m39B49712FFB0D5BC37BFC2F3D076CA1585E760D1 (Exception_t * __this, String_t* ___stackTrace0, bool ___isRemoteStackTrace1, const RuntimeMethod* method) { { String_t* L_0 = ___stackTrace0; return L_0; } } // System.Void System.Exception::RestoreExceptionDispatchInfo(System.Runtime.ExceptionServices.ExceptionDispatchInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception_RestoreExceptionDispatchInfo_mEECA9E9E3CED8FD5E3C001EA0AEB1C6D50F49C9F (Exception_t * __this, ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * ___exceptionDispatchInfo0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Exception_RestoreExceptionDispatchInfo_mEECA9E9E3CED8FD5E3C001EA0AEB1C6D50F49C9F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * L_0 = ___exceptionDispatchInfo0; NullCheck(L_0); RuntimeObject * L_1 = ExceptionDispatchInfo_get_BinaryStackTraceArray_mB03FCEE86CCD7523AF2856B74B8FD66936491701_inline(L_0, /*hidden argument*/NULL); __this->set_captured_traces_14(((StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196*)Castclass((RuntimeObject*)L_1, StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196_il2cpp_TypeInfo_var))); __this->set__stackTrace_6(NULL); __this->set__stackTraceString_7((String_t*)NULL); return; } } // System.Int32 System.Exception::get_HResult() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Exception_get_HResult_m1F2775B234F243AD3D8AAE63B1BB5130ADD29502 (Exception_t * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get__HResult_11(); return L_0; } } // System.Void System.Exception::set_HResult(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception_set_HResult_m920DF8C728D8A0EC0759685FED890C775FA08B99 (Exception_t * __this, int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; __this->set__HResult_11(L_0); return; } } // System.Type System.Exception::GetType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Exception_GetType_mA3390B9D538D5FAC3802D9D8A2FCAC31465130F3 (Exception_t * __this, const RuntimeMethod* method) { { Type_t * L_0 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(__this, /*hidden argument*/NULL); return L_0; } } // System.String System.Exception::GetMessageFromNativeResources(System.Exception_ExceptionMessageKind) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Exception_GetMessageFromNativeResources_m0C3FB5994F1AC0C76785E05972E3E405E8A0F087 (int32_t ___kind0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Exception_GetMessageFromNativeResources_m0C3FB5994F1AC0C76785E05972E3E405E8A0F087_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___kind0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)1))) { case 0: { goto IL_0016; } case 1: { goto IL_001c; } case 2: { goto IL_0022; } } } { goto IL_0028; } IL_0016: { return _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709; } IL_001c: { return _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709; } IL_0022: { return _stringLiteral0BE297B561141A6A2D82A7108DDDC36E1CC22DBA; } IL_0028: { return _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709; } } // System.Exception System.Exception::FixRemotingException() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * Exception_FixRemotingException_m83F1D2256E715EF3075877ECA7B3E4AC44B23BD2 (Exception_t * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Exception_FixRemotingException_m83F1D2256E715EF3075877ECA7B3E4AC44B23BD2_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; String_t* G_B3_0 = NULL; { int32_t L_0 = __this->get__remoteStackIndex_9(); if (!L_0) { goto IL_0014; } } { String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324(_stringLiteralB01F1CC7133E621E07A9C1B376C56F8218636E39, /*hidden argument*/NULL); G_B3_0 = L_1; goto IL_001e; } IL_0014: { String_t* L_2 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324(_stringLiteral00C5B9DB11398305E81DD934CC30030C1A628291, /*hidden argument*/NULL); G_B3_0 = L_2; } IL_001e: { String_t* L_3 = Environment_get_NewLine_m5D4F4667FA5D1E2DBDD4DF9696D0CE76C83EF318(/*hidden argument*/NULL); String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Exception::get_StackTrace() */, __this); int32_t L_5 = __this->get__remoteStackIndex_9(); int32_t L_6 = L_5; RuntimeObject * L_7 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_6); String_t* L_8 = String_Format_m26BBF75F9609FAD0B39C2242FEBAAD7D68F14D99(G_B3_0, L_3, L_4, L_7, /*hidden argument*/NULL); V_0 = L_8; String_t* L_9 = V_0; __this->set__remoteStackTraceString_8(L_9); int32_t L_10 = __this->get__remoteStackIndex_9(); __this->set__remoteStackIndex_9(((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1))); __this->set__stackTraceString_7((String_t*)NULL); return __this; } } // System.Void System.Exception::ReportUnhandledException(System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception_ReportUnhandledException_mBE1B363F3A7EAD66C4B4C481D46200292CFA0086 (Exception_t * ___exception0, const RuntimeMethod* method) { typedef void (*Exception_ReportUnhandledException_mBE1B363F3A7EAD66C4B4C481D46200292CFA0086_ftn) (Exception_t *); using namespace il2cpp::icalls; ((Exception_ReportUnhandledException_mBE1B363F3A7EAD66C4B4C481D46200292CFA0086_ftn)mscorlib::System::Exception::ReportUnhandledException) (___exception0); } // System.Void System.Exception::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__cctor_mC462C3B3312D5483281E9BDCFCCAAF79CA944F97 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Exception__cctor_mC462C3B3312D5483281E9BDCFCCAAF79CA944F97_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_0, /*hidden argument*/NULL); ((Exception_t_StaticFields*)il2cpp_codegen_static_fields_for(Exception_t_il2cpp_TypeInfo_var))->set_s_EDILock_0(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.ExecutionEngineException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecutionEngineException__ctor_m0F3956D4F5C1C6B86BF8553E5A2609C277A704BF (ExecutionEngineException_t9D6DDEC5449D08251371AB57FE61558C2A2B1F21 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ExecutionEngineException__ctor_m0F3956D4F5C1C6B86BF8553E5A2609C277A704BF_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralDEAE2CA6EAEA43A091674E31DD8E8D250C14C844, /*hidden argument*/NULL); SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL); Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233082), /*hidden argument*/NULL); return; } } // System.Void System.ExecutionEngineException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecutionEngineException__ctor_m600655C7E3D06ADB9A435EFAE483BBC05A8C11AC (ExecutionEngineException_t9D6DDEC5449D08251371AB57FE61558C2A2B1F21 * __this, String_t* ___message0, const RuntimeMethod* method) { { String_t* L_0 = ___message0; SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL); Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233082), /*hidden argument*/NULL); return; } } // System.Void System.ExecutionEngineException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecutionEngineException__ctor_m920A0F10B7F5A314C49A9036028509ACB57C4F6D (ExecutionEngineException_t9D6DDEC5449D08251371AB57FE61558C2A2B1F21 * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method) { { String_t* L_0 = ___message0; Exception_t * L_1 = ___innerException1; SystemException__ctor_mA18D2EA5642C066F35CB8C965398F9A542C33B0A(__this, L_0, L_1, /*hidden argument*/NULL); Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233082), /*hidden argument*/NULL); return; } } // System.Void System.ExecutionEngineException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecutionEngineException__ctor_mDB8489BBBC644EB14FDFEA89468A3FC654A299AF (ExecutionEngineException_t9D6DDEC5449D08251371AB57FE61558C2A2B1F21 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1; SystemException__ctor_mB0550111A1A8D18B697B618F811A5B20C160D949(__this, L_0, L_1, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.FieldAccessException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FieldAccessException__ctor_mD94509B3F2F26A43BF0A6FB70F729FEEFBFE767D (FieldAccessException_tBFF096C9CF3CA2BF95A3D596D7E50EF32B178BDF * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (FieldAccessException__ctor_mD94509B3F2F26A43BF0A6FB70F729FEEFBFE767D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralBB1EEAB40131BAA9BA8E8A7AE56779A8FA7C7A5A, /*hidden argument*/NULL); MemberAccessException__ctor_m9190C2717422BB9A0C877B8C1493A75521AB8101(__this, L_0, /*hidden argument*/NULL); Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233081), /*hidden argument*/NULL); return; } } // System.Void System.FieldAccessException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FieldAccessException__ctor_mDBE9806F085E392F4198EE67F7326F5E5E951453 (FieldAccessException_tBFF096C9CF3CA2BF95A3D596D7E50EF32B178BDF * __this, String_t* ___message0, const RuntimeMethod* method) { { String_t* L_0 = ___message0; MemberAccessException__ctor_m9190C2717422BB9A0C877B8C1493A75521AB8101(__this, L_0, /*hidden argument*/NULL); Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233081), /*hidden argument*/NULL); return; } } // System.Void System.FieldAccessException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FieldAccessException__ctor_m919683E34FF57340F2C91D29D16D1619D931E494 (FieldAccessException_tBFF096C9CF3CA2BF95A3D596D7E50EF32B178BDF * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1; MemberAccessException__ctor_m8D560A4375A75BBD6631BE42402BC4B41B8F7E5F(__this, L_0, L_1, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.FlagsAttribute::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FlagsAttribute__ctor_mDB9F9F47C36D0E9D25218718D1F76C6165B9A66D (FlagsAttribute_t7FB7BEFA2E1F2C6E3362A5996E82697475FFE867 * __this, const RuntimeMethod* method) { { Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.FormatException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FormatException__ctor_m6DAD3E32EE0445420B4893EA683425AC3441609B (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (FormatException__ctor_m6DAD3E32EE0445420B4893EA683425AC3441609B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralC1667A6DBF1A3F8146908B8EBC18AF7CDEC1FEFD, /*hidden argument*/NULL); SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL); Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233033), /*hidden argument*/NULL); return; } } // System.Void System.FormatException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FormatException__ctor_m89167FF9884AE20232190FE9286DC50E146A4F14 (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * __this, String_t* ___message0, const RuntimeMethod* method) { { String_t* L_0 = ___message0; SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL); Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233033), /*hidden argument*/NULL); return; } } // System.Void System.FormatException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FormatException__ctor_m4DC702D2EF54A4AD4F704A7217680A4897292DE8 (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method) { { String_t* L_0 = ___message0; Exception_t * L_1 = ___innerException1; SystemException__ctor_mA18D2EA5642C066F35CB8C965398F9A542C33B0A(__this, L_0, L_1, /*hidden argument*/NULL); Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233033), /*hidden argument*/NULL); return; } } // System.Void System.FormatException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FormatException__ctor_mDC141C414E24BE865FC8853970BF83C5B8C7676C (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1; SystemException__ctor_mB0550111A1A8D18B697B618F811A5B20C160D949(__this, L_0, L_1, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.GC::register_ephemeron_array(System.Runtime.CompilerServices.Ephemeron[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GC_register_ephemeron_array_mF6745DC9E70671B69469D62488C2183A46C10729 (EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* ___array0, const RuntimeMethod* method) { typedef void (*GC_register_ephemeron_array_mF6745DC9E70671B69469D62488C2183A46C10729_ftn) (EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10*); using namespace il2cpp::icalls; ((GC_register_ephemeron_array_mF6745DC9E70671B69469D62488C2183A46C10729_ftn)mscorlib::System::GC::register_ephemeron_array) (___array0); } // System.Object System.GC::get_ephemeron_tombstone() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * GC_get_ephemeron_tombstone_m8311F5A5E44DB7E6DA454732E2A7C992A9E20CCC (const RuntimeMethod* method) { typedef RuntimeObject * (*GC_get_ephemeron_tombstone_m8311F5A5E44DB7E6DA454732E2A7C992A9E20CCC_ftn) (); using namespace il2cpp::icalls; return ((GC_get_ephemeron_tombstone_m8311F5A5E44DB7E6DA454732E2A7C992A9E20CCC_ftn)mscorlib::System::GC::get_ephemeron_tombstone) (); } // System.Void System.GC::KeepAlive(System.Object) IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void GC_KeepAlive_mE836EDA45A7C6BFDCEA004B9089FA6B4810BDA89 (RuntimeObject * ___obj0, const RuntimeMethod* method) { { return; } } // System.Void System.GC::_SuppressFinalize(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GC__SuppressFinalize_mAEE97F4E88DFE238F79A9A05363D132B6DFEB6E8 (RuntimeObject * ___o0, const RuntimeMethod* method) { typedef void (*GC__SuppressFinalize_mAEE97F4E88DFE238F79A9A05363D132B6DFEB6E8_ftn) (RuntimeObject *); using namespace il2cpp::icalls; ((GC__SuppressFinalize_mAEE97F4E88DFE238F79A9A05363D132B6DFEB6E8_ftn)mscorlib::System::GC::_SuppressFinalize) (___o0); } // System.Void System.GC::SuppressFinalize(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GC_SuppressFinalize_m037319A9B95A5BA437E806DE592802225EE5B425 (RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (GC_SuppressFinalize_m037319A9B95A5BA437E806DE592802225EE5B425_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___obj0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral9B5C0B859FABA061DD60FD8070FCE74FCEE29D0B, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, GC_SuppressFinalize_m037319A9B95A5BA437E806DE592802225EE5B425_RuntimeMethod_var); } IL_000e: { RuntimeObject * L_2 = ___obj0; IL2CPP_RUNTIME_CLASS_INIT(GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_il2cpp_TypeInfo_var); GC__SuppressFinalize_mAEE97F4E88DFE238F79A9A05363D132B6DFEB6E8(L_2, /*hidden argument*/NULL); return; } } // System.Void System.GC::_ReRegisterForFinalize(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GC__ReRegisterForFinalize_m6CE21FC41C136709441FCA0BD23BF17135467CA6 (RuntimeObject * ___o0, const RuntimeMethod* method) { typedef void (*GC__ReRegisterForFinalize_m6CE21FC41C136709441FCA0BD23BF17135467CA6_ftn) (RuntimeObject *); using namespace il2cpp::icalls; ((GC__ReRegisterForFinalize_m6CE21FC41C136709441FCA0BD23BF17135467CA6_ftn)mscorlib::System::GC::_ReRegisterForFinalize) (___o0); } // System.Void System.GC::ReRegisterForFinalize(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GC_ReRegisterForFinalize_m4978CBD78D693FF77EA40D4000F0EF9F2C2E54C8 (RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (GC_ReRegisterForFinalize_m4978CBD78D693FF77EA40D4000F0EF9F2C2E54C8_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___obj0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral9B5C0B859FABA061DD60FD8070FCE74FCEE29D0B, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, GC_ReRegisterForFinalize_m4978CBD78D693FF77EA40D4000F0EF9F2C2E54C8_RuntimeMethod_var); } IL_000e: { RuntimeObject * L_2 = ___obj0; IL2CPP_RUNTIME_CLASS_INIT(GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_il2cpp_TypeInfo_var); GC__ReRegisterForFinalize_m6CE21FC41C136709441FCA0BD23BF17135467CA6(L_2, /*hidden argument*/NULL); return; } } // System.Void System.GC::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GC__cctor_m090AEF5149E28698EB92F40E5733BDF951BE1584 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (GC__cctor_m090AEF5149E28698EB92F40E5733BDF951BE1584_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = GC_get_ephemeron_tombstone_m8311F5A5E44DB7E6DA454732E2A7C992A9E20CCC(/*hidden argument*/NULL); ((GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_StaticFields*)il2cpp_codegen_static_fields_for(GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_il2cpp_TypeInfo_var))->set_EPHEMERON_TOMBSTONE_0(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Globalization.Bootstring::.ctor(System.Char,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Bootstring__ctor_m850EF79D97E5FE3553C5CC84AF4B14C7B914AE45 (Bootstring_t9E3CD00FBB61B43CDF0873C571322A4387693F41 * __this, Il2CppChar ___delimiter0, int32_t ___baseNum1, int32_t ___tmin2, int32_t ___tmax3, int32_t ___skew4, int32_t ___damp5, int32_t ___initialBias6, int32_t ___initialN7, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); Il2CppChar L_0 = ___delimiter0; __this->set_delimiter_0(L_0); int32_t L_1 = ___baseNum1; __this->set_base_num_1(L_1); int32_t L_2 = ___tmin2; __this->set_tmin_2(L_2); int32_t L_3 = ___tmax3; __this->set_tmax_3(L_3); int32_t L_4 = ___skew4; __this->set_skew_4(L_4); int32_t L_5 = ___damp5; __this->set_damp_5(L_5); int32_t L_6 = ___initialBias6; __this->set_initial_bias_6(L_6); int32_t L_7 = ___initialN7; __this->set_initial_n_7(L_7); return; } } // System.String System.Globalization.Bootstring::Encode(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Bootstring_Encode_mF17F92BFD3F22FBFD68DAEF113D11E83BA76BAF5 (Bootstring_t9E3CD00FBB61B43CDF0873C571322A4387693F41 * __this, String_t* ___s0, int32_t ___offset1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Bootstring_Encode_mF17F92BFD3F22FBFD68DAEF113D11E83BA76BAF5_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; StringBuilder_t * V_5 = NULL; int32_t V_6 = 0; int32_t V_7 = 0; int32_t V_8 = 0; int32_t V_9 = 0; Il2CppChar V_10 = 0x0; int32_t V_11 = 0; int32_t V_12 = 0; int32_t V_13 = 0; int32_t G_B24_0 = 0; { int32_t L_0 = __this->get_initial_n_7(); V_0 = L_0; V_1 = 0; int32_t L_1 = __this->get_initial_bias_6(); V_2 = L_1; V_3 = 0; V_4 = 0; StringBuilder_t * L_2 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_2, /*hidden argument*/NULL); V_5 = L_2; V_6 = 0; goto IL_0046; } IL_0021: { String_t* L_3 = ___s0; int32_t L_4 = V_6; NullCheck(L_3); Il2CppChar L_5 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_3, L_4, /*hidden argument*/NULL); if ((((int32_t)L_5) >= ((int32_t)((int32_t)128)))) { goto IL_0040; } } { StringBuilder_t * L_6 = V_5; String_t* L_7 = ___s0; int32_t L_8 = V_6; NullCheck(L_7); Il2CppChar L_9 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_7, L_8, /*hidden argument*/NULL); NullCheck(L_6); StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_6, L_9, /*hidden argument*/NULL); } IL_0040: { int32_t L_10 = V_6; V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1)); } IL_0046: { int32_t L_11 = V_6; String_t* L_12 = ___s0; NullCheck(L_12); int32_t L_13 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_12, /*hidden argument*/NULL); if ((((int32_t)L_11) < ((int32_t)L_13))) { goto IL_0021; } } { StringBuilder_t * L_14 = V_5; NullCheck(L_14); int32_t L_15 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_14, /*hidden argument*/NULL); int32_t L_16 = L_15; V_4 = L_16; V_3 = L_16; int32_t L_17 = V_3; if ((((int32_t)L_17) <= ((int32_t)0))) { goto IL_01ae; } } { StringBuilder_t * L_18 = V_5; Il2CppChar L_19 = __this->get_delimiter_0(); NullCheck(L_18); StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_18, L_19, /*hidden argument*/NULL); goto IL_01ae; } IL_0075: { V_7 = ((int32_t)2147483647LL); V_8 = 0; goto IL_00a8; } IL_0081: { String_t* L_20 = ___s0; int32_t L_21 = V_8; NullCheck(L_20); Il2CppChar L_22 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_20, L_21, /*hidden argument*/NULL); int32_t L_23 = V_0; if ((((int32_t)L_22) < ((int32_t)L_23))) { goto IL_00a2; } } { String_t* L_24 = ___s0; int32_t L_25 = V_8; NullCheck(L_24); Il2CppChar L_26 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_24, L_25, /*hidden argument*/NULL); int32_t L_27 = V_7; if ((((int32_t)L_26) >= ((int32_t)L_27))) { goto IL_00a2; } } { String_t* L_28 = ___s0; int32_t L_29 = V_8; NullCheck(L_28); Il2CppChar L_30 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_28, L_29, /*hidden argument*/NULL); V_7 = L_30; } IL_00a2: { int32_t L_31 = V_8; V_8 = ((int32_t)il2cpp_codegen_add((int32_t)L_31, (int32_t)1)); } IL_00a8: { int32_t L_32 = V_8; String_t* L_33 = ___s0; NullCheck(L_33); int32_t L_34 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_33, /*hidden argument*/NULL); if ((((int32_t)L_32) < ((int32_t)L_34))) { goto IL_0081; } } { int32_t L_35 = V_1; int32_t L_36 = V_7; int32_t L_37 = V_0; if (((int64_t)L_36 - (int64_t)L_37 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_36 - (int64_t)L_37 > (int64_t)kIl2CppInt32Max)) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, Bootstring_Encode_mF17F92BFD3F22FBFD68DAEF113D11E83BA76BAF5_RuntimeMethod_var); int32_t L_38 = V_4; if (((int64_t)L_38 + (int64_t)1 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_38 + (int64_t)1 > (int64_t)kIl2CppInt32Max)) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, Bootstring_Encode_mF17F92BFD3F22FBFD68DAEF113D11E83BA76BAF5_RuntimeMethod_var); if (((int64_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_36, (int32_t)L_37)) * (int64_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1)) < (int64_t)kIl2CppInt32Min) || ((int64_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_36, (int32_t)L_37)) * (int64_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1)) > (int64_t)kIl2CppInt32Max)) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, Bootstring_Encode_mF17F92BFD3F22FBFD68DAEF113D11E83BA76BAF5_RuntimeMethod_var); if (((int64_t)L_35 + (int64_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_36, (int32_t)L_37)), (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1)))) < (int64_t)kIl2CppInt32Min) || ((int64_t)L_35 + (int64_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_36, (int32_t)L_37)), (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1)))) > (int64_t)kIl2CppInt32Max)) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, Bootstring_Encode_mF17F92BFD3F22FBFD68DAEF113D11E83BA76BAF5_RuntimeMethod_var); V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_35, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_36, (int32_t)L_37)), (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1)))))); int32_t L_39 = V_7; V_0 = L_39; V_9 = 0; goto IL_0199; } IL_00c9: { String_t* L_40 = ___s0; int32_t L_41 = V_9; NullCheck(L_40); Il2CppChar L_42 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_40, L_41, /*hidden argument*/NULL); V_10 = L_42; Il2CppChar L_43 = V_10; int32_t L_44 = V_0; if ((((int32_t)L_43) < ((int32_t)L_44))) { goto IL_00e1; } } { Il2CppChar L_45 = V_10; if ((((int32_t)L_45) >= ((int32_t)((int32_t)128)))) { goto IL_00e5; } } IL_00e1: { int32_t L_46 = V_1; if (((int64_t)L_46 + (int64_t)1 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_46 + (int64_t)1 > (int64_t)kIl2CppInt32Max)) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, Bootstring_Encode_mF17F92BFD3F22FBFD68DAEF113D11E83BA76BAF5_RuntimeMethod_var); V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_46, (int32_t)1)); } IL_00e5: { Il2CppChar L_47 = V_10; int32_t L_48 = V_0; if ((!(((uint32_t)L_47) == ((uint32_t)L_48)))) { goto IL_0193; } } { int32_t L_49 = V_1; V_11 = L_49; int32_t L_50 = __this->get_base_num_1(); V_12 = L_50; } IL_00f8: { int32_t L_51 = V_12; int32_t L_52 = V_2; int32_t L_53 = __this->get_tmin_2(); if ((((int32_t)L_51) <= ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_52, (int32_t)L_53))))) { goto IL_011e; } } { int32_t L_54 = V_12; int32_t L_55 = V_2; int32_t L_56 = __this->get_tmax_3(); if ((((int32_t)L_54) >= ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_55, (int32_t)L_56))))) { goto IL_0116; } } { int32_t L_57 = V_12; int32_t L_58 = V_2; G_B24_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_57, (int32_t)L_58)); goto IL_0124; } IL_0116: { int32_t L_59 = __this->get_tmax_3(); G_B24_0 = L_59; goto IL_0124; } IL_011e: { int32_t L_60 = __this->get_tmin_2(); G_B24_0 = L_60; } IL_0124: { V_13 = G_B24_0; int32_t L_61 = V_11; int32_t L_62 = V_13; if ((((int32_t)L_61) < ((int32_t)L_62))) { goto IL_016a; } } { StringBuilder_t * L_63 = V_5; int32_t L_64 = V_13; int32_t L_65 = V_11; int32_t L_66 = V_13; int32_t L_67 = __this->get_base_num_1(); int32_t L_68 = V_13; Il2CppChar L_69 = Bootstring_EncodeDigit_m4A96B8F55E28E62C89FD205738EB0381287B277C(__this, ((int32_t)il2cpp_codegen_add((int32_t)L_64, (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_65, (int32_t)L_66))%(int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_67, (int32_t)L_68)))))), /*hidden argument*/NULL); NullCheck(L_63); StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_63, L_69, /*hidden argument*/NULL); int32_t L_70 = V_11; int32_t L_71 = V_13; int32_t L_72 = __this->get_base_num_1(); int32_t L_73 = V_13; V_11 = ((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_70, (int32_t)L_71))/(int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_72, (int32_t)L_73)))); int32_t L_74 = V_12; int32_t L_75 = __this->get_base_num_1(); V_12 = ((int32_t)il2cpp_codegen_add((int32_t)L_74, (int32_t)L_75)); goto IL_00f8; } IL_016a: { StringBuilder_t * L_76 = V_5; int32_t L_77 = V_11; Il2CppChar L_78 = Bootstring_EncodeDigit_m4A96B8F55E28E62C89FD205738EB0381287B277C(__this, L_77, /*hidden argument*/NULL); NullCheck(L_76); StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_76, L_78, /*hidden argument*/NULL); int32_t L_79 = V_1; int32_t L_80 = V_4; int32_t L_81 = V_4; int32_t L_82 = V_3; int32_t L_83 = Bootstring_Adapt_mF5FCC8358A0EF65CE96231274AA1695DB22DB712(__this, L_79, ((int32_t)il2cpp_codegen_add((int32_t)L_80, (int32_t)1)), (bool)((((int32_t)L_81) == ((int32_t)L_82))? 1 : 0), /*hidden argument*/NULL); V_2 = L_83; V_1 = 0; int32_t L_84 = V_4; V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_84, (int32_t)1)); } IL_0193: { int32_t L_85 = V_9; V_9 = ((int32_t)il2cpp_codegen_add((int32_t)L_85, (int32_t)1)); } IL_0199: { int32_t L_86 = V_9; String_t* L_87 = ___s0; NullCheck(L_87); int32_t L_88 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_87, /*hidden argument*/NULL); if ((((int32_t)L_86) < ((int32_t)L_88))) { goto IL_00c9; } } { int32_t L_89 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_89, (int32_t)1)); int32_t L_90 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_90, (int32_t)1)); } IL_01ae: { int32_t L_91 = V_4; String_t* L_92 = ___s0; NullCheck(L_92); int32_t L_93 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_92, /*hidden argument*/NULL); if ((((int32_t)L_91) < ((int32_t)L_93))) { goto IL_0075; } } { StringBuilder_t * L_94 = V_5; NullCheck(L_94); String_t* L_95 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_94); return L_95; } } // System.Char System.Globalization.Bootstring::EncodeDigit(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Bootstring_EncodeDigit_m4A96B8F55E28E62C89FD205738EB0381287B277C (Bootstring_t9E3CD00FBB61B43CDF0873C571322A4387693F41 * __this, int32_t ___d0, const RuntimeMethod* method) { int32_t G_B3_0 = 0; { int32_t L_0 = ___d0; if ((((int32_t)L_0) < ((int32_t)((int32_t)26)))) { goto IL_000e; } } { int32_t L_1 = ___d0; G_B3_0 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)((int32_t)26))), (int32_t)((int32_t)48))); goto IL_0012; } IL_000e: { int32_t L_2 = ___d0; G_B3_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)((int32_t)97))); } IL_0012: { return (((int32_t)((uint16_t)G_B3_0))); } } // System.Int32 System.Globalization.Bootstring::DecodeDigit(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Bootstring_DecodeDigit_mD9D0F2EAE2245ADD3622BCE52BAAF7AF745CBB47 (Bootstring_t9E3CD00FBB61B43CDF0873C571322A4387693F41 * __this, Il2CppChar ___c0, const RuntimeMethod* method) { { Il2CppChar L_0 = ___c0; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)((int32_t)48)))) < ((int32_t)((int32_t)10)))) { goto IL_0029; } } { Il2CppChar L_1 = ___c0; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)((int32_t)65)))) < ((int32_t)((int32_t)26)))) { goto IL_0024; } } { Il2CppChar L_2 = ___c0; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)((int32_t)97)))) < ((int32_t)((int32_t)26)))) { goto IL_001f; } } { int32_t L_3 = __this->get_base_num_1(); return L_3; } IL_001f: { Il2CppChar L_4 = ___c0; return ((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)((int32_t)97))); } IL_0024: { Il2CppChar L_5 = ___c0; return ((int32_t)il2cpp_codegen_subtract((int32_t)L_5, (int32_t)((int32_t)65))); } IL_0029: { Il2CppChar L_6 = ___c0; return ((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)((int32_t)22))); } } // System.Int32 System.Globalization.Bootstring::Adapt(System.Int32,System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Bootstring_Adapt_mF5FCC8358A0EF65CE96231274AA1695DB22DB712 (Bootstring_t9E3CD00FBB61B43CDF0873C571322A4387693F41 * __this, int32_t ___delta0, int32_t ___numPoints1, bool ___firstTime2, const RuntimeMethod* method) { int32_t V_0 = 0; { bool L_0 = ___firstTime2; if (!L_0) { goto IL_000f; } } { int32_t L_1 = ___delta0; int32_t L_2 = __this->get_damp_5(); ___delta0 = ((int32_t)((int32_t)L_1/(int32_t)L_2)); goto IL_0014; } IL_000f: { int32_t L_3 = ___delta0; ___delta0 = ((int32_t)((int32_t)L_3/(int32_t)2)); } IL_0014: { int32_t L_4 = ___delta0; int32_t L_5 = ___delta0; int32_t L_6 = ___numPoints1; ___delta0 = ((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)((int32_t)((int32_t)L_5/(int32_t)L_6)))); V_0 = 0; goto IL_0039; } IL_001f: { int32_t L_7 = ___delta0; int32_t L_8 = __this->get_base_num_1(); int32_t L_9 = __this->get_tmin_2(); ___delta0 = ((int32_t)((int32_t)L_7/(int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)L_9)))); int32_t L_10 = V_0; int32_t L_11 = __this->get_base_num_1(); V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)L_11)); } IL_0039: { int32_t L_12 = ___delta0; int32_t L_13 = __this->get_base_num_1(); int32_t L_14 = __this->get_tmin_2(); int32_t L_15 = __this->get_tmax_3(); if ((((int32_t)L_12) > ((int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_13, (int32_t)L_14)), (int32_t)L_15))/(int32_t)2))))) { goto IL_001f; } } { int32_t L_16 = V_0; int32_t L_17 = __this->get_base_num_1(); int32_t L_18 = __this->get_tmin_2(); int32_t L_19 = ___delta0; int32_t L_20 = ___delta0; int32_t L_21 = __this->get_skew_4(); return ((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18)), (int32_t)1)), (int32_t)L_19))/(int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)L_21)))))); } } // System.String System.Globalization.Bootstring::Decode(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Bootstring_Decode_mF393D2ABEBF1384E983F5551079FE768AB88F76D (Bootstring_t9E3CD00FBB61B43CDF0873C571322A4387693F41 * __this, String_t* ___s0, int32_t ___offset1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Bootstring_Decode_mF393D2ABEBF1384E983F5551079FE768AB88F76D_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; StringBuilder_t * V_4 = NULL; int32_t V_5 = 0; int32_t V_6 = 0; int32_t V_7 = 0; int32_t V_8 = 0; int32_t V_9 = 0; int32_t V_10 = 0; int32_t V_11 = 0; int32_t G_B10_0 = 0; int32_t G_B17_0 = 0; { int32_t L_0 = __this->get_initial_n_7(); V_0 = L_0; V_1 = 0; int32_t L_1 = __this->get_initial_bias_6(); V_2 = L_1; V_3 = 0; StringBuilder_t * L_2 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_2, /*hidden argument*/NULL); V_4 = L_2; V_5 = 0; goto IL_0037; } IL_001e: { String_t* L_3 = ___s0; int32_t L_4 = V_5; NullCheck(L_3); Il2CppChar L_5 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_3, L_4, /*hidden argument*/NULL); Il2CppChar L_6 = __this->get_delimiter_0(); if ((!(((uint32_t)L_5) == ((uint32_t)L_6)))) { goto IL_0031; } } { int32_t L_7 = V_5; V_3 = L_7; } IL_0031: { int32_t L_8 = V_5; V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1)); } IL_0037: { int32_t L_9 = V_5; String_t* L_10 = ___s0; NullCheck(L_10); int32_t L_11 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_10, /*hidden argument*/NULL); if ((((int32_t)L_9) < ((int32_t)L_11))) { goto IL_001e; } } { int32_t L_12 = V_3; if ((((int32_t)L_12) >= ((int32_t)0))) { goto IL_0047; } } { String_t* L_13 = ___s0; return L_13; } IL_0047: { StringBuilder_t * L_14 = V_4; String_t* L_15 = ___s0; int32_t L_16 = V_3; NullCheck(L_14); StringBuilder_Append_m9EB954E99DC99B8CC712ABB70EAA07616B841D46(L_14, L_15, 0, L_16, /*hidden argument*/NULL); int32_t L_17 = V_3; if ((((int32_t)L_17) > ((int32_t)0))) { goto IL_0059; } } { G_B10_0 = 0; goto IL_005c; } IL_0059: { int32_t L_18 = V_3; G_B10_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)); } IL_005c: { V_6 = G_B10_0; goto IL_0140; } IL_0063: { int32_t L_19 = V_1; V_7 = L_19; V_8 = 1; int32_t L_20 = __this->get_base_num_1(); V_9 = L_20; } IL_0071: { String_t* L_21 = ___s0; int32_t L_22 = V_6; int32_t L_23 = L_22; V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); NullCheck(L_21); Il2CppChar L_24 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_21, L_23, /*hidden argument*/NULL); int32_t L_25 = Bootstring_DecodeDigit_mD9D0F2EAE2245ADD3622BCE52BAAF7AF745CBB47(__this, L_24, /*hidden argument*/NULL); V_10 = L_25; int32_t L_26 = V_1; int32_t L_27 = V_10; int32_t L_28 = V_8; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_27, (int32_t)L_28)))); int32_t L_29 = V_9; int32_t L_30 = V_2; int32_t L_31 = __this->get_tmin_2(); if ((((int32_t)L_29) <= ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_30, (int32_t)L_31))))) { goto IL_00b4; } } { int32_t L_32 = V_9; int32_t L_33 = V_2; int32_t L_34 = __this->get_tmax_3(); if ((((int32_t)L_32) >= ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)L_34))))) { goto IL_00ac; } } { int32_t L_35 = V_9; int32_t L_36 = V_2; G_B17_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_35, (int32_t)L_36)); goto IL_00ba; } IL_00ac: { int32_t L_37 = __this->get_tmax_3(); G_B17_0 = L_37; goto IL_00ba; } IL_00b4: { int32_t L_38 = __this->get_tmin_2(); G_B17_0 = L_38; } IL_00ba: { V_11 = G_B17_0; int32_t L_39 = V_10; int32_t L_40 = V_11; if ((((int32_t)L_39) < ((int32_t)L_40))) { goto IL_00dd; } } { int32_t L_41 = V_8; int32_t L_42 = __this->get_base_num_1(); int32_t L_43 = V_11; V_8 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_41, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_42, (int32_t)L_43)))); int32_t L_44 = V_9; int32_t L_45 = __this->get_base_num_1(); V_9 = ((int32_t)il2cpp_codegen_add((int32_t)L_44, (int32_t)L_45)); goto IL_0071; } IL_00dd: { int32_t L_46 = V_1; int32_t L_47 = V_7; StringBuilder_t * L_48 = V_4; NullCheck(L_48); int32_t L_49 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_48, /*hidden argument*/NULL); int32_t L_50 = V_7; int32_t L_51 = Bootstring_Adapt_mF5FCC8358A0EF65CE96231274AA1695DB22DB712(__this, ((int32_t)il2cpp_codegen_subtract((int32_t)L_46, (int32_t)L_47)), ((int32_t)il2cpp_codegen_add((int32_t)L_49, (int32_t)1)), (bool)((((int32_t)L_50) == ((int32_t)0))? 1 : 0), /*hidden argument*/NULL); V_2 = L_51; int32_t L_52 = V_0; int32_t L_53 = V_1; StringBuilder_t * L_54 = V_4; NullCheck(L_54); int32_t L_55 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_54, /*hidden argument*/NULL); V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_52, (int32_t)((int32_t)((int32_t)L_53/(int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_55, (int32_t)1)))))); int32_t L_56 = V_1; StringBuilder_t * L_57 = V_4; NullCheck(L_57); int32_t L_58 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_57, /*hidden argument*/NULL); V_1 = ((int32_t)((int32_t)L_56%(int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_58, (int32_t)1)))); int32_t L_59 = V_0; if ((((int32_t)L_59) >= ((int32_t)((int32_t)128)))) { goto IL_0131; } } { int32_t L_60 = ___offset1; int32_t L_61 = V_6; int32_t L_62 = ((int32_t)il2cpp_codegen_add((int32_t)L_60, (int32_t)L_61)); RuntimeObject * L_63 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_62); String_t* L_64 = String_Format_m0ACDD8B34764E4040AED0B3EEB753567E4576BFA(_stringLiteral172386082086186807F5EDA33088CEC8484F98BF, L_63, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_65 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_65, L_64, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_65, NULL, Bootstring_Decode_mF393D2ABEBF1384E983F5551079FE768AB88F76D_RuntimeMethod_var); } IL_0131: { StringBuilder_t * L_66 = V_4; int32_t L_67 = V_1; int32_t L_68 = V_0; NullCheck(L_66); StringBuilder_Insert_m5A00CEB69C56B823E3766C84114D8B8ACCFC67A1(L_66, L_67, (((int32_t)((uint16_t)L_68))), /*hidden argument*/NULL); int32_t L_69 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_69, (int32_t)1)); } IL_0140: { int32_t L_70 = V_6; String_t* L_71 = ___s0; NullCheck(L_71); int32_t L_72 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_71, /*hidden argument*/NULL); if ((((int32_t)L_70) < ((int32_t)L_72))) { goto IL_0063; } } { StringBuilder_t * L_73 = V_4; NullCheck(L_73); String_t* L_74 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_73); return L_74; } } #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.DateTime System.Globalization.Calendar::get_MinSupportedDateTime() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Calendar_get_MinSupportedDateTime_m6DC3947310A77AC11A41106183B8885B27D60096 (Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Calendar_get_MinSupportedDateTime_m6DC3947310A77AC11A41106183B8885B27D60096_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_0 = ((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var))->get_MinValue_31(); return L_0; } } // System.DateTime System.Globalization.Calendar::get_MaxSupportedDateTime() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Calendar_get_MaxSupportedDateTime_m395769D29E5A25BC61CB4CCB7DC696C671EF1DC0 (Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Calendar_get_MaxSupportedDateTime_m395769D29E5A25BC61CB4CCB7DC696C671EF1DC0_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_0 = ((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var))->get_MaxValue_32(); return L_0; } } // System.Void System.Globalization.Calendar::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Calendar__ctor_m42B02CE161563140340DC5485C7E1B3617FC449B (Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * __this, const RuntimeMethod* method) { { __this->set_m_currentEraValue_0((-1)); __this->set_twoDigitYearMax_2((-1)); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); return; } } // System.Int32 System.Globalization.Calendar::get_ID() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Calendar_get_ID_m25069AB91446D167F193B26B006A63AE1754D10E (Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * __this, const RuntimeMethod* method) { { return (-1); } } // System.Int32 System.Globalization.Calendar::get_BaseCalendarID() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Calendar_get_BaseCalendarID_m183E5D208E577BBE58D9108832FD95FB6F2961D9 (Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * __this, const RuntimeMethod* method) { { int32_t L_0 = VirtFuncInvoker0< int32_t >::Invoke(7 /* System.Int32 System.Globalization.Calendar::get_ID() */, __this); return L_0; } } // System.Object System.Globalization.Calendar::Clone() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Calendar_Clone_mEF6C60BA859414FD5F0433FF72186E7ABEA1E3A7 (Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Calendar_Clone_mEF6C60BA859414FD5F0433FF72186E7ABEA1E3A7_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = Object_MemberwiseClone_m1DAC4538CD68D4CF4DC5B04E4BBE86D470948B28(__this, /*hidden argument*/NULL); RuntimeObject * L_1 = L_0; NullCheck(((Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 *)CastclassClass((RuntimeObject*)L_1, Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5_il2cpp_TypeInfo_var))); Calendar_SetReadOnlyState_m257219F0844460D6BBC3A13B3FD021204583FC2B_inline(((Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 *)CastclassClass((RuntimeObject*)L_1, Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5_il2cpp_TypeInfo_var)), (bool)0, /*hidden argument*/NULL); return L_1; } } // System.Void System.Globalization.Calendar::SetReadOnlyState(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Calendar_SetReadOnlyState_m257219F0844460D6BBC3A13B3FD021204583FC2B (Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * __this, bool ___readOnly0, const RuntimeMethod* method) { { bool L_0 = ___readOnly0; __this->set_m_isReadOnly_1(L_0); return; } } // System.Int32 System.Globalization.Calendar::get_CurrentEraValue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Calendar_get_CurrentEraValue_mB44D88CD4CE662B8F54E8551F1157FCD8FFDB4C7 (Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Calendar_get_CurrentEraValue_mB44D88CD4CE662B8F54E8551F1157FCD8FFDB4C7_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->get_m_currentEraValue_0(); if ((!(((uint32_t)L_0) == ((uint32_t)(-1))))) { goto IL_001f; } } { int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(8 /* System.Int32 System.Globalization.Calendar::get_BaseCalendarID() */, __this); IL2CPP_RUNTIME_CLASS_INIT(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_2 = CalendarData_GetCalendarData_mDFCD051C21909262E525CC9E75728C83BD0E1904(L_1, /*hidden argument*/NULL); NullCheck(L_2); int32_t L_3 = L_2->get_iCurrentEra_18(); __this->set_m_currentEraValue_0(L_3); } IL_001f: { int32_t L_4 = __this->get_m_currentEraValue_0(); return L_4; } } // System.Boolean System.Globalization.Calendar::IsLeapYear(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Calendar_IsLeapYear_m86781F3FF822D348D336009AB1417B0169768B10 (Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * __this, int32_t ___year0, const RuntimeMethod* method) { { int32_t L_0 = ___year0; bool L_1 = VirtFuncInvoker2< bool, int32_t, int32_t >::Invoke(20 /* System.Boolean System.Globalization.Calendar::IsLeapYear(System.Int32,System.Int32) */, __this, L_0, 0); return L_1; } } // System.Boolean System.Globalization.Calendar::TryToDateTime(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.DateTime&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Calendar_TryToDateTime_m4FEBD3552CF126C05B582B5A67B36E5DA5C6F96C (Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * __this, int32_t ___year0, int32_t ___month1, int32_t ___day2, int32_t ___hour3, int32_t ___minute4, int32_t ___second5, int32_t ___millisecond6, int32_t ___era7, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * ___result8, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Calendar_TryToDateTime_m4FEBD3552CF126C05B582B5A67B36E5DA5C6F96C_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * L_0 = ___result8; IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_1 = ((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var))->get_MinValue_31(); *(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)L_0 = L_1; } IL_000c: try { // begin try (depth: 1) DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * L_2 = ___result8; int32_t L_3 = ___year0; int32_t L_4 = ___month1; int32_t L_5 = ___day2; int32_t L_6 = ___hour3; int32_t L_7 = ___minute4; int32_t L_8 = ___second5; int32_t L_9 = ___millisecond6; int32_t L_10 = ___era7; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_11 = VirtFuncInvoker8< DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 , int32_t, int32_t, int32_t, int32_t, int32_t, int32_t, int32_t, int32_t >::Invoke(21 /* System.DateTime System.Globalization.Calendar::ToDateTime(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) */, __this, L_3, L_4, L_5, L_6, L_7, L_8, L_9, L_10); *(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)L_2 = L_11; V_0 = (bool)1; goto IL_002f; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_002a; throw e; } CATCH_002a: { // begin catch(System.ArgumentException) V_0 = (bool)0; goto IL_002f; } // end catch (depth: 1) IL_002f: { bool L_12 = V_0; return L_12; } } // System.Boolean System.Globalization.Calendar::IsValidYear(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Calendar_IsValidYear_mA38514E29C503A0A299726C95F31949715A110CA (Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * __this, int32_t ___year0, int32_t ___era1, const RuntimeMethod* method) { { int32_t L_0 = ___year0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_1 = VirtFuncInvoker0< DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 >::Invoke(5 /* System.DateTime System.Globalization.Calendar::get_MinSupportedDateTime() */, __this); int32_t L_2 = VirtFuncInvoker1< int32_t, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 >::Invoke(18 /* System.Int32 System.Globalization.Calendar::GetYear(System.DateTime) */, __this, L_1); if ((((int32_t)L_0) < ((int32_t)L_2))) { goto IL_0022; } } { int32_t L_3 = ___year0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_4 = VirtFuncInvoker0< DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 >::Invoke(6 /* System.DateTime System.Globalization.Calendar::get_MaxSupportedDateTime() */, __this); int32_t L_5 = VirtFuncInvoker1< int32_t, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 >::Invoke(18 /* System.Int32 System.Globalization.Calendar::GetYear(System.DateTime) */, __this, L_4); return (bool)((((int32_t)((((int32_t)L_3) > ((int32_t)L_5))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_0022: { return (bool)0; } } // System.Boolean System.Globalization.Calendar::IsValidMonth(System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Calendar_IsValidMonth_m9123084B2E3F2BD8B1FADC1BFA343C978D63D1A4 (Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * __this, int32_t ___year0, int32_t ___month1, int32_t ___era2, const RuntimeMethod* method) { { int32_t L_0 = ___year0; int32_t L_1 = ___era2; bool L_2 = VirtFuncInvoker2< bool, int32_t, int32_t >::Invoke(23 /* System.Boolean System.Globalization.Calendar::IsValidYear(System.Int32,System.Int32) */, __this, L_0, L_1); if (!L_2) { goto IL_001d; } } { int32_t L_3 = ___month1; if ((((int32_t)L_3) < ((int32_t)1))) { goto IL_001d; } } { int32_t L_4 = ___month1; int32_t L_5 = ___year0; int32_t L_6 = ___era2; int32_t L_7 = VirtFuncInvoker2< int32_t, int32_t, int32_t >::Invoke(17 /* System.Int32 System.Globalization.Calendar::GetMonthsInYear(System.Int32,System.Int32) */, __this, L_5, L_6); return (bool)((((int32_t)((((int32_t)L_4) > ((int32_t)L_7))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_001d: { return (bool)0; } } // System.Boolean System.Globalization.Calendar::IsValidDay(System.Int32,System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Calendar_IsValidDay_mAFA172C4B8EB7CA776BCBD69B0FB782ABC52A900 (Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * __this, int32_t ___year0, int32_t ___month1, int32_t ___day2, int32_t ___era3, const RuntimeMethod* method) { { int32_t L_0 = ___year0; int32_t L_1 = ___month1; int32_t L_2 = ___era3; bool L_3 = VirtFuncInvoker3< bool, int32_t, int32_t, int32_t >::Invoke(24 /* System.Boolean System.Globalization.Calendar::IsValidMonth(System.Int32,System.Int32,System.Int32) */, __this, L_0, L_1, L_2); if (!L_3) { goto IL_0021; } } { int32_t L_4 = ___day2; if ((((int32_t)L_4) < ((int32_t)1))) { goto IL_0021; } } { int32_t L_5 = ___day2; int32_t L_6 = ___year0; int32_t L_7 = ___month1; int32_t L_8 = ___era3; int32_t L_9 = VirtFuncInvoker3< int32_t, int32_t, int32_t, int32_t >::Invoke(13 /* System.Int32 System.Globalization.Calendar::GetDaysInMonth(System.Int32,System.Int32,System.Int32) */, __this, L_6, L_7, L_8); return (bool)((((int32_t)((((int32_t)L_5) > ((int32_t)L_9))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_0021: { return (bool)0; } } // System.Int32 System.Globalization.Calendar::get_TwoDigitYearMax() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Calendar_get_TwoDigitYearMax_mF7A4A4F23DF96911D4D9A840CCC706997B51EC3D (Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_twoDigitYearMax_2(); return L_0; } } // System.Int32 System.Globalization.Calendar::ToFourDigitYear(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Calendar_ToFourDigitYear_m4ECF4307F3C84104730F5E998F3BD2CACACD9C1C (Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * __this, int32_t ___year0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Calendar_ToFourDigitYear_m4ECF4307F3C84104730F5E998F3BD2CACACD9C1C_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B5_0 = 0; int32_t G_B4_0 = 0; int32_t G_B6_0 = 0; int32_t G_B6_1 = 0; { int32_t L_0 = ___year0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0019; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_2, _stringLiteral4FF0B1538469338A0073E2CDAAB6A517801B6AB4, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Calendar_ToFourDigitYear_m4ECF4307F3C84104730F5E998F3BD2CACACD9C1C_RuntimeMethod_var); } IL_0019: { int32_t L_3 = ___year0; if ((((int32_t)L_3) >= ((int32_t)((int32_t)100)))) { goto IL_003e; } } { int32_t L_4 = VirtFuncInvoker0< int32_t >::Invoke(26 /* System.Int32 System.Globalization.Calendar::get_TwoDigitYearMax() */, __this); int32_t L_5 = ___year0; int32_t L_6 = VirtFuncInvoker0< int32_t >::Invoke(26 /* System.Int32 System.Globalization.Calendar::get_TwoDigitYearMax() */, __this); G_B4_0 = ((int32_t)((int32_t)L_4/(int32_t)((int32_t)100))); if ((((int32_t)L_5) > ((int32_t)((int32_t)((int32_t)L_6%(int32_t)((int32_t)100)))))) { G_B5_0 = ((int32_t)((int32_t)L_4/(int32_t)((int32_t)100))); goto IL_0036; } } { G_B6_0 = 0; G_B6_1 = G_B4_0; goto IL_0037; } IL_0036: { G_B6_0 = 1; G_B6_1 = G_B5_0; } IL_0037: { int32_t L_7 = ___year0; return ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)G_B6_1, (int32_t)G_B6_0)), (int32_t)((int32_t)100))), (int32_t)L_7)); } IL_003e: { int32_t L_8 = ___year0; return L_8; } } // System.Int32 System.Globalization.Calendar::GetSystemTwoDigitYearSetting(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Calendar_GetSystemTwoDigitYearSetting_m879BEF952F1099F4977662EC3DFE5D89BF9530BA (int32_t ___CalID0, int32_t ___defaultYearValue1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Calendar_GetSystemTwoDigitYearSetting_m879BEF952F1099F4977662EC3DFE5D89BF9530BA_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { int32_t L_0 = ___CalID0; IL2CPP_RUNTIME_CLASS_INIT(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var); int32_t L_1 = CalendarData_nativeGetTwoDigitYearMax_m5ECABEEAB85DF5A27EC509A90929CC193CACA2BB(L_0, /*hidden argument*/NULL); V_0 = L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) >= ((int32_t)0))) { goto IL_000d; } } { int32_t L_3 = ___defaultYearValue1; V_0 = L_3; } IL_000d: { int32_t L_4 = V_0; return L_4; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Conversion methods for marshalling of: System.Globalization.CalendarData IL2CPP_EXTERN_C void CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_marshal_pinvoke(const CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E& unmarshaled, CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_marshaled_pinvoke& marshaled) { Exception_t* ___saShortDates_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'saShortDates' of type 'CalendarData'."); IL2CPP_RAISE_MANAGED_EXCEPTION(___saShortDates_2Exception, NULL, NULL); } IL2CPP_EXTERN_C void CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_marshal_pinvoke_back(const CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_marshaled_pinvoke& marshaled, CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E& unmarshaled) { Exception_t* ___saShortDates_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'saShortDates' of type 'CalendarData'."); IL2CPP_RAISE_MANAGED_EXCEPTION(___saShortDates_2Exception, NULL, NULL); } // Conversion method for clean up from marshalling of: System.Globalization.CalendarData IL2CPP_EXTERN_C void CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_marshal_pinvoke_cleanup(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: System.Globalization.CalendarData IL2CPP_EXTERN_C void CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_marshal_com(const CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E& unmarshaled, CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_marshaled_com& marshaled) { Exception_t* ___saShortDates_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'saShortDates' of type 'CalendarData'."); IL2CPP_RAISE_MANAGED_EXCEPTION(___saShortDates_2Exception, NULL, NULL); } IL2CPP_EXTERN_C void CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_marshal_com_back(const CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_marshaled_com& marshaled, CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E& unmarshaled) { Exception_t* ___saShortDates_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'saShortDates' of type 'CalendarData'."); IL2CPP_RAISE_MANAGED_EXCEPTION(___saShortDates_2Exception, NULL, NULL); } // Conversion method for clean up from marshalling of: System.Globalization.CalendarData IL2CPP_EXTERN_C void CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_marshal_com_cleanup(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_marshaled_com& marshaled) { } // System.Void System.Globalization.CalendarData::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CalendarData__ctor_m4D3EEE01B5957453B137E5C01362BFBEF1737CE9 (CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * __this, const RuntimeMethod* method) { { __this->set_iTwoDigitYearMax_17(((int32_t)2029)); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); return; } } // System.Void System.Globalization.CalendarData::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CalendarData__cctor_mA7D20B236BCD7799734737BAFD108C3B31D068CD (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CalendarData__cctor_mA7D20B236BCD7799734737BAFD108C3B31D068CD_MetadataUsageId); s_Il2CppMethodInitialized = true; } CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * V_0 = NULL; { CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_0 = (CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E *)il2cpp_codegen_object_new(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var); CalendarData__ctor_m4D3EEE01B5957453B137E5C01362BFBEF1737CE9(L_0, /*hidden argument*/NULL); V_0 = L_0; CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_1 = V_0; NullCheck(L_1); L_1->set_sNativeName_1(_stringLiteral67BBF11A3239F8FE8171FEE7FA8B76D4160D696E); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_2 = V_0; NullCheck(L_2); L_2->set_iTwoDigitYearMax_17(((int32_t)2029)); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_3 = V_0; NullCheck(L_3); L_3->set_iCurrentEra_18(1); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_4 = V_0; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_5 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)2); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_6 = L_5; NullCheck(L_6); ArrayElementTypeCheck (L_6, _stringLiteralC350C1F2719CE3CFCEDB3FC3D5E02625859F104B); (L_6)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralC350C1F2719CE3CFCEDB3FC3D5E02625859F104B); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_7 = L_6; NullCheck(L_7); ArrayElementTypeCheck (L_7, _stringLiteral7E746D340667E415DE67844CA297722F073C4EB5); (L_7)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral7E746D340667E415DE67844CA297722F073C4EB5); NullCheck(L_4); L_4->set_saShortDates_2(L_7); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_8 = V_0; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_9 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)1); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_10 = L_9; NullCheck(L_10); ArrayElementTypeCheck (L_10, _stringLiteral2E5848A2AB485AC0B08CD78605681B2223757EFB); (L_10)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral2E5848A2AB485AC0B08CD78605681B2223757EFB); NullCheck(L_8); L_8->set_saLongDates_4(L_10); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_11 = V_0; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_12 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)1); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_13 = L_12; NullCheck(L_13); ArrayElementTypeCheck (L_13, _stringLiteral4E0670944C1116B7F84CD30B38C4E946D59AD573); (L_13)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral4E0670944C1116B7F84CD30B38C4E946D59AD573); NullCheck(L_11); L_11->set_saYearMonths_3(L_13); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_14 = V_0; NullCheck(L_14); L_14->set_sMonthDay_5(_stringLiteralB4ED19F6FF6156C7E179A990BF73D02E8D5DF1FD); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_15 = V_0; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_16 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)1); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_17 = L_16; NullCheck(L_17); ArrayElementTypeCheck (L_17, _stringLiteral6BCCC101797076DA3F2A8139516C93E3DA1E5603); (L_17)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral6BCCC101797076DA3F2A8139516C93E3DA1E5603); NullCheck(L_15); L_15->set_saEraNames_6(L_17); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_18 = V_0; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_19 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)1); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_20 = L_19; NullCheck(L_20); ArrayElementTypeCheck (L_20, _stringLiteral6D95C1847219C633950F8F1CECA9761315ABFC19); (L_20)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral6D95C1847219C633950F8F1CECA9761315ABFC19); NullCheck(L_18); L_18->set_saAbbrevEraNames_7(L_20); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_21 = V_0; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_22 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)1); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_23 = L_22; NullCheck(L_23); ArrayElementTypeCheck (L_23, _stringLiteral6D95C1847219C633950F8F1CECA9761315ABFC19); (L_23)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral6D95C1847219C633950F8F1CECA9761315ABFC19); NullCheck(L_21); L_21->set_saAbbrevEnglishEraNames_8(L_23); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_24 = V_0; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_25 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)7); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_26 = L_25; NullCheck(L_26); ArrayElementTypeCheck (L_26, _stringLiteralBC5DD045B8623DDFC4BD0BCE98CA5FDA42ACCF88); (L_26)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralBC5DD045B8623DDFC4BD0BCE98CA5FDA42ACCF88); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_27 = L_26; NullCheck(L_27); ArrayElementTypeCheck (L_27, _stringLiteral932EEB1076C85E522F02E15441FA371E3FD000AC); (L_27)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral932EEB1076C85E522F02E15441FA371E3FD000AC); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_28 = L_27; NullCheck(L_28); ArrayElementTypeCheck (L_28, _stringLiteral42E43B612A5DFAE57DDF5929F0FB945AE83CBF61); (L_28)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral42E43B612A5DFAE57DDF5929F0FB945AE83CBF61); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_29 = L_28; NullCheck(L_29); ArrayElementTypeCheck (L_29, _stringLiteral5656B9B79B0316FC611A9C30D2FFAC25228B8371); (L_29)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral5656B9B79B0316FC611A9C30D2FFAC25228B8371); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_30 = L_29; NullCheck(L_30); ArrayElementTypeCheck (L_30, _stringLiteral76031DDF92450BA52C1E3945097079807A9065C2); (L_30)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral76031DDF92450BA52C1E3945097079807A9065C2); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_31 = L_30; NullCheck(L_31); ArrayElementTypeCheck (L_31, _stringLiteralD166E844A3F3F87149CC4F866EB998E9A751C72A); (L_31)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteralD166E844A3F3F87149CC4F866EB998E9A751C72A); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_32 = L_31; NullCheck(L_32); ArrayElementTypeCheck (L_32, _stringLiteral17063C506B81A46C2EB7716AF50CF19D4ED5A6C6); (L_32)->SetAt(static_cast<il2cpp_array_size_t>(6), (String_t*)_stringLiteral17063C506B81A46C2EB7716AF50CF19D4ED5A6C6); NullCheck(L_24); L_24->set_saDayNames_9(L_32); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_33 = V_0; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_34 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)7); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_35 = L_34; NullCheck(L_35); ArrayElementTypeCheck (L_35, _stringLiteral48C98CAB7866E606328C99289ED24E339393B5AB); (L_35)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral48C98CAB7866E606328C99289ED24E339393B5AB); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_36 = L_35; NullCheck(L_36); ArrayElementTypeCheck (L_36, _stringLiteral24B2A0993D0CFA93C44282D6BBA72BCF58B300D6); (L_36)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral24B2A0993D0CFA93C44282D6BBA72BCF58B300D6); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_37 = L_36; NullCheck(L_37); ArrayElementTypeCheck (L_37, _stringLiteral529541BB390C76152E313351D89DE3CD30A1C4BD); (L_37)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral529541BB390C76152E313351D89DE3CD30A1C4BD); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_38 = L_37; NullCheck(L_38); ArrayElementTypeCheck (L_38, _stringLiteral23408B19B29E8E8495BB4B68733ADA5F85FC2FD6); (L_38)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral23408B19B29E8E8495BB4B68733ADA5F85FC2FD6); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_39 = L_38; NullCheck(L_39); ArrayElementTypeCheck (L_39, _stringLiteral3593CCD96F6C0FAD4E362D18AC37226707F2EA46); (L_39)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral3593CCD96F6C0FAD4E362D18AC37226707F2EA46); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_40 = L_39; NullCheck(L_40); ArrayElementTypeCheck (L_40, _stringLiteralBBD6E32EE1326237814B697269B4368033D50D2F); (L_40)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteralBBD6E32EE1326237814B697269B4368033D50D2F); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_41 = L_40; NullCheck(L_41); ArrayElementTypeCheck (L_41, _stringLiteral6B782D41B0C29E2F39F93A8352C43300B042C6CD); (L_41)->SetAt(static_cast<il2cpp_array_size_t>(6), (String_t*)_stringLiteral6B782D41B0C29E2F39F93A8352C43300B042C6CD); NullCheck(L_33); L_33->set_saAbbrevDayNames_10(L_41); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_42 = V_0; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_43 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)7); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_44 = L_43; NullCheck(L_44); ArrayElementTypeCheck (L_44, _stringLiteral25BFC51C61045CC3FC21C75CFFC9743B85854F25); (L_44)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral25BFC51C61045CC3FC21C75CFFC9743B85854F25); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_45 = L_44; NullCheck(L_45); ArrayElementTypeCheck (L_45, _stringLiteral91E885D8E5AFB3ADF939AE0B29774A7CDD738CE9); (L_45)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral91E885D8E5AFB3ADF939AE0B29774A7CDD738CE9); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_46 = L_45; NullCheck(L_46); ArrayElementTypeCheck (L_46, _stringLiteralB44892B7F81948B449B1FCEB43F8115BA5FF108B); (L_46)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteralB44892B7F81948B449B1FCEB43F8115BA5FF108B); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_47 = L_46; NullCheck(L_47); ArrayElementTypeCheck (L_47, _stringLiteralA24AE9FAF6A4BA419BEE6DC5D1D746ACF826B198); (L_47)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteralA24AE9FAF6A4BA419BEE6DC5D1D746ACF826B198); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_48 = L_47; NullCheck(L_48); ArrayElementTypeCheck (L_48, _stringLiteral6929E765F6BD128088CDF81BA4805D3A84DA4E5E); (L_48)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral6929E765F6BD128088CDF81BA4805D3A84DA4E5E); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_49 = L_48; NullCheck(L_49); ArrayElementTypeCheck (L_49, _stringLiteralAA77F314FAB0BD632ACFB6279E7FB2C447DD50EB); (L_49)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteralAA77F314FAB0BD632ACFB6279E7FB2C447DD50EB); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_50 = L_49; NullCheck(L_50); ArrayElementTypeCheck (L_50, _stringLiteral50CF95CEE82204C65FD924E1AB51401C2EB0DEA6); (L_50)->SetAt(static_cast<il2cpp_array_size_t>(6), (String_t*)_stringLiteral50CF95CEE82204C65FD924E1AB51401C2EB0DEA6); NullCheck(L_42); L_42->set_saSuperShortDayNames_11(L_50); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_51 = V_0; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_52 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)((int32_t)13)); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_53 = L_52; NullCheck(L_53); ArrayElementTypeCheck (L_53, _stringLiteral7A22D73D336ABD6281D4DD71080220A230CB79DE); (L_53)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral7A22D73D336ABD6281D4DD71080220A230CB79DE); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_54 = L_53; NullCheck(L_54); ArrayElementTypeCheck (L_54, _stringLiteral5C3A35EF85F22D508F90171BDCB2E6D820731D20); (L_54)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral5C3A35EF85F22D508F90171BDCB2E6D820731D20); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_55 = L_54; NullCheck(L_55); ArrayElementTypeCheck (L_55, _stringLiteral433632EA5CD64CD163C3A390D5E531D33DA3C5E5); (L_55)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral433632EA5CD64CD163C3A390D5E531D33DA3C5E5); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_56 = L_55; NullCheck(L_56); ArrayElementTypeCheck (L_56, _stringLiteralA0393902DB1F516EF5F95F6830938558A88FB23C); (L_56)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteralA0393902DB1F516EF5F95F6830938558A88FB23C); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_57 = L_56; NullCheck(L_57); ArrayElementTypeCheck (L_57, _stringLiteralC94F479833C5D401CFFDFA7AFE6C9C2D56448019); (L_57)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteralC94F479833C5D401CFFDFA7AFE6C9C2D56448019); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_58 = L_57; NullCheck(L_58); ArrayElementTypeCheck (L_58, _stringLiteralA9DB906761699B31567727716EAA6FD19AE5F5D5); (L_58)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteralA9DB906761699B31567727716EAA6FD19AE5F5D5); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_59 = L_58; NullCheck(L_59); ArrayElementTypeCheck (L_59, _stringLiteralDF97A42549E5C0E1753B985126565531CC9F3C56); (L_59)->SetAt(static_cast<il2cpp_array_size_t>(6), (String_t*)_stringLiteralDF97A42549E5C0E1753B985126565531CC9F3C56); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_60 = L_59; NullCheck(L_60); ArrayElementTypeCheck (L_60, _stringLiteral69D97C5797DC7D211AAA4E9229DB5C8466D4EDEF); (L_60)->SetAt(static_cast<il2cpp_array_size_t>(7), (String_t*)_stringLiteral69D97C5797DC7D211AAA4E9229DB5C8466D4EDEF); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_61 = L_60; NullCheck(L_61); ArrayElementTypeCheck (L_61, _stringLiteral1C542E79C9B4257E640CCF72974D61FD590A5C26); (L_61)->SetAt(static_cast<il2cpp_array_size_t>(8), (String_t*)_stringLiteral1C542E79C9B4257E640CCF72974D61FD590A5C26); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_62 = L_61; NullCheck(L_62); ArrayElementTypeCheck (L_62, _stringLiteral87206AE2363483496C099F8C3AAC5B4A8AE2A66A); (L_62)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)9)), (String_t*)_stringLiteral87206AE2363483496C099F8C3AAC5B4A8AE2A66A); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_63 = L_62; NullCheck(L_63); ArrayElementTypeCheck (L_63, _stringLiteral3C5BF776F5EFCAA22D6E0FD4839DB7D2B83E52BE); (L_63)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)10)), (String_t*)_stringLiteral3C5BF776F5EFCAA22D6E0FD4839DB7D2B83E52BE); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_64 = L_63; NullCheck(L_64); ArrayElementTypeCheck (L_64, _stringLiteral65640C6577C9C72497525E656127B5BD1DEB6F85); (L_64)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)11)), (String_t*)_stringLiteral65640C6577C9C72497525E656127B5BD1DEB6F85); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_65 = L_64; String_t* L_66 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); NullCheck(L_65); ArrayElementTypeCheck (L_65, L_66); (L_65)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)12)), (String_t*)L_66); NullCheck(L_51); L_51->set_saMonthNames_12(L_65); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_67 = V_0; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_68 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)((int32_t)13)); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_69 = L_68; NullCheck(L_69); ArrayElementTypeCheck (L_69, _stringLiteralEFED3690EA2243F5F1AC77CBB0987E5335440258); (L_69)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralEFED3690EA2243F5F1AC77CBB0987E5335440258); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_70 = L_69; NullCheck(L_70); ArrayElementTypeCheck (L_70, _stringLiteralDC8415CCFE52505F1D0A74025C76B3C26C88C59D); (L_70)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralDC8415CCFE52505F1D0A74025C76B3C26C88C59D); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_71 = L_70; NullCheck(L_71); ArrayElementTypeCheck (L_71, _stringLiteralC4BA0822462E0C373AADD5360A69F205C2A7D036); (L_71)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteralC4BA0822462E0C373AADD5360A69F205C2A7D036); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_72 = L_71; NullCheck(L_72); ArrayElementTypeCheck (L_72, _stringLiteralBEFDE54A108CB9DC6AD6E0EBD28720531A6855E6); (L_72)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteralBEFDE54A108CB9DC6AD6E0EBD28720531A6855E6); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_73 = L_72; NullCheck(L_73); ArrayElementTypeCheck (L_73, _stringLiteralC94F479833C5D401CFFDFA7AFE6C9C2D56448019); (L_73)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteralC94F479833C5D401CFFDFA7AFE6C9C2D56448019); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_74 = L_73; NullCheck(L_74); ArrayElementTypeCheck (L_74, _stringLiteral6D90DF3BE4D0D43B08E3FB47F55E09B5B06DAE3E); (L_74)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteral6D90DF3BE4D0D43B08E3FB47F55E09B5B06DAE3E); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_75 = L_74; NullCheck(L_75); ArrayElementTypeCheck (L_75, _stringLiteralB737558468D75CA55B2D9185C0B55EACAEA627A0); (L_75)->SetAt(static_cast<il2cpp_array_size_t>(6), (String_t*)_stringLiteralB737558468D75CA55B2D9185C0B55EACAEA627A0); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_76 = L_75; NullCheck(L_76); ArrayElementTypeCheck (L_76, _stringLiteral75629AF51D7C7F120DBB5B462013BFA48AF33285); (L_76)->SetAt(static_cast<il2cpp_array_size_t>(7), (String_t*)_stringLiteral75629AF51D7C7F120DBB5B462013BFA48AF33285); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_77 = L_76; NullCheck(L_77); ArrayElementTypeCheck (L_77, _stringLiteralFDD289E370BD5CC575F48A16947D05C144EC474B); (L_77)->SetAt(static_cast<il2cpp_array_size_t>(8), (String_t*)_stringLiteralFDD289E370BD5CC575F48A16947D05C144EC474B); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_78 = L_77; NullCheck(L_78); ArrayElementTypeCheck (L_78, _stringLiteral51327AEF9866E85EF5B5B2294A28494D2715AE59); (L_78)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)9)), (String_t*)_stringLiteral51327AEF9866E85EF5B5B2294A28494D2715AE59); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_79 = L_78; NullCheck(L_79); ArrayElementTypeCheck (L_79, _stringLiteralBB9BFEFD5391F52BE54267E2A938A126661B0FF7); (L_79)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)10)), (String_t*)_stringLiteralBB9BFEFD5391F52BE54267E2A938A126661B0FF7); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_80 = L_79; NullCheck(L_80); ArrayElementTypeCheck (L_80, _stringLiteral997F59BC99B2A57280179C3CE09BA8AB57CBDF44); (L_80)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)11)), (String_t*)_stringLiteral997F59BC99B2A57280179C3CE09BA8AB57CBDF44); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_81 = L_80; String_t* L_82 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); NullCheck(L_81); ArrayElementTypeCheck (L_81, L_82); (L_81)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)12)), (String_t*)L_82); NullCheck(L_67); L_67->set_saAbbrevMonthNames_13(L_81); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_83 = V_0; CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_84 = V_0; NullCheck(L_84); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_85 = L_84->get_saMonthNames_12(); NullCheck(L_83); L_83->set_saMonthGenitiveNames_14(L_85); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_86 = V_0; CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_87 = V_0; NullCheck(L_87); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_88 = L_87->get_saAbbrevMonthNames_13(); NullCheck(L_86); L_86->set_saAbbrevMonthGenitiveNames_15(L_88); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_89 = V_0; CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_90 = V_0; NullCheck(L_90); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_91 = L_90->get_saMonthNames_12(); NullCheck(L_89); L_89->set_saLeapYearMonthNames_16(L_91); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_92 = V_0; NullCheck(L_92); L_92->set_bUseUserOverrides_19((bool)0); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_93 = V_0; ((CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_StaticFields*)il2cpp_codegen_static_fields_for(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var))->set_Invariant_20(L_93); return; } } // System.Void System.Globalization.CalendarData::.ctor(System.String,System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CalendarData__ctor_m1E7179936DAFF53B6F9E65DDF48E3494C71FE79B (CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * __this, String_t* ___localeName0, int32_t ___calendarId1, bool ___bUseUserOverrides2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CalendarData__ctor_m1E7179936DAFF53B6F9E65DDF48E3494C71FE79B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { __this->set_iTwoDigitYearMax_17(((int32_t)2029)); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); bool L_0 = ___bUseUserOverrides2; __this->set_bUseUserOverrides_19(L_0); String_t* L_1 = ___localeName0; int32_t L_2 = ___calendarId1; IL2CPP_RUNTIME_CLASS_INIT(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var); bool L_3 = CalendarData_nativeGetCalendarData_mEE692F005182F8E6043F10AF19937603C7CD4C26(__this, L_1, L_2, /*hidden argument*/NULL); if (L_3) { goto IL_0158; } } { String_t* L_4 = __this->get_sNativeName_1(); if (L_4) { goto IL_0038; } } { String_t* L_5 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); __this->set_sNativeName_1(L_5); } IL_0038: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_6 = __this->get_saShortDates_2(); if (L_6) { goto IL_0050; } } { IL2CPP_RUNTIME_CLASS_INIT(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_7 = ((CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_StaticFields*)il2cpp_codegen_static_fields_for(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var))->get_Invariant_20(); NullCheck(L_7); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_8 = L_7->get_saShortDates_2(); __this->set_saShortDates_2(L_8); } IL_0050: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_9 = __this->get_saYearMonths_3(); if (L_9) { goto IL_0068; } } { IL2CPP_RUNTIME_CLASS_INIT(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_10 = ((CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_StaticFields*)il2cpp_codegen_static_fields_for(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var))->get_Invariant_20(); NullCheck(L_10); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_11 = L_10->get_saYearMonths_3(); __this->set_saYearMonths_3(L_11); } IL_0068: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_12 = __this->get_saLongDates_4(); if (L_12) { goto IL_0080; } } { IL2CPP_RUNTIME_CLASS_INIT(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_13 = ((CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_StaticFields*)il2cpp_codegen_static_fields_for(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var))->get_Invariant_20(); NullCheck(L_13); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_14 = L_13->get_saLongDates_4(); __this->set_saLongDates_4(L_14); } IL_0080: { String_t* L_15 = __this->get_sMonthDay_5(); if (L_15) { goto IL_0098; } } { IL2CPP_RUNTIME_CLASS_INIT(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_16 = ((CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_StaticFields*)il2cpp_codegen_static_fields_for(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var))->get_Invariant_20(); NullCheck(L_16); String_t* L_17 = L_16->get_sMonthDay_5(); __this->set_sMonthDay_5(L_17); } IL_0098: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_18 = __this->get_saEraNames_6(); if (L_18) { goto IL_00b0; } } { IL2CPP_RUNTIME_CLASS_INIT(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_19 = ((CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_StaticFields*)il2cpp_codegen_static_fields_for(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var))->get_Invariant_20(); NullCheck(L_19); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_20 = L_19->get_saEraNames_6(); __this->set_saEraNames_6(L_20); } IL_00b0: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_21 = __this->get_saAbbrevEraNames_7(); if (L_21) { goto IL_00c8; } } { IL2CPP_RUNTIME_CLASS_INIT(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_22 = ((CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_StaticFields*)il2cpp_codegen_static_fields_for(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var))->get_Invariant_20(); NullCheck(L_22); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_23 = L_22->get_saAbbrevEraNames_7(); __this->set_saAbbrevEraNames_7(L_23); } IL_00c8: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_24 = __this->get_saAbbrevEnglishEraNames_8(); if (L_24) { goto IL_00e0; } } { IL2CPP_RUNTIME_CLASS_INIT(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_25 = ((CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_StaticFields*)il2cpp_codegen_static_fields_for(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var))->get_Invariant_20(); NullCheck(L_25); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_26 = L_25->get_saAbbrevEnglishEraNames_8(); __this->set_saAbbrevEnglishEraNames_8(L_26); } IL_00e0: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_27 = __this->get_saDayNames_9(); if (L_27) { goto IL_00f8; } } { IL2CPP_RUNTIME_CLASS_INIT(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_28 = ((CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_StaticFields*)il2cpp_codegen_static_fields_for(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var))->get_Invariant_20(); NullCheck(L_28); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_29 = L_28->get_saDayNames_9(); __this->set_saDayNames_9(L_29); } IL_00f8: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_30 = __this->get_saAbbrevDayNames_10(); if (L_30) { goto IL_0110; } } { IL2CPP_RUNTIME_CLASS_INIT(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_31 = ((CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_StaticFields*)il2cpp_codegen_static_fields_for(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var))->get_Invariant_20(); NullCheck(L_31); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_32 = L_31->get_saAbbrevDayNames_10(); __this->set_saAbbrevDayNames_10(L_32); } IL_0110: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_33 = __this->get_saSuperShortDayNames_11(); if (L_33) { goto IL_0128; } } { IL2CPP_RUNTIME_CLASS_INIT(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_34 = ((CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_StaticFields*)il2cpp_codegen_static_fields_for(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var))->get_Invariant_20(); NullCheck(L_34); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_35 = L_34->get_saSuperShortDayNames_11(); __this->set_saSuperShortDayNames_11(L_35); } IL_0128: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_36 = __this->get_saMonthNames_12(); if (L_36) { goto IL_0140; } } { IL2CPP_RUNTIME_CLASS_INIT(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_37 = ((CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_StaticFields*)il2cpp_codegen_static_fields_for(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var))->get_Invariant_20(); NullCheck(L_37); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_38 = L_37->get_saMonthNames_12(); __this->set_saMonthNames_12(L_38); } IL_0140: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_39 = __this->get_saAbbrevMonthNames_13(); if (L_39) { goto IL_0158; } } { IL2CPP_RUNTIME_CLASS_INIT(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_40 = ((CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_StaticFields*)il2cpp_codegen_static_fields_for(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var))->get_Invariant_20(); NullCheck(L_40); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_41 = L_40->get_saAbbrevMonthNames_13(); __this->set_saAbbrevMonthNames_13(L_41); } IL_0158: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_42 = __this->get_saShortDates_2(); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_43 = CultureData_ReescapeWin32Strings_mD2273680DA4E34259B37E3C499E41CB72FBE9DCF(L_42, /*hidden argument*/NULL); __this->set_saShortDates_2(L_43); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_44 = __this->get_saLongDates_4(); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_45 = CultureData_ReescapeWin32Strings_mD2273680DA4E34259B37E3C499E41CB72FBE9DCF(L_44, /*hidden argument*/NULL); __this->set_saLongDates_4(L_45); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_46 = __this->get_saYearMonths_3(); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_47 = CultureData_ReescapeWin32Strings_mD2273680DA4E34259B37E3C499E41CB72FBE9DCF(L_46, /*hidden argument*/NULL); __this->set_saYearMonths_3(L_47); String_t* L_48 = __this->get_sMonthDay_5(); String_t* L_49 = CultureData_ReescapeWin32String_mB6D37FC2C76F8AD4A1ECD365C36F129309FF7ED0(L_48, /*hidden argument*/NULL); __this->set_sMonthDay_5(L_49); int32_t L_50 = ___calendarId1; if ((!(((uint32_t)(((int32_t)((uint16_t)L_50)))) == ((uint32_t)4)))) { goto IL_01c0; } } { IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); bool L_51 = ((CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields*)il2cpp_codegen_static_fields_for(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var))->get_IsTaiwanSku_37(); if (!L_51) { goto IL_01b5; } } { __this->set_sNativeName_1(_stringLiteralDAE50AB6C9EE2D4025C53458EFFED3E935ECDF57); goto IL_01c0; } IL_01b5: { String_t* L_52 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); __this->set_sNativeName_1(L_52); } IL_01c0: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_53 = __this->get_saMonthGenitiveNames_14(); if (!L_53) { goto IL_01d7; } } { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_54 = __this->get_saMonthGenitiveNames_14(); NullCheck(L_54); int32_t L_55 = 0; String_t* L_56 = (L_54)->GetAt(static_cast<il2cpp_array_size_t>(L_55)); bool L_57 = String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229(L_56, /*hidden argument*/NULL); if (!L_57) { goto IL_01e3; } } IL_01d7: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_58 = __this->get_saMonthNames_12(); __this->set_saMonthGenitiveNames_14(L_58); } IL_01e3: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_59 = __this->get_saAbbrevMonthGenitiveNames_15(); if (!L_59) { goto IL_01fa; } } { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_60 = __this->get_saAbbrevMonthGenitiveNames_15(); NullCheck(L_60); int32_t L_61 = 0; String_t* L_62 = (L_60)->GetAt(static_cast<il2cpp_array_size_t>(L_61)); bool L_63 = String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229(L_62, /*hidden argument*/NULL); if (!L_63) { goto IL_0206; } } IL_01fa: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_64 = __this->get_saAbbrevMonthNames_13(); __this->set_saAbbrevMonthGenitiveNames_15(L_64); } IL_0206: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_65 = __this->get_saLeapYearMonthNames_16(); if (!L_65) { goto IL_021d; } } { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_66 = __this->get_saLeapYearMonthNames_16(); NullCheck(L_66); int32_t L_67 = 0; String_t* L_68 = (L_66)->GetAt(static_cast<il2cpp_array_size_t>(L_67)); bool L_69 = String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229(L_68, /*hidden argument*/NULL); if (!L_69) { goto IL_0229; } } IL_021d: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_70 = __this->get_saMonthNames_12(); __this->set_saLeapYearMonthNames_16(L_70); } IL_0229: { String_t* L_71 = ___localeName0; int32_t L_72 = ___calendarId1; CalendarData_InitializeEraNames_m46E606CC6E045A80DDFAD7CF084AE8821AA7F4D7(__this, L_71, L_72, /*hidden argument*/NULL); String_t* L_73 = ___localeName0; int32_t L_74 = ___calendarId1; CalendarData_InitializeAbbreviatedEraNames_m800E5461A6FA3B0BDA0921C5DCA722C15DBE428B(__this, L_73, L_74, /*hidden argument*/NULL); int32_t L_75 = ___calendarId1; if ((!(((uint32_t)L_75) == ((uint32_t)3)))) { goto IL_024a; } } { IL2CPP_RUNTIME_CLASS_INIT(JapaneseCalendar_tF2E975159C0ADA226D222CE92A068FB01A800E92_il2cpp_TypeInfo_var); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_76 = JapaneseCalendar_EnglishEraNames_m1D64240112FDE6C93450D1D136DD0B33FAFC78E1(/*hidden argument*/NULL); __this->set_saAbbrevEnglishEraNames_8(L_76); goto IL_025e; } IL_024a: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_77 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)1); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_78 = L_77; NullCheck(L_78); ArrayElementTypeCheck (L_78, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709); (L_78)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709); __this->set_saAbbrevEnglishEraNames_8(L_78); } IL_025e: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_79 = __this->get_saEraNames_6(); NullCheck(L_79); __this->set_iCurrentEra_18((((int32_t)((int32_t)(((RuntimeArray*)L_79)->max_length))))); return; } } // System.Void System.Globalization.CalendarData::InitializeEraNames(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CalendarData_InitializeEraNames_m46E606CC6E045A80DDFAD7CF084AE8821AA7F4D7 (CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * __this, String_t* ___localeName0, int32_t ___calendarId1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CalendarData_InitializeEraNames_m46E606CC6E045A80DDFAD7CF084AE8821AA7F4D7_MetadataUsageId); s_Il2CppMethodInitialized = true; } uint16_t V_0 = 0; { int32_t L_0 = ___calendarId1; V_0 = (((int32_t)((uint16_t)L_0))); uint16_t L_1 = V_0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)1))) { case 0: { goto IL_006c; } case 1: { goto IL_00a4; } case 2: { goto IL_018a; } case 3: { goto IL_012f; } case 4: { goto IL_0160; } case 5: { goto IL_00ce; } case 6: { goto IL_0175; } case 7: { goto IL_00b9; } case 8: { goto IL_011a; } case 9: { goto IL_0105; } case 10: { goto IL_0105; } case 11: { goto IL_0105; } case 12: { goto IL_00a4; } case 13: { goto IL_018a; } case 14: { goto IL_01cb; } case 15: { goto IL_01cb; } case 16: { goto IL_01cb; } case 17: { goto IL_01cb; } case 18: { goto IL_01cb; } case 19: { goto IL_01cb; } case 20: { goto IL_01cb; } case 21: { goto IL_0196; } case 22: { goto IL_00ce; } } } { goto IL_01cb; } IL_006c: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_2 = __this->get_saEraNames_6(); if (!L_2) { goto IL_008f; } } { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_3 = __this->get_saEraNames_6(); NullCheck(L_3); if (!(((RuntimeArray*)L_3)->max_length)) { goto IL_008f; } } { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_4 = __this->get_saEraNames_6(); NullCheck(L_4); int32_t L_5 = 0; String_t* L_6 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); bool L_7 = String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229(L_6, /*hidden argument*/NULL); if (!L_7) { goto IL_01db; } } IL_008f: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_8 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)1); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_9 = L_8; NullCheck(L_9); ArrayElementTypeCheck (L_9, _stringLiteral6BCCC101797076DA3F2A8139516C93E3DA1E5603); (L_9)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral6BCCC101797076DA3F2A8139516C93E3DA1E5603); __this->set_saEraNames_6(L_9); return; } IL_00a4: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_10 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)1); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_11 = L_10; NullCheck(L_11); ArrayElementTypeCheck (L_11, _stringLiteral6BCCC101797076DA3F2A8139516C93E3DA1E5603); (L_11)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral6BCCC101797076DA3F2A8139516C93E3DA1E5603); __this->set_saEraNames_6(L_11); return; } IL_00b9: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_12 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)1); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_13 = L_12; NullCheck(L_13); ArrayElementTypeCheck (L_13, _stringLiteralD6F333EBFA54232DEAF561F48A1FE48509FEAE3C); (L_13)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralD6F333EBFA54232DEAF561F48A1FE48509FEAE3C); __this->set_saEraNames_6(L_13); return; } IL_00ce: { String_t* L_14 = ___localeName0; bool L_15 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_14, _stringLiteralB37C40A058E1BE76E181791B84BF21D6FEBAF035, /*hidden argument*/NULL); if (!L_15) { goto IL_00f0; } } { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_16 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)1); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_17 = L_16; NullCheck(L_17); ArrayElementTypeCheck (L_17, _stringLiteral26FFC6C86CF4C6D53910F7890B1D0641867464F9); (L_17)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral26FFC6C86CF4C6D53910F7890B1D0641867464F9); __this->set_saEraNames_6(L_17); return; } IL_00f0: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_18 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)1); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_19 = L_18; NullCheck(L_19); ArrayElementTypeCheck (L_19, _stringLiteral15C3735B75EA81656658DC498FA5D2B99E4B7578); (L_19)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral15C3735B75EA81656658DC498FA5D2B99E4B7578); __this->set_saEraNames_6(L_19); return; } IL_0105: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_20 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)1); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_21 = L_20; NullCheck(L_21); ArrayElementTypeCheck (L_21, _stringLiteralD8FE6F076D7909FF7107330CBD7235F21AF02801); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralD8FE6F076D7909FF7107330CBD7235F21AF02801); __this->set_saEraNames_6(L_21); return; } IL_011a: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_22 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)1); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_23 = L_22; NullCheck(L_23); ArrayElementTypeCheck (L_23, _stringLiteralE0B41462A3EF7CD8B8DB500826656759E25CC94E); (L_23)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralE0B41462A3EF7CD8B8DB500826656759E25CC94E); __this->set_saEraNames_6(L_23); return; } IL_012f: { IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); bool L_24 = ((CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields*)il2cpp_codegen_static_fields_for(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var))->get_IsTaiwanSku_37(); if (!L_24) { goto IL_014b; } } { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_25 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)1); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_26 = L_25; NullCheck(L_26); ArrayElementTypeCheck (L_26, _stringLiteral3D96CABB84A7EDD6E501F562119B3A2D8672333B); (L_26)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral3D96CABB84A7EDD6E501F562119B3A2D8672333B); __this->set_saEraNames_6(L_26); return; } IL_014b: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_27 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)1); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_28 = L_27; String_t* L_29 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); NullCheck(L_28); ArrayElementTypeCheck (L_28, L_29); (L_28)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_29); __this->set_saEraNames_6(L_28); return; } IL_0160: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_30 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)1); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_31 = L_30; NullCheck(L_31); ArrayElementTypeCheck (L_31, _stringLiteralD42942B365A72FB3F39CD23DAF621580F498763E); (L_31)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralD42942B365A72FB3F39CD23DAF621580F498763E); __this->set_saEraNames_6(L_31); return; } IL_0175: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_32 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)1); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_33 = L_32; NullCheck(L_33); ArrayElementTypeCheck (L_33, _stringLiteral1D3E9162814365CA1190011A3093E38C1EF85CA0); (L_33)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral1D3E9162814365CA1190011A3093E38C1EF85CA0); __this->set_saEraNames_6(L_33); return; } IL_018a: { IL2CPP_RUNTIME_CLASS_INIT(JapaneseCalendar_tF2E975159C0ADA226D222CE92A068FB01A800E92_il2cpp_TypeInfo_var); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_34 = JapaneseCalendar_EraNames_mF5A93DD93CB95257E3245D333B117FD089EC88D9(/*hidden argument*/NULL); __this->set_saEraNames_6(L_34); return; } IL_0196: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_35 = __this->get_saEraNames_6(); if (!L_35) { goto IL_01b6; } } { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_36 = __this->get_saEraNames_6(); NullCheck(L_36); if (!(((RuntimeArray*)L_36)->max_length)) { goto IL_01b6; } } { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_37 = __this->get_saEraNames_6(); NullCheck(L_37); int32_t L_38 = 0; String_t* L_39 = (L_37)->GetAt(static_cast<il2cpp_array_size_t>(L_38)); bool L_40 = String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229(L_39, /*hidden argument*/NULL); if (!L_40) { goto IL_01db; } } IL_01b6: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_41 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)1); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_42 = L_41; NullCheck(L_42); ArrayElementTypeCheck (L_42, _stringLiteralA422FAD59698B540506986BD496D03E151AFC0A8); (L_42)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralA422FAD59698B540506986BD496D03E151AFC0A8); __this->set_saEraNames_6(L_42); return; } IL_01cb: { IL2CPP_RUNTIME_CLASS_INIT(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_43 = ((CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_StaticFields*)il2cpp_codegen_static_fields_for(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var))->get_Invariant_20(); NullCheck(L_43); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_44 = L_43->get_saEraNames_6(); __this->set_saEraNames_6(L_44); } IL_01db: { return; } } // System.Void System.Globalization.CalendarData::InitializeAbbreviatedEraNames(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CalendarData_InitializeAbbreviatedEraNames_m800E5461A6FA3B0BDA0921C5DCA722C15DBE428B (CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * __this, String_t* ___localeName0, int32_t ___calendarId1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CalendarData_InitializeAbbreviatedEraNames_m800E5461A6FA3B0BDA0921C5DCA722C15DBE428B_MetadataUsageId); s_Il2CppMethodInitialized = true; } uint16_t V_0 = 0; { int32_t L_0 = ___calendarId1; V_0 = (((int32_t)((uint16_t)L_0))); uint16_t L_1 = V_0; if ((!(((uint32_t)L_1) <= ((uint32_t)((int32_t)13))))) { goto IL_0032; } } { uint16_t L_2 = V_0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)1))) { case 0: { goto IL_0049; } case 1: { goto IL_0081; } case 2: { goto IL_0096; } case 3: { goto IL_00d9; } case 4: { goto IL_014b; } case 5: { goto IL_00a2; } } } { uint16_t L_3 = V_0; if ((((int32_t)L_3) == ((int32_t)((int32_t)13)))) { goto IL_0081; } } { goto IL_014b; } IL_0032: { uint16_t L_4 = V_0; if ((((int32_t)L_4) == ((int32_t)((int32_t)14)))) { goto IL_0096; } } { uint16_t L_5 = V_0; if ((((int32_t)L_5) == ((int32_t)((int32_t)22)))) { goto IL_011e; } } { uint16_t L_6 = V_0; if ((((int32_t)L_6) == ((int32_t)((int32_t)23)))) { goto IL_00a2; } } { goto IL_014b; } IL_0049: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_7 = __this->get_saAbbrevEraNames_7(); if (!L_7) { goto IL_006c; } } { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_8 = __this->get_saAbbrevEraNames_7(); NullCheck(L_8); if (!(((RuntimeArray*)L_8)->max_length)) { goto IL_006c; } } { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_9 = __this->get_saAbbrevEraNames_7(); NullCheck(L_9); int32_t L_10 = 0; String_t* L_11 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); bool L_12 = String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229(L_11, /*hidden argument*/NULL); if (!L_12) { goto IL_0157; } } IL_006c: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_13 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)1); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_14 = L_13; NullCheck(L_14); ArrayElementTypeCheck (L_14, _stringLiteral6D95C1847219C633950F8F1CECA9761315ABFC19); (L_14)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral6D95C1847219C633950F8F1CECA9761315ABFC19); __this->set_saAbbrevEraNames_7(L_14); return; } IL_0081: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_15 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)1); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_16 = L_15; NullCheck(L_16); ArrayElementTypeCheck (L_16, _stringLiteral6D95C1847219C633950F8F1CECA9761315ABFC19); (L_16)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral6D95C1847219C633950F8F1CECA9761315ABFC19); __this->set_saAbbrevEraNames_7(L_16); return; } IL_0096: { IL2CPP_RUNTIME_CLASS_INIT(JapaneseCalendar_tF2E975159C0ADA226D222CE92A068FB01A800E92_il2cpp_TypeInfo_var); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_17 = JapaneseCalendar_AbbrevEraNames_m8F768E0E6C938DBB7657E0EE388A6EA4CCC4AD66(/*hidden argument*/NULL); __this->set_saAbbrevEraNames_7(L_17); return; } IL_00a2: { String_t* L_18 = ___localeName0; bool L_19 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_18, _stringLiteralB37C40A058E1BE76E181791B84BF21D6FEBAF035, /*hidden argument*/NULL); if (!L_19) { goto IL_00c4; } } { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_20 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)1); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_21 = L_20; NullCheck(L_21); ArrayElementTypeCheck (L_21, _stringLiteralC0DC0AC3D1A9DF8FE9622B770DE1EA844F9F5CD2); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralC0DC0AC3D1A9DF8FE9622B770DE1EA844F9F5CD2); __this->set_saAbbrevEraNames_7(L_21); return; } IL_00c4: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_22 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)1); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_23 = L_22; NullCheck(L_23); ArrayElementTypeCheck (L_23, _stringLiteral41961E065ED2F6443B0078BD9AADFA75F0CEB0E6); (L_23)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral41961E065ED2F6443B0078BD9AADFA75F0CEB0E6); __this->set_saAbbrevEraNames_7(L_23); return; } IL_00d9: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_24 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)1); __this->set_saAbbrevEraNames_7(L_24); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_25 = __this->get_saEraNames_6(); NullCheck(L_25); int32_t L_26 = 0; String_t* L_27 = (L_25)->GetAt(static_cast<il2cpp_array_size_t>(L_26)); NullCheck(L_27); int32_t L_28 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_27, /*hidden argument*/NULL); if ((!(((uint32_t)L_28) == ((uint32_t)4)))) { goto IL_010d; } } { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_29 = __this->get_saAbbrevEraNames_7(); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_30 = __this->get_saEraNames_6(); NullCheck(L_30); int32_t L_31 = 0; String_t* L_32 = (L_30)->GetAt(static_cast<il2cpp_array_size_t>(L_31)); NullCheck(L_32); String_t* L_33 = String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB(L_32, 2, 2, /*hidden argument*/NULL); NullCheck(L_29); ArrayElementTypeCheck (L_29, L_33); (L_29)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_33); return; } IL_010d: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_34 = __this->get_saAbbrevEraNames_7(); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_35 = __this->get_saEraNames_6(); NullCheck(L_35); int32_t L_36 = 0; String_t* L_37 = (L_35)->GetAt(static_cast<il2cpp_array_size_t>(L_36)); NullCheck(L_34); ArrayElementTypeCheck (L_34, L_37); (L_34)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_37); return; } IL_011e: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_38 = __this->get_saAbbrevEraNames_7(); if (!L_38) { goto IL_013e; } } { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_39 = __this->get_saAbbrevEraNames_7(); NullCheck(L_39); if (!(((RuntimeArray*)L_39)->max_length)) { goto IL_013e; } } { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_40 = __this->get_saAbbrevEraNames_7(); NullCheck(L_40); int32_t L_41 = 0; String_t* L_42 = (L_40)->GetAt(static_cast<il2cpp_array_size_t>(L_41)); bool L_43 = String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229(L_42, /*hidden argument*/NULL); if (!L_43) { goto IL_0157; } } IL_013e: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_44 = __this->get_saEraNames_6(); __this->set_saAbbrevEraNames_7(L_44); return; } IL_014b: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_45 = __this->get_saEraNames_6(); __this->set_saAbbrevEraNames_7(L_45); } IL_0157: { return; } } // System.Globalization.CalendarData System.Globalization.CalendarData::GetCalendarData(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * CalendarData_GetCalendarData_mDFCD051C21909262E525CC9E75728C83BD0E1904 (int32_t ___calendarId0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CalendarData_GetCalendarData_mDFCD051C21909262E525CC9E75728C83BD0E1904_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___calendarId0; IL2CPP_RUNTIME_CLASS_INIT(CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E_il2cpp_TypeInfo_var); String_t* L_1 = CalendarData_CalendarIdToCultureName_mA95C989E84F938AF02F385133E96A3BE054C129B(L_0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_2 = CultureInfo_GetCultureInfo_mC35FFFC4C2C9F4A4D5BC19E483464978E25E7350(L_1, /*hidden argument*/NULL); NullCheck(L_2); CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * L_3 = L_2->get_m_cultureData_28(); int32_t L_4 = ___calendarId0; NullCheck(L_3); CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_5 = CultureData_GetCalendar_mB4F2D5CDF5ACA790475C2BDC168290047AEB6DF5(L_3, L_4, /*hidden argument*/NULL); return L_5; } } // System.String System.Globalization.CalendarData::CalendarIdToCultureName(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CalendarData_CalendarIdToCultureName_mA95C989E84F938AF02F385133E96A3BE054C129B (int32_t ___calendarId0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CalendarData_CalendarIdToCultureName_mA95C989E84F938AF02F385133E96A3BE054C129B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___calendarId0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)2))) { case 0: { goto IL_0062; } case 1: { goto IL_0068; } case 2: { goto IL_006e; } case 3: { goto IL_0074; } case 4: { goto IL_007a; } case 5: { goto IL_0080; } case 6: { goto IL_0086; } case 7: { goto IL_008c; } case 8: { goto IL_007a; } case 9: { goto IL_0092; } case 10: { goto IL_0092; } case 11: { goto IL_0098; } case 12: { goto IL_0098; } case 13: { goto IL_0098; } case 14: { goto IL_0098; } case 15: { goto IL_0098; } case 16: { goto IL_0098; } case 17: { goto IL_0098; } case 18: { goto IL_0098; } case 19: { goto IL_0098; } case 20: { goto IL_0098; } case 21: { goto IL_007a; } } } { goto IL_0098; } IL_0062: { return _stringLiteral1F4876FD676D03AC09FB1856159B448B0D2A55AE; } IL_0068: { return _stringLiteralC525149EB1C2E0B57FE563AD7B4D9E45A646784F; } IL_006e: { return _stringLiteralFB157325FE225946421F77EC1F8BF9F7F98E81B9; } IL_0074: { return _stringLiteral1EBE2C76316035130524FC185DA3EF43943BABBC; } IL_007a: { return _stringLiteralE758F73AF56E73D52D2255C99EF438305E8533BB; } IL_0080: { return _stringLiteralC700DC1C6745C39929C4B490A50F1EF4B6DE67F1; } IL_0086: { return _stringLiteral5E5C4B3CD84D07CDDD5F796A0ED208357AE2B291; } IL_008c: { return _stringLiteral157562C9A22C3136F032CA6820849E34DFEE3370; } IL_0092: { return _stringLiteralB07EE427B13FDA8C265DAACE035CBEF440CB3F7B; } IL_0098: { return _stringLiteral5A7BD4149D0D34D3EC86181CDAB1CB8DD3F441D7; } } // System.Int32 System.Globalization.CalendarData::nativeGetTwoDigitYearMax(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CalendarData_nativeGetTwoDigitYearMax_m5ECABEEAB85DF5A27EC509A90929CC193CACA2BB (int32_t ___calID0, const RuntimeMethod* method) { { return (-1); } } // System.Boolean System.Globalization.CalendarData::nativeGetCalendarData(System.Globalization.CalendarData,System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CalendarData_nativeGetCalendarData_mEE692F005182F8E6043F10AF19937603C7CD4C26 (CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * ___data0, String_t* ___localeName1, int32_t ___calendarId2, const RuntimeMethod* method) { { CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * L_0 = ___data0; String_t* L_1 = ___localeName1; NullCheck(L_1); String_t* L_2 = String_ToLowerInvariant_m197BD65B6582DC546FF1BC398161EEFA708F799E(L_1, /*hidden argument*/NULL); int32_t L_3 = ___calendarId2; NullCheck(L_0); bool L_4 = CalendarData_fill_calendar_data_mF4AB4B24E8FB38D2257AED30A15B690F4B9C49E6(L_0, L_2, L_3, /*hidden argument*/NULL); return L_4; } } // System.Boolean System.Globalization.CalendarData::fill_calendar_data(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CalendarData_fill_calendar_data_mF4AB4B24E8FB38D2257AED30A15B690F4B9C49E6 (CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E * __this, String_t* ___localeName0, int32_t ___datetimeIndex1, const RuntimeMethod* method) { typedef bool (*CalendarData_fill_calendar_data_mF4AB4B24E8FB38D2257AED30A15B690F4B9C49E6_ftn) (CalendarData_t1D4C55E2ECDDE4EB7B69C75D0E28AA0AF9952B3E *, String_t*, int32_t); using namespace il2cpp::icalls; return ((CalendarData_fill_calendar_data_mF4AB4B24E8FB38D2257AED30A15B690F4B9C49E6_ftn)mscorlib::System::Globalization::CalendarData::fill_calendar_data) (__this, ___localeName0, ___datetimeIndex1); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Int32 System.Globalization.CharUnicodeInfo::InternalConvertToUtf32(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CharUnicodeInfo_InternalConvertToUtf32_m78237099749C0BFC0E5345D2B18F39561E66CE57 (String_t* ___s0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CharUnicodeInfo_InternalConvertToUtf32_m78237099749C0BFC0E5345D2B18F39561E66CE57_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t G_B3_0 = 0; { String_t* L_0 = ___s0; Debug_Assert_m634F0CA58C10F7A86622FAD0D756879FA301A80D((bool)((!(((RuntimeObject*)(String_t*)L_0) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0), _stringLiteral63421775BF8EBC09027CFFC40F85F93CF0EC57EA, /*hidden argument*/NULL); int32_t L_1 = ___index1; if ((((int32_t)L_1) < ((int32_t)0))) { goto IL_001d; } } { int32_t L_2 = ___index1; String_t* L_3 = ___s0; NullCheck(L_3); int32_t L_4 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_3, /*hidden argument*/NULL); G_B3_0 = ((((int32_t)L_2) < ((int32_t)L_4))? 1 : 0); goto IL_001e; } IL_001d: { G_B3_0 = 0; } IL_001e: { Debug_Assert_m634F0CA58C10F7A86622FAD0D756879FA301A80D((bool)G_B3_0, _stringLiteralDDECD1B789B8A6D1B22C1C2B6E877A82A395F718, /*hidden argument*/NULL); int32_t L_5 = ___index1; String_t* L_6 = ___s0; NullCheck(L_6); int32_t L_7 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_6, /*hidden argument*/NULL); if ((((int32_t)L_5) >= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)1))))) { goto IL_0079; } } { String_t* L_8 = ___s0; int32_t L_9 = ___index1; NullCheck(L_8); Il2CppChar L_10 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_8, L_9, /*hidden argument*/NULL); V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)((int32_t)55296))); int32_t L_11 = V_0; if ((((int32_t)L_11) < ((int32_t)0))) { goto IL_0079; } } { int32_t L_12 = V_0; if ((((int32_t)L_12) > ((int32_t)((int32_t)1023)))) { goto IL_0079; } } { String_t* L_13 = ___s0; int32_t L_14 = ___index1; NullCheck(L_13); Il2CppChar L_15 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_13, ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1)), /*hidden argument*/NULL); V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)((int32_t)56320))); int32_t L_16 = V_1; if ((((int32_t)L_16) < ((int32_t)0))) { goto IL_0079; } } { int32_t L_17 = V_1; if ((((int32_t)L_17) > ((int32_t)((int32_t)1023)))) { goto IL_0079; } } { int32_t L_18 = V_0; int32_t L_19 = V_1; return ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_18, (int32_t)((int32_t)1024))), (int32_t)L_19)), (int32_t)((int32_t)65536))); } IL_0079: { String_t* L_20 = ___s0; int32_t L_21 = ___index1; NullCheck(L_20); Il2CppChar L_22 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_20, L_21, /*hidden argument*/NULL); return L_22; } } // System.Boolean System.Globalization.CharUnicodeInfo::IsWhiteSpace(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CharUnicodeInfo_IsWhiteSpace_m746D142522BF05468B06174B025F9049EAE2A780 (Il2CppChar ___c0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CharUnicodeInfo_IsWhiteSpace_m746D142522BF05468B06174B025F9049EAE2A780_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { Il2CppChar L_0 = ___c0; IL2CPP_RUNTIME_CLASS_INIT(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var); int32_t L_1 = CharUnicodeInfo_GetUnicodeCategory_mC5602CC632FDD7E8690D8DEF9A5F76A49A6F4C4C(L_0, /*hidden argument*/NULL); V_0 = L_1; int32_t L_2 = V_0; if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)((int32_t)11)))) <= ((uint32_t)2)))) { goto IL_0010; } } { return (bool)1; } IL_0010: { return (bool)0; } } // System.Globalization.UnicodeCategory System.Globalization.CharUnicodeInfo::GetUnicodeCategory(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CharUnicodeInfo_GetUnicodeCategory_mC5602CC632FDD7E8690D8DEF9A5F76A49A6F4C4C (Il2CppChar ___ch0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CharUnicodeInfo_GetUnicodeCategory_mC5602CC632FDD7E8690D8DEF9A5F76A49A6F4C4C_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___ch0; IL2CPP_RUNTIME_CLASS_INIT(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var); int32_t L_1 = CharUnicodeInfo_InternalGetUnicodeCategory_m2F385E842FECF592E5F45027976E6126084657B9(L_0, /*hidden argument*/NULL); return L_1; } } // System.Globalization.UnicodeCategory System.Globalization.CharUnicodeInfo::InternalGetUnicodeCategory(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CharUnicodeInfo_InternalGetUnicodeCategory_m2F385E842FECF592E5F45027976E6126084657B9 (int32_t ___ch0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CharUnicodeInfo_InternalGetUnicodeCategory_m2F385E842FECF592E5F45027976E6126084657B9_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___ch0; IL2CPP_RUNTIME_CLASS_INIT(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var); uint8_t L_1 = CharUnicodeInfo_InternalGetCategoryValue_m70C922D12420DD22399D84B5CA900F80FD0F30FE(L_0, 0, /*hidden argument*/NULL); return (int32_t)(L_1); } } // System.Byte System.Globalization.CharUnicodeInfo::InternalGetCategoryValue(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t CharUnicodeInfo_InternalGetCategoryValue_m70C922D12420DD22399D84B5CA900F80FD0F30FE (int32_t ___ch0, int32_t ___offset1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CharUnicodeInfo_InternalGetCategoryValue_m70C922D12420DD22399D84B5CA900F80FD0F30FE_MetadataUsageId); s_Il2CppMethodInitialized = true; } uint16_t V_0 = 0; uint16_t* V_1 = NULL; uint8_t* V_2 = NULL; uint8_t V_3 = 0x0; int32_t G_B3_0 = 0; { int32_t L_0 = ___ch0; if ((((int32_t)L_0) < ((int32_t)0))) { goto IL_0011; } } { int32_t L_1 = ___ch0; G_B3_0 = ((((int32_t)((((int32_t)L_1) > ((int32_t)((int32_t)1114111)))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_0012; } IL_0011: { G_B3_0 = 0; } IL_0012: { Debug_Assert_m634F0CA58C10F7A86622FAD0D756879FA301A80D((bool)G_B3_0, _stringLiteral3B45D1AAB32F551A0B6E0607F82512D790385944, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var); UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* L_2 = ((CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_StaticFields*)il2cpp_codegen_static_fields_for(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var))->get_s_pCategoryLevel1Index_0(); int32_t L_3 = ___ch0; NullCheck(L_2); int32_t L_4 = ((int32_t)((int32_t)L_3>>(int32_t)8)); uint16_t L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4)); V_0 = L_5; UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* L_6 = ((CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_StaticFields*)il2cpp_codegen_static_fields_for(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var))->get_s_pCategoryLevel1Index_0(); uint16_t L_7 = V_0; int32_t L_8 = ___ch0; NullCheck(L_6); int32_t L_9 = ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_8>>(int32_t)4))&(int32_t)((int32_t)15))))); uint16_t L_10 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_9)); V_0 = L_10; UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* L_11 = ((CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_StaticFields*)il2cpp_codegen_static_fields_for(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var))->get_s_pCategoryLevel1Index_0(); uint16_t L_12 = V_0; NullCheck(L_11); V_1 = (uint16_t*)((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_12))); uint16_t* L_13 = V_1; V_2 = (uint8_t*)(((uintptr_t)L_13)); uint8_t* L_14 = V_2; int32_t L_15 = ___ch0; int32_t L_16 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_14, (int32_t)((int32_t)((int32_t)L_15&(int32_t)((int32_t)15)))))); V_3 = (uint8_t)L_16; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_17 = ((CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_StaticFields*)il2cpp_codegen_static_fields_for(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var))->get_s_pCategoriesValue_1(); uint8_t L_18 = V_3; int32_t L_19 = ___offset1; NullCheck(L_17); int32_t L_20 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_18, (int32_t)2)), (int32_t)L_19)); uint8_t L_21 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_20)); return L_21; } } // System.Globalization.UnicodeCategory System.Globalization.CharUnicodeInfo::InternalGetUnicodeCategory(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CharUnicodeInfo_InternalGetUnicodeCategory_m94698AE2E38DC942BEABD312ACC55FD82EF98E68 (String_t* ___value0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CharUnicodeInfo_InternalGetUnicodeCategory_m94698AE2E38DC942BEABD312ACC55FD82EF98E68_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___value0; Debug_Assert_m634F0CA58C10F7A86622FAD0D756879FA301A80D((bool)((!(((RuntimeObject*)(String_t*)L_0) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0), _stringLiteral432F40DA13A412CABAD63F5524F00CC2C8992AC3, /*hidden argument*/NULL); int32_t L_1 = ___index1; String_t* L_2 = ___value0; NullCheck(L_2); int32_t L_3 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_2, /*hidden argument*/NULL); Debug_Assert_m634F0CA58C10F7A86622FAD0D756879FA301A80D((bool)((((int32_t)L_1) < ((int32_t)L_3))? 1 : 0), _stringLiteral9483BDD3D2B438AB667226C5A0CD8CC30D9BAFB2, /*hidden argument*/NULL); String_t* L_4 = ___value0; int32_t L_5 = ___index1; IL2CPP_RUNTIME_CLASS_INIT(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var); int32_t L_6 = CharUnicodeInfo_InternalConvertToUtf32_m78237099749C0BFC0E5345D2B18F39561E66CE57(L_4, L_5, /*hidden argument*/NULL); int32_t L_7 = CharUnicodeInfo_InternalGetUnicodeCategory_m2F385E842FECF592E5F45027976E6126084657B9(L_6, /*hidden argument*/NULL); return L_7; } } // System.Void System.Globalization.CharUnicodeInfo::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CharUnicodeInfo__cctor_m8259FDC09EDFACA28B7AADC1D444DF5FDA14376D (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CharUnicodeInfo__cctor_m8259FDC09EDFACA28B7AADC1D444DF5FDA14376D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* L_0 = (UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E*)(UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E*)SZArrayNew(UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E_il2cpp_TypeInfo_var, (uint32_t)((int32_t)10626)); UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* L_1 = L_0; RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_2 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____811A927B7DADD378BE60BBDE794B9277AA9B50EC_47_FieldInfo_var) }; RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_1, L_2, /*hidden argument*/NULL); ((CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_StaticFields*)il2cpp_codegen_static_fields_for(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var))->set_s_pCategoryLevel1Index_0(L_1); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)162)); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = L_3; RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_5 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____B8864ACB9DD69E3D42151513C840AAE270BF21C8_74_FieldInfo_var) }; RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_4, L_5, /*hidden argument*/NULL); ((CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_StaticFields*)il2cpp_codegen_static_fields_for(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var))->set_s_pCategoriesValue_1(L_4); UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* L_6 = (UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E*)(UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E*)SZArrayNew(UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E_il2cpp_TypeInfo_var, (uint32_t)((int32_t)5807)); UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* L_7 = L_6; RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_8 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____F073AA332018FDA0D572E99448FFF1D6422BD520_96_FieldInfo_var) }; RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_7, L_8, /*hidden argument*/NULL); ((CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_StaticFields*)il2cpp_codegen_static_fields_for(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var))->set_s_pNumericLevel1Index_2(L_7); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)1080)); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_10 = L_9; RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_11 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_29_FieldInfo_var) }; RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_10, L_11, /*hidden argument*/NULL); ((CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_StaticFields*)il2cpp_codegen_static_fields_for(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var))->set_s_pNumericValues_3(L_10); UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* L_12 = (UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E*)(UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E*)SZArrayNew(UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E_il2cpp_TypeInfo_var, (uint32_t)((int32_t)160)); UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* L_13 = L_12; RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_14 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____3C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19_FieldInfo_var) }; RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_13, L_14, /*hidden argument*/NULL); ((CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_StaticFields*)il2cpp_codegen_static_fields_for(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var))->set_s_pDigitValues_4(L_13); 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.Globalization.CharUnicodeInfo_Debug::Assert(System.Boolean,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_Assert_m634F0CA58C10F7A86622FAD0D756879FA301A80D (bool ___condition0, String_t* ___message1, const RuntimeMethod* method) { { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Globalization.CodePageDataItem::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CodePageDataItem__ctor_m2A8D39A60B9EA6B5FEC726EA38D6BCBEB47ED051 (CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB * __this, int32_t ___dataIndex0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CodePageDataItem__ctor_m2A8D39A60B9EA6B5FEC726EA38D6BCBEB47ED051_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); int32_t L_0 = ___dataIndex0; __this->set_m_dataIndex_0(L_0); IL2CPP_RUNTIME_CLASS_INIT(EncodingTable_t22A8552898CDE776E92D442768930CF463B8032D_il2cpp_TypeInfo_var); InternalCodePageDataItemU5BU5D_t94CE8C20C6D99D9F2F13E2E7FA2C44007AE27834* L_1 = ((EncodingTable_t22A8552898CDE776E92D442768930CF463B8032D_StaticFields*)il2cpp_codegen_static_fields_for(EncodingTable_t22A8552898CDE776E92D442768930CF463B8032D_il2cpp_TypeInfo_var))->get_codePageDataPtr_1(); int32_t L_2 = ___dataIndex0; NullCheck(L_1); uint16_t L_3 = ((L_1)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_2)))->get_uiFamilyCodePage_1(); __this->set_m_uiFamilyCodePage_1(L_3); InternalCodePageDataItemU5BU5D_t94CE8C20C6D99D9F2F13E2E7FA2C44007AE27834* L_4 = ((EncodingTable_t22A8552898CDE776E92D442768930CF463B8032D_StaticFields*)il2cpp_codegen_static_fields_for(EncodingTable_t22A8552898CDE776E92D442768930CF463B8032D_il2cpp_TypeInfo_var))->get_codePageDataPtr_1(); int32_t L_5 = ___dataIndex0; NullCheck(L_4); uint32_t L_6 = ((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_flags_2(); __this->set_m_flags_2(L_6); return; } } // System.Void System.Globalization.CodePageDataItem::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CodePageDataItem__cctor_m9E0B15DA37105ED491D75EACDD1BD75F5F476650 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CodePageDataItem__cctor_m9E0B15DA37105ED491D75EACDD1BD75F5F476650_MetadataUsageId); s_Il2CppMethodInitialized = true; } { CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)1); CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_1 = L_0; NullCheck(L_1); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppChar)((int32_t)124)); ((CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB_StaticFields*)il2cpp_codegen_static_fields_for(CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB_il2cpp_TypeInfo_var))->set_sep_3(L_1); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Globalization.CompareInfo::.ctor(System.Globalization.CultureInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompareInfo__ctor_m40F691A2A633813B265160FDD1976A1F0AF3311D (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture0, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_0 = ___culture0; NullCheck(L_0); String_t* L_1 = L_0->get_m_name_13(); __this->set_m_name_3(L_1); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_2 = ___culture0; NullCheck(L_2); String_t* L_3 = CultureInfo_get_SortName_m781E78F10C18827A614272C7AB621683BFA968A5_inline(L_2, /*hidden argument*/NULL); __this->set_m_sortName_4(L_3); return; } } // System.Globalization.CompareInfo System.Globalization.CompareInfo::GetCompareInfo(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * CompareInfo_GetCompareInfo_mC5A4E1B529C9E7B3CD7A5892F8FBA6DE2D080D1F (String_t* ___name0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CompareInfo_GetCompareInfo_mC5A4E1B529C9E7B3CD7A5892F8FBA6DE2D080D1F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___name0; 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, _stringLiteral6AE999552A0D2DCA14D62E2BC8B764D377B1DD6C, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, CompareInfo_GetCompareInfo_mC5A4E1B529C9E7B3CD7A5892F8FBA6DE2D080D1F_RuntimeMethod_var); } IL_000e: { String_t* L_2 = ___name0; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_3 = CultureInfo_GetCultureInfo_mC35FFFC4C2C9F4A4D5BC19E483464978E25E7350(L_2, /*hidden argument*/NULL); NullCheck(L_3); CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * L_4 = VirtFuncInvoker0< CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * >::Invoke(12 /* System.Globalization.CompareInfo System.Globalization.CultureInfo::get_CompareInfo() */, L_3); return L_4; } } // System.Void System.Globalization.CompareInfo::OnDeserializing(System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompareInfo_OnDeserializing_mBD5AA489F136E178A560015523D8002943E247A0 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___ctx0, const RuntimeMethod* method) { { __this->set_m_name_3((String_t*)NULL); return; } } // System.Void System.Globalization.CompareInfo::OnDeserialized() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompareInfo_OnDeserialized_m413EBD4F2FEB829F421E2090010B8EA0EF46119B (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CompareInfo_OnDeserialized_m413EBD4F2FEB829F421E2090010B8EA0EF46119B_MetadataUsageId); s_Il2CppMethodInitialized = true; } CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * V_0 = NULL; { String_t* L_0 = __this->get_m_name_3(); if (L_0) { goto IL_0022; } } { int32_t L_1 = __this->get_culture_6(); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_2 = CultureInfo_GetCultureInfo_mA907D8B043126761BA2C2ABCD1A3AB503371530C(L_1, /*hidden argument*/NULL); V_0 = L_2; CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_3 = V_0; NullCheck(L_3); String_t* L_4 = L_3->get_m_name_13(); __this->set_m_name_3(L_4); goto IL_002e; } IL_0022: { String_t* L_5 = __this->get_m_name_3(); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_6 = CultureInfo_GetCultureInfo_mC35FFFC4C2C9F4A4D5BC19E483464978E25E7350(L_5, /*hidden argument*/NULL); V_0 = L_6; } IL_002e: { CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_7 = V_0; NullCheck(L_7); String_t* L_8 = CultureInfo_get_SortName_m781E78F10C18827A614272C7AB621683BFA968A5_inline(L_7, /*hidden argument*/NULL); __this->set_m_sortName_4(L_8); return; } } // System.Void System.Globalization.CompareInfo::OnDeserialized(System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompareInfo_OnDeserialized_mE0CB0B2DFFDF3C7DD7A6925D6D4F9765F60E9CC3 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___ctx0, const RuntimeMethod* method) { { CompareInfo_OnDeserialized_m413EBD4F2FEB829F421E2090010B8EA0EF46119B(__this, /*hidden argument*/NULL); return; } } // System.Void System.Globalization.CompareInfo::OnSerializing(System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompareInfo_OnSerializing_mFF6C35B93E67401EE91F4D8547EE34F3D4899BC8 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___ctx0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CompareInfo_OnSerializing_mFF6C35B93E67401EE91F4D8547EE34F3D4899BC8_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Globalization.CompareInfo::get_Name() */, __this); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = CultureInfo_GetCultureInfo_mC35FFFC4C2C9F4A4D5BC19E483464978E25E7350(L_0, /*hidden argument*/NULL); NullCheck(L_1); int32_t L_2 = VirtFuncInvoker0< int32_t >::Invoke(6 /* System.Int32 System.Globalization.CultureInfo::get_LCID() */, L_1); __this->set_culture_6(L_2); return; } } // System.Void System.Globalization.CompareInfo::System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompareInfo_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_mC5BD6E336F3B16DAEBA0D3CD79935B224E53D2B0 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, RuntimeObject * ___sender0, const RuntimeMethod* method) { { CompareInfo_OnDeserialized_m413EBD4F2FEB829F421E2090010B8EA0EF46119B(__this, /*hidden argument*/NULL); return; } } // System.String System.Globalization.CompareInfo::get_Name() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CompareInfo_get_Name_mFC962E79B2133D59E2C83BA5BF70995D3147B8EC (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CompareInfo_get_Name_mFC962E79B2133D59E2C83BA5BF70995D3147B8EC_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = __this->get_m_name_3(); bool L_1 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_0, _stringLiteral4474ABE156E995800F623A46EB81155997101DC5, /*hidden argument*/NULL); if (L_1) { goto IL_0024; } } { String_t* L_2 = __this->get_m_name_3(); bool L_3 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_2, _stringLiteral16DA788082C4C9A5A70A491C6444E6C78CC150C5, /*hidden argument*/NULL); if (!L_3) { goto IL_002b; } } IL_0024: { String_t* L_4 = __this->get_m_name_3(); return L_4; } IL_002b: { String_t* L_5 = __this->get_m_sortName_4(); return L_5; } } // System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_Compare_m0DD92FC343A9E2E93928B829B592686AA27E1B8E (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___string10, String_t* ___string21, const RuntimeMethod* method) { { String_t* L_0 = ___string10; String_t* L_1 = ___string21; int32_t L_2 = VirtFuncInvoker3< int32_t, String_t*, String_t*, int32_t >::Invoke(7 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.String,System.Globalization.CompareOptions) */, __this, L_0, L_1, 0); return L_2; } } // System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.String,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_Compare_m59ABC53310F6E2C9EF5363D4D4BFEF51A30A6C41 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___string10, String_t* ___string21, int32_t ___options2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CompareInfo_Compare_m59ABC53310F6E2C9EF5363D4D4BFEF51A30A6C41_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___options2; if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)268435456))))) { goto IL_0011; } } { String_t* L_1 = ___string10; String_t* L_2 = ___string21; int32_t L_3 = String_Compare_m5BD1EF8904C9B13BEDB7A876B122F117B317B442(L_1, L_2, 5, /*hidden argument*/NULL); return L_3; } IL_0011: { int32_t L_4 = ___options2; if (!((int32_t)((int32_t)L_4&(int32_t)((int32_t)1073741824)))) { goto IL_003f; } } { int32_t L_5 = ___options2; if ((((int32_t)L_5) == ((int32_t)((int32_t)1073741824)))) { goto IL_0037; } } { String_t* L_6 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral5F2E1F9EF87CD5FC39B67305FB0FE704DF157992, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_7 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_7, L_6, _stringLiteral513F8DE9259FE7658FE14D1352C54CCF070E911F, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, CompareInfo_Compare_m59ABC53310F6E2C9EF5363D4D4BFEF51A30A6C41_RuntimeMethod_var); } IL_0037: { String_t* L_8 = ___string10; String_t* L_9 = ___string21; int32_t L_10 = String_CompareOrdinal_m172D84EDDE0823F53EAB60857C07EA7F85600068(L_8, L_9, /*hidden argument*/NULL); return L_10; } IL_003f: { int32_t L_11 = ___options2; if (!((int32_t)((int32_t)L_11&(int32_t)((int32_t)-536870944)))) { goto IL_005d; } } { String_t* L_12 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral037F9AF09B79E62522526C02A67EFD7B1E70AEAC, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_13 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_13, L_12, _stringLiteral513F8DE9259FE7658FE14D1352C54CCF070E911F, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, NULL, CompareInfo_Compare_m59ABC53310F6E2C9EF5363D4D4BFEF51A30A6C41_RuntimeMethod_var); } IL_005d: { String_t* L_14 = ___string10; if (L_14) { goto IL_0067; } } { String_t* L_15 = ___string21; if (L_15) { goto IL_0065; } } { return 0; } IL_0065: { return (-1); } IL_0067: { String_t* L_16 = ___string21; if (L_16) { goto IL_006c; } } { return 1; } IL_006c: { String_t* L_17 = ___string10; String_t* L_18 = ___string10; NullCheck(L_18); int32_t L_19 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_18, /*hidden argument*/NULL); String_t* L_20 = ___string21; String_t* L_21 = ___string21; NullCheck(L_21); int32_t L_22 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_21, /*hidden argument*/NULL); int32_t L_23 = ___options2; int32_t L_24 = CompareInfo_internal_compare_switch_m01ABB70A6962856A9FFD4428A236E3DA2DB9DCC4(__this, L_17, 0, L_19, L_20, 0, L_22, L_23, /*hidden argument*/NULL); return L_24; } } // System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_Compare_mAC04DBE0A3F60A59E0A9632DA1E875936A991769 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___string10, int32_t ___offset11, int32_t ___length12, String_t* ___string23, int32_t ___offset24, int32_t ___length25, int32_t ___options6, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CompareInfo_Compare_mAC04DBE0A3F60A59E0A9632DA1E875936A991769_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t G_B3_0 = 0; String_t* G_B3_1 = NULL; int32_t G_B3_2 = 0; String_t* G_B3_3 = NULL; int32_t G_B2_0 = 0; String_t* G_B2_1 = NULL; int32_t G_B2_2 = 0; String_t* G_B2_3 = NULL; int32_t G_B4_0 = 0; int32_t G_B4_1 = 0; String_t* G_B4_2 = NULL; int32_t G_B4_3 = 0; String_t* G_B4_4 = NULL; String_t* G_B15_0 = NULL; String_t* G_B21_0 = NULL; int32_t G_B24_0 = 0; int32_t G_B23_0 = 0; int32_t G_B25_0 = 0; int32_t G_B25_1 = 0; int32_t G_B29_0 = 0; int32_t G_B28_0 = 0; int32_t G_B30_0 = 0; int32_t G_B30_1 = 0; { int32_t L_0 = ___options6; if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)268435456))))) { goto IL_0033; } } { String_t* L_1 = ___string10; int32_t L_2 = ___offset11; String_t* L_3 = ___string23; int32_t L_4 = ___offset24; int32_t L_5 = ___length12; int32_t L_6 = ___length25; G_B2_0 = L_4; G_B2_1 = L_3; G_B2_2 = L_2; G_B2_3 = L_1; if ((((int32_t)L_5) < ((int32_t)L_6))) { G_B3_0 = L_4; G_B3_1 = L_3; G_B3_2 = L_2; G_B3_3 = L_1; goto IL_0018; } } { int32_t L_7 = ___length25; G_B4_0 = L_7; G_B4_1 = G_B2_0; G_B4_2 = G_B2_1; G_B4_3 = G_B2_2; G_B4_4 = G_B2_3; goto IL_0019; } IL_0018: { int32_t L_8 = ___length12; G_B4_0 = L_8; G_B4_1 = G_B3_0; G_B4_2 = G_B3_1; G_B4_3 = G_B3_2; G_B4_4 = G_B3_3; } IL_0019: { int32_t L_9 = String_Compare_m208E4853037D81DD5C91DCA060C339DADC3A6064(G_B4_4, G_B4_3, G_B4_2, G_B4_1, G_B4_0, 5, /*hidden argument*/NULL); V_0 = L_9; int32_t L_10 = ___length12; int32_t L_11 = ___length25; if ((((int32_t)L_10) == ((int32_t)L_11))) { goto IL_0031; } } { int32_t L_12 = V_0; if (L_12) { goto IL_0031; } } { int32_t L_13 = ___length12; int32_t L_14 = ___length25; if ((((int32_t)L_13) > ((int32_t)L_14))) { goto IL_002f; } } { return (-1); } IL_002f: { return 1; } IL_0031: { int32_t L_15 = V_0; return L_15; } IL_0033: { int32_t L_16 = ___length12; if ((((int32_t)L_16) < ((int32_t)0))) { goto IL_003c; } } { int32_t L_17 = ___length25; if ((((int32_t)L_17) >= ((int32_t)0))) { goto IL_005c; } } IL_003c: { int32_t L_18 = ___length12; if ((((int32_t)L_18) < ((int32_t)0))) { goto IL_0047; } } { G_B15_0 = _stringLiteral3E84966EDA4965346B1B65E8FF71B6DBD7DB4B73; goto IL_004c; } IL_0047: { G_B15_0 = _stringLiteral4319F745CDC4FD40114E0D897B2013145BAEB728; } IL_004c: { String_t* L_19 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD5DF16A053AC14B040C62E79CA35CBD99E8BA7C8, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_20 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_20, G_B15_0, L_19, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, NULL, CompareInfo_Compare_mAC04DBE0A3F60A59E0A9632DA1E875936A991769_RuntimeMethod_var); } IL_005c: { int32_t L_21 = ___offset11; if ((((int32_t)L_21) < ((int32_t)0))) { goto IL_0065; } } { int32_t L_22 = ___offset24; if ((((int32_t)L_22) >= ((int32_t)0))) { goto IL_0085; } } IL_0065: { int32_t L_23 = ___offset11; if ((((int32_t)L_23) < ((int32_t)0))) { goto IL_0070; } } { G_B21_0 = _stringLiteralAB3DFA7772E82AEBC308D16B390DC7A630733224; goto IL_0075; } IL_0070: { G_B21_0 = _stringLiteral333C11801925CEAB22DD74C93D7617C041F0FA70; } IL_0075: { String_t* L_24 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD5DF16A053AC14B040C62E79CA35CBD99E8BA7C8, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_25 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_25, G_B21_0, L_24, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_25, NULL, CompareInfo_Compare_mAC04DBE0A3F60A59E0A9632DA1E875936A991769_RuntimeMethod_var); } IL_0085: { int32_t L_26 = ___offset11; String_t* L_27 = ___string10; G_B23_0 = L_26; if (!L_27) { G_B24_0 = L_26; goto IL_0091; } } { String_t* L_28 = ___string10; NullCheck(L_28); int32_t L_29 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_28, /*hidden argument*/NULL); G_B25_0 = L_29; G_B25_1 = G_B23_0; goto IL_0092; } IL_0091: { G_B25_0 = 0; G_B25_1 = G_B24_0; } IL_0092: { int32_t L_30 = ___length12; if ((((int32_t)G_B25_1) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)G_B25_0, (int32_t)L_30))))) { goto IL_00ab; } } { String_t* L_31 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral98CFE5E917B6BC87FA117F28F39F6E8B09499151, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_32 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_32, _stringLiteral4B35BE0F7818DF6954737AB957F691EB72A389D2, L_31, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_32, NULL, CompareInfo_Compare_mAC04DBE0A3F60A59E0A9632DA1E875936A991769_RuntimeMethod_var); } IL_00ab: { int32_t L_33 = ___offset24; String_t* L_34 = ___string23; G_B28_0 = L_33; if (!L_34) { G_B29_0 = L_33; goto IL_00ba; } } { String_t* L_35 = ___string23; NullCheck(L_35); int32_t L_36 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_35, /*hidden argument*/NULL); G_B30_0 = L_36; G_B30_1 = G_B28_0; goto IL_00bb; } IL_00ba: { G_B30_0 = 0; G_B30_1 = G_B29_0; } IL_00bb: { int32_t L_37 = ___length25; if ((((int32_t)G_B30_1) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)G_B30_0, (int32_t)L_37))))) { goto IL_00d5; } } { String_t* L_38 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral98CFE5E917B6BC87FA117F28F39F6E8B09499151, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_39 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_39, _stringLiteral62FB1585FD37A03B137AFEEEDAADA345F5537A00, L_38, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_39, NULL, CompareInfo_Compare_mAC04DBE0A3F60A59E0A9632DA1E875936A991769_RuntimeMethod_var); } IL_00d5: { int32_t L_40 = ___options6; if (!((int32_t)((int32_t)L_40&(int32_t)((int32_t)1073741824)))) { goto IL_00fd; } } { int32_t L_41 = ___options6; if ((((int32_t)L_41) == ((int32_t)((int32_t)1073741824)))) { goto IL_011c; } } { String_t* L_42 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral5F2E1F9EF87CD5FC39B67305FB0FE704DF157992, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_43 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_43, L_42, _stringLiteral513F8DE9259FE7658FE14D1352C54CCF070E911F, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_43, NULL, CompareInfo_Compare_mAC04DBE0A3F60A59E0A9632DA1E875936A991769_RuntimeMethod_var); } IL_00fd: { int32_t L_44 = ___options6; if (!((int32_t)((int32_t)L_44&(int32_t)((int32_t)-536870944)))) { goto IL_011c; } } { String_t* L_45 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral037F9AF09B79E62522526C02A67EFD7B1E70AEAC, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_46 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_46, L_45, _stringLiteral513F8DE9259FE7658FE14D1352C54CCF070E911F, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_46, NULL, CompareInfo_Compare_mAC04DBE0A3F60A59E0A9632DA1E875936A991769_RuntimeMethod_var); } IL_011c: { String_t* L_47 = ___string10; if (L_47) { goto IL_0127; } } { String_t* L_48 = ___string23; if (L_48) { goto IL_0125; } } { return 0; } IL_0125: { return (-1); } IL_0127: { String_t* L_49 = ___string23; if (L_49) { goto IL_012d; } } { return 1; } IL_012d: { int32_t L_50 = ___options6; if ((!(((uint32_t)L_50) == ((uint32_t)((int32_t)1073741824))))) { goto IL_0145; } } { String_t* L_51 = ___string10; int32_t L_52 = ___offset11; int32_t L_53 = ___length12; String_t* L_54 = ___string23; int32_t L_55 = ___offset24; int32_t L_56 = ___length25; int32_t L_57 = CompareInfo_CompareOrdinal_m24ACA925A5FCCC037322C115EE2B987AA6B6238E(L_51, L_52, L_53, L_54, L_55, L_56, /*hidden argument*/NULL); return L_57; } IL_0145: { String_t* L_58 = ___string10; int32_t L_59 = ___offset11; int32_t L_60 = ___length12; String_t* L_61 = ___string23; int32_t L_62 = ___offset24; int32_t L_63 = ___length25; int32_t L_64 = ___options6; int32_t L_65 = CompareInfo_internal_compare_switch_m01ABB70A6962856A9FFD4428A236E3DA2DB9DCC4(__this, L_58, L_59, L_60, L_61, L_62, L_63, L_64, /*hidden argument*/NULL); return L_65; } } // System.Int32 System.Globalization.CompareInfo::CompareOrdinal(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_CompareOrdinal_m24ACA925A5FCCC037322C115EE2B987AA6B6238E (String_t* ___string10, int32_t ___offset11, int32_t ___length12, String_t* ___string23, int32_t ___offset24, int32_t ___length25, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B2_0 = 0; String_t* G_B2_1 = NULL; int32_t G_B2_2 = 0; String_t* G_B2_3 = NULL; int32_t G_B1_0 = 0; String_t* G_B1_1 = NULL; int32_t G_B1_2 = 0; String_t* G_B1_3 = NULL; int32_t G_B3_0 = 0; int32_t G_B3_1 = 0; String_t* G_B3_2 = NULL; int32_t G_B3_3 = 0; String_t* G_B3_4 = NULL; { String_t* L_0 = ___string10; int32_t L_1 = ___offset11; String_t* L_2 = ___string23; int32_t L_3 = ___offset24; int32_t L_4 = ___length12; int32_t L_5 = ___length25; G_B1_0 = L_3; G_B1_1 = L_2; G_B1_2 = L_1; G_B1_3 = L_0; if ((((int32_t)L_4) < ((int32_t)L_5))) { G_B2_0 = L_3; G_B2_1 = L_2; G_B2_2 = L_1; G_B2_3 = L_0; goto IL_000e; } } { int32_t L_6 = ___length25; G_B3_0 = L_6; G_B3_1 = G_B1_0; G_B3_2 = G_B1_1; G_B3_3 = G_B1_2; G_B3_4 = G_B1_3; goto IL_000f; } IL_000e: { int32_t L_7 = ___length12; G_B3_0 = L_7; G_B3_1 = G_B2_0; G_B3_2 = G_B2_1; G_B3_3 = G_B2_2; G_B3_4 = G_B2_3; } IL_000f: { int32_t L_8 = String_nativeCompareOrdinalEx_m64305A55855E6959DFCE962955C9874927D22840(G_B3_4, G_B3_3, G_B3_2, G_B3_1, G_B3_0, /*hidden argument*/NULL); V_0 = L_8; int32_t L_9 = ___length12; int32_t L_10 = ___length25; if ((((int32_t)L_9) == ((int32_t)L_10))) { goto IL_0026; } } { int32_t L_11 = V_0; if (L_11) { goto IL_0026; } } { int32_t L_12 = ___length12; int32_t L_13 = ___length25; if ((((int32_t)L_12) > ((int32_t)L_13))) { goto IL_0024; } } { return (-1); } IL_0024: { return 1; } IL_0026: { int32_t L_14 = V_0; return L_14; } } // System.Boolean System.Globalization.CompareInfo::IsPrefix(System.String,System.String,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CompareInfo_IsPrefix_mE42FE270F838D80C155AEC219DC2558F3F34BD36 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___source0, String_t* ___prefix1, int32_t ___options2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CompareInfo_IsPrefix_mE42FE270F838D80C155AEC219DC2558F3F34BD36_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* G_B5_0 = NULL; { String_t* L_0 = ___source0; if (!L_0) { goto IL_0006; } } { String_t* L_1 = ___prefix1; if (L_1) { goto IL_0025; } } IL_0006: { String_t* L_2 = ___source0; if (!L_2) { goto IL_0010; } } { G_B5_0 = _stringLiteralB4EBFE34D0FA97F0DD2BB1234FAD8F59805F4E8D; goto IL_0015; } IL_0010: { G_B5_0 = _stringLiteral828D338A9B04221C9CBE286F50CD389F68DE4ECF; } IL_0015: { String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralF81B4F09A85F55DDC3FFCA77898383A75640AA15, /*hidden argument*/NULL); ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_4, G_B5_0, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, CompareInfo_IsPrefix_mE42FE270F838D80C155AEC219DC2558F3F34BD36_RuntimeMethod_var); } IL_0025: { String_t* L_5 = ___prefix1; NullCheck(L_5); int32_t L_6 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_5, /*hidden argument*/NULL); if (L_6) { goto IL_002f; } } { return (bool)1; } IL_002f: { int32_t L_7 = ___options2; if ((!(((uint32_t)L_7) == ((uint32_t)((int32_t)268435456))))) { goto IL_0040; } } { String_t* L_8 = ___source0; String_t* L_9 = ___prefix1; NullCheck(L_8); bool L_10 = String_StartsWith_m844A95C9A205A0F951B0C45634E0C222E73D0B49(L_8, L_9, 5, /*hidden argument*/NULL); return L_10; } IL_0040: { int32_t L_11 = ___options2; if ((!(((uint32_t)L_11) == ((uint32_t)((int32_t)1073741824))))) { goto IL_0051; } } { String_t* L_12 = ___source0; String_t* L_13 = ___prefix1; NullCheck(L_12); bool L_14 = String_StartsWith_m844A95C9A205A0F951B0C45634E0C222E73D0B49(L_12, L_13, 4, /*hidden argument*/NULL); return L_14; } IL_0051: { int32_t L_15 = ___options2; if (!((int32_t)((int32_t)L_15&(int32_t)((int32_t)-32)))) { goto IL_006c; } } { String_t* L_16 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral037F9AF09B79E62522526C02A67EFD7B1E70AEAC, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_17 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_17, L_16, _stringLiteral513F8DE9259FE7658FE14D1352C54CCF070E911F, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, NULL, CompareInfo_IsPrefix_mE42FE270F838D80C155AEC219DC2558F3F34BD36_RuntimeMethod_var); } IL_006c: { bool L_18 = CompareInfo_get_UseManagedCollation_mE3EDFF2DB83257810C9BEA1A09987D669F45EB2F(/*hidden argument*/NULL); if (!L_18) { goto IL_0082; } } { SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * L_19 = CompareInfo_GetCollator_m3566663FC53B48F661AD6F416AD024758493F933(__this, /*hidden argument*/NULL); String_t* L_20 = ___source0; String_t* L_21 = ___prefix1; int32_t L_22 = ___options2; NullCheck(L_19); bool L_23 = SimpleCollator_IsPrefix_m596901F0E55A9B66EF20B0F8057D6B3FE08311F3(L_19, L_20, L_21, L_22, /*hidden argument*/NULL); return L_23; } IL_0082: { String_t* L_24 = ___source0; NullCheck(L_24); int32_t L_25 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_24, /*hidden argument*/NULL); String_t* L_26 = ___prefix1; NullCheck(L_26); int32_t L_27 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_26, /*hidden argument*/NULL); if ((((int32_t)L_25) >= ((int32_t)L_27))) { goto IL_0092; } } { return (bool)0; } IL_0092: { String_t* L_28 = ___source0; String_t* L_29 = ___prefix1; NullCheck(L_29); int32_t L_30 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_29, /*hidden argument*/NULL); String_t* L_31 = ___prefix1; String_t* L_32 = ___prefix1; NullCheck(L_32); int32_t L_33 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_32, /*hidden argument*/NULL); int32_t L_34 = ___options2; int32_t L_35 = VirtFuncInvoker7< int32_t, String_t*, int32_t, int32_t, String_t*, int32_t, int32_t, int32_t >::Invoke(8 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) */, __this, L_28, 0, L_30, L_31, 0, L_33, L_34); return (bool)((((int32_t)L_35) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Globalization.CompareInfo::IsSuffix(System.String,System.String,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CompareInfo_IsSuffix_mB734AA0C74DB63689303C1A99E9D0C00D53C2EEA (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___source0, String_t* ___suffix1, int32_t ___options2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CompareInfo_IsSuffix_mB734AA0C74DB63689303C1A99E9D0C00D53C2EEA_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* G_B5_0 = NULL; { String_t* L_0 = ___source0; if (!L_0) { goto IL_0006; } } { String_t* L_1 = ___suffix1; if (L_1) { goto IL_0025; } } IL_0006: { String_t* L_2 = ___source0; if (!L_2) { goto IL_0010; } } { G_B5_0 = _stringLiteralEC87FACA4CBAD909219BBCEA9DBBE370A9F8C690; goto IL_0015; } IL_0010: { G_B5_0 = _stringLiteral828D338A9B04221C9CBE286F50CD389F68DE4ECF; } IL_0015: { String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralF81B4F09A85F55DDC3FFCA77898383A75640AA15, /*hidden argument*/NULL); ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_4, G_B5_0, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, CompareInfo_IsSuffix_mB734AA0C74DB63689303C1A99E9D0C00D53C2EEA_RuntimeMethod_var); } IL_0025: { String_t* L_5 = ___suffix1; NullCheck(L_5); int32_t L_6 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_5, /*hidden argument*/NULL); if (L_6) { goto IL_002f; } } { return (bool)1; } IL_002f: { int32_t L_7 = ___options2; if ((!(((uint32_t)L_7) == ((uint32_t)((int32_t)268435456))))) { goto IL_0040; } } { String_t* L_8 = ___source0; String_t* L_9 = ___suffix1; NullCheck(L_8); bool L_10 = String_EndsWith_m80B198568050D692B70AD8949AC6EDC3044ED811(L_8, L_9, 5, /*hidden argument*/NULL); return L_10; } IL_0040: { int32_t L_11 = ___options2; if ((!(((uint32_t)L_11) == ((uint32_t)((int32_t)1073741824))))) { goto IL_0051; } } { String_t* L_12 = ___source0; String_t* L_13 = ___suffix1; NullCheck(L_12); bool L_14 = String_EndsWith_m80B198568050D692B70AD8949AC6EDC3044ED811(L_12, L_13, 4, /*hidden argument*/NULL); return L_14; } IL_0051: { int32_t L_15 = ___options2; if (!((int32_t)((int32_t)L_15&(int32_t)((int32_t)-32)))) { goto IL_006c; } } { String_t* L_16 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral037F9AF09B79E62522526C02A67EFD7B1E70AEAC, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_17 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_17, L_16, _stringLiteral513F8DE9259FE7658FE14D1352C54CCF070E911F, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, NULL, CompareInfo_IsSuffix_mB734AA0C74DB63689303C1A99E9D0C00D53C2EEA_RuntimeMethod_var); } IL_006c: { bool L_18 = CompareInfo_get_UseManagedCollation_mE3EDFF2DB83257810C9BEA1A09987D669F45EB2F(/*hidden argument*/NULL); if (!L_18) { goto IL_0082; } } { SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * L_19 = CompareInfo_GetCollator_m3566663FC53B48F661AD6F416AD024758493F933(__this, /*hidden argument*/NULL); String_t* L_20 = ___source0; String_t* L_21 = ___suffix1; int32_t L_22 = ___options2; NullCheck(L_19); bool L_23 = SimpleCollator_IsSuffix_m64ABA9957E9682D391102722BE959AC52602E7A2(L_19, L_20, L_21, L_22, /*hidden argument*/NULL); return L_23; } IL_0082: { String_t* L_24 = ___source0; NullCheck(L_24); int32_t L_25 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_24, /*hidden argument*/NULL); String_t* L_26 = ___suffix1; NullCheck(L_26); int32_t L_27 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_26, /*hidden argument*/NULL); if ((((int32_t)L_25) >= ((int32_t)L_27))) { goto IL_0092; } } { return (bool)0; } IL_0092: { String_t* L_28 = ___source0; String_t* L_29 = ___source0; NullCheck(L_29); int32_t L_30 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_29, /*hidden argument*/NULL); String_t* L_31 = ___suffix1; NullCheck(L_31); int32_t L_32 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_31, /*hidden argument*/NULL); String_t* L_33 = ___suffix1; NullCheck(L_33); int32_t L_34 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_33, /*hidden argument*/NULL); String_t* L_35 = ___suffix1; String_t* L_36 = ___suffix1; NullCheck(L_36); int32_t L_37 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_36, /*hidden argument*/NULL); int32_t L_38 = ___options2; int32_t L_39 = VirtFuncInvoker7< int32_t, String_t*, int32_t, int32_t, String_t*, int32_t, int32_t, int32_t >::Invoke(8 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) */, __this, L_28, ((int32_t)il2cpp_codegen_subtract((int32_t)L_30, (int32_t)L_32)), L_34, L_35, 0, L_37, L_38); return (bool)((((int32_t)L_39) == ((int32_t)0))? 1 : 0); } } // System.Int32 System.Globalization.CompareInfo::IndexOf(System.String,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_IndexOf_mB9461B9D33A8AF04CBDA5BA299A5267C99E276DB (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___source0, String_t* ___value1, int32_t ___startIndex2, int32_t ___count3, int32_t ___options4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CompareInfo_IndexOf_mB9461B9D33A8AF04CBDA5BA299A5267C99E276DB_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___source0; 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, _stringLiteral828D338A9B04221C9CBE286F50CD389F68DE4ECF, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, CompareInfo_IndexOf_mB9461B9D33A8AF04CBDA5BA299A5267C99E276DB_RuntimeMethod_var); } IL_000e: { String_t* L_2 = ___value1; if (L_2) { goto IL_001c; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_3 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_3, _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, CompareInfo_IndexOf_mB9461B9D33A8AF04CBDA5BA299A5267C99E276DB_RuntimeMethod_var); } IL_001c: { int32_t L_4 = ___startIndex2; String_t* L_5 = ___source0; NullCheck(L_5); int32_t L_6 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_5, /*hidden argument*/NULL); if ((((int32_t)L_4) <= ((int32_t)L_6))) { goto IL_003a; } } { String_t* L_7 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_8, _stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, L_7, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, CompareInfo_IndexOf_mB9461B9D33A8AF04CBDA5BA299A5267C99E276DB_RuntimeMethod_var); } IL_003a: { String_t* L_9 = ___source0; NullCheck(L_9); int32_t L_10 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_9, /*hidden argument*/NULL); if (L_10) { goto IL_004e; } } { String_t* L_11 = ___value1; NullCheck(L_11); int32_t L_12 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_11, /*hidden argument*/NULL); if (L_12) { goto IL_004c; } } { return 0; } IL_004c: { return (-1); } IL_004e: { int32_t L_13 = ___startIndex2; if ((((int32_t)L_13) >= ((int32_t)0))) { goto IL_0067; } } { String_t* L_14 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_15 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_15, _stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, L_14, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, NULL, CompareInfo_IndexOf_mB9461B9D33A8AF04CBDA5BA299A5267C99E276DB_RuntimeMethod_var); } IL_0067: { int32_t L_16 = ___count3; if ((((int32_t)L_16) < ((int32_t)0))) { goto IL_0078; } } { int32_t L_17 = ___startIndex2; String_t* L_18 = ___source0; NullCheck(L_18); int32_t L_19 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_18, /*hidden argument*/NULL); int32_t L_20 = ___count3; if ((((int32_t)L_17) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)L_20))))) { goto IL_008d; } } IL_0078: { String_t* L_21 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_22 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_22, _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, L_21, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_22, NULL, CompareInfo_IndexOf_mB9461B9D33A8AF04CBDA5BA299A5267C99E276DB_RuntimeMethod_var); } IL_008d: { int32_t L_23 = ___options4; if ((!(((uint32_t)L_23) == ((uint32_t)((int32_t)268435456))))) { goto IL_00a2; } } { String_t* L_24 = ___source0; String_t* L_25 = ___value1; int32_t L_26 = ___startIndex2; int32_t L_27 = ___count3; NullCheck(L_24); int32_t L_28 = String_IndexOf_mDACE3FE07E6B127A9E01E6F0DB10C288AB49CEEC(L_24, L_25, L_26, L_27, 5, /*hidden argument*/NULL); return L_28; } IL_00a2: { int32_t L_29 = ___options4; if (!((int32_t)((int32_t)L_29&(int32_t)((int32_t)-32)))) { goto IL_00c7; } } { int32_t L_30 = ___options4; if ((((int32_t)L_30) == ((int32_t)((int32_t)1073741824)))) { goto IL_00c7; } } { String_t* L_31 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral037F9AF09B79E62522526C02A67EFD7B1E70AEAC, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_32 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_32, L_31, _stringLiteral513F8DE9259FE7658FE14D1352C54CCF070E911F, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_32, NULL, CompareInfo_IndexOf_mB9461B9D33A8AF04CBDA5BA299A5267C99E276DB_RuntimeMethod_var); } IL_00c7: { String_t* L_33 = ___source0; int32_t L_34 = ___startIndex2; int32_t L_35 = ___count3; String_t* L_36 = ___value1; int32_t L_37 = ___options4; int32_t L_38 = CompareInfo_internal_index_switch_m2F1E3B731F1409587BB371D7DAFAA831A3064D27(__this, L_33, L_34, L_35, L_36, L_37, (bool)1, /*hidden argument*/NULL); return L_38; } } // System.Int32 System.Globalization.CompareInfo::LastIndexOf(System.String,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_LastIndexOf_mACB90E30C378E95541AED0E468AF1C87BB2BA794 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___source0, String_t* ___value1, int32_t ___startIndex2, int32_t ___count3, int32_t ___options4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CompareInfo_LastIndexOf_mACB90E30C378E95541AED0E468AF1C87BB2BA794_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___source0; 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, _stringLiteral828D338A9B04221C9CBE286F50CD389F68DE4ECF, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, CompareInfo_LastIndexOf_mACB90E30C378E95541AED0E468AF1C87BB2BA794_RuntimeMethod_var); } IL_000e: { String_t* L_2 = ___value1; if (L_2) { goto IL_001c; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_3 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_3, _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, CompareInfo_LastIndexOf_mACB90E30C378E95541AED0E468AF1C87BB2BA794_RuntimeMethod_var); } IL_001c: { int32_t L_4 = ___options4; if (!((int32_t)((int32_t)L_4&(int32_t)((int32_t)-32)))) { goto IL_004a; } } { int32_t L_5 = ___options4; if ((((int32_t)L_5) == ((int32_t)((int32_t)1073741824)))) { goto IL_004a; } } { int32_t L_6 = ___options4; if ((((int32_t)L_6) == ((int32_t)((int32_t)268435456)))) { goto IL_004a; } } { String_t* L_7 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral037F9AF09B79E62522526C02A67EFD7B1E70AEAC, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_8 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_8, L_7, _stringLiteral513F8DE9259FE7658FE14D1352C54CCF070E911F, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, CompareInfo_LastIndexOf_mACB90E30C378E95541AED0E468AF1C87BB2BA794_RuntimeMethod_var); } IL_004a: { String_t* L_9 = ___source0; NullCheck(L_9); int32_t L_10 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_9, /*hidden argument*/NULL); if (L_10) { goto IL_0065; } } { int32_t L_11 = ___startIndex2; if ((((int32_t)L_11) == ((int32_t)(-1)))) { goto IL_0059; } } { int32_t L_12 = ___startIndex2; if (L_12) { goto IL_0065; } } IL_0059: { String_t* L_13 = ___value1; NullCheck(L_13); int32_t L_14 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_13, /*hidden argument*/NULL); if (!L_14) { goto IL_0063; } } { return (-1); } IL_0063: { return 0; } IL_0065: { int32_t L_15 = ___startIndex2; if ((((int32_t)L_15) < ((int32_t)0))) { goto IL_0072; } } { int32_t L_16 = ___startIndex2; String_t* L_17 = ___source0; NullCheck(L_17); int32_t L_18 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_17, /*hidden argument*/NULL); if ((((int32_t)L_16) <= ((int32_t)L_18))) { goto IL_0087; } } IL_0072: { String_t* L_19 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_20 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_20, _stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, L_19, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, NULL, CompareInfo_LastIndexOf_mACB90E30C378E95541AED0E468AF1C87BB2BA794_RuntimeMethod_var); } IL_0087: { int32_t L_21 = ___startIndex2; String_t* L_22 = ___source0; NullCheck(L_22); int32_t L_23 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_22, /*hidden argument*/NULL); if ((!(((uint32_t)L_21) == ((uint32_t)L_23)))) { goto IL_00b8; } } { int32_t L_24 = ___startIndex2; ___startIndex2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_24, (int32_t)1)); int32_t L_25 = ___count3; if ((((int32_t)L_25) <= ((int32_t)0))) { goto IL_00a0; } } { int32_t L_26 = ___count3; ___count3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_26, (int32_t)1)); } IL_00a0: { String_t* L_27 = ___value1; NullCheck(L_27); int32_t L_28 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_27, /*hidden argument*/NULL); if (L_28) { goto IL_00b8; } } { int32_t L_29 = ___count3; if ((((int32_t)L_29) < ((int32_t)0))) { goto IL_00b8; } } { int32_t L_30 = ___startIndex2; int32_t L_31 = ___count3; if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_30, (int32_t)L_31)), (int32_t)1))) < ((int32_t)0))) { goto IL_00b8; } } { int32_t L_32 = ___startIndex2; return L_32; } IL_00b8: { int32_t L_33 = ___count3; if ((((int32_t)L_33) < ((int32_t)0))) { goto IL_00c6; } } { int32_t L_34 = ___startIndex2; int32_t L_35 = ___count3; if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_34, (int32_t)L_35)), (int32_t)1))) >= ((int32_t)0))) { goto IL_00db; } } IL_00c6: { String_t* L_36 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_37 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_37, _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, L_36, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_37, NULL, CompareInfo_LastIndexOf_mACB90E30C378E95541AED0E468AF1C87BB2BA794_RuntimeMethod_var); } IL_00db: { int32_t L_38 = ___options4; if ((!(((uint32_t)L_38) == ((uint32_t)((int32_t)268435456))))) { goto IL_00f0; } } { String_t* L_39 = ___source0; String_t* L_40 = ___value1; int32_t L_41 = ___startIndex2; int32_t L_42 = ___count3; NullCheck(L_39); int32_t L_43 = String_LastIndexOf_m074A70E0C63246B664CC26F4D0B5203424B2BCF7(L_39, L_40, L_41, L_42, 5, /*hidden argument*/NULL); return L_43; } IL_00f0: { String_t* L_44 = ___source0; int32_t L_45 = ___startIndex2; int32_t L_46 = ___count3; String_t* L_47 = ___value1; int32_t L_48 = ___options4; int32_t L_49 = CompareInfo_internal_index_switch_m2F1E3B731F1409587BB371D7DAFAA831A3064D27(__this, L_44, L_45, L_46, L_47, L_48, (bool)0, /*hidden argument*/NULL); return L_49; } } // System.Globalization.SortKey System.Globalization.CompareInfo::GetSortKey(System.String,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9 * CompareInfo_GetSortKey_m04E8E036BF5C113110681966EC4F444ABEBB5478 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___source0, int32_t ___options1, const RuntimeMethod* method) { { String_t* L_0 = ___source0; int32_t L_1 = ___options1; SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9 * L_2 = CompareInfo_CreateSortKey_mB9279DED2BF48C87A5BE47EAC7F65A13601B10B3(__this, L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Globalization.SortKey System.Globalization.CompareInfo::CreateSortKey(System.String,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9 * CompareInfo_CreateSortKey_mB9279DED2BF48C87A5BE47EAC7F65A13601B10B3 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___source0, int32_t ___options1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CompareInfo_CreateSortKey_mB9279DED2BF48C87A5BE47EAC7F65A13601B10B3_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___source0; 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, _stringLiteral828D338A9B04221C9CBE286F50CD389F68DE4ECF, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, CompareInfo_CreateSortKey_mB9279DED2BF48C87A5BE47EAC7F65A13601B10B3_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___options1; if (!((int32_t)((int32_t)L_2&(int32_t)((int32_t)-536870944)))) { goto IL_002c; } } { String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral037F9AF09B79E62522526C02A67EFD7B1E70AEAC, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_4 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_4, L_3, _stringLiteral513F8DE9259FE7658FE14D1352C54CCF070E911F, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, CompareInfo_CreateSortKey_mB9279DED2BF48C87A5BE47EAC7F65A13601B10B3_RuntimeMethod_var); } IL_002c: { String_t* L_5 = ___source0; bool L_6 = String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229(L_5, /*hidden argument*/NULL); if (!L_6) { goto IL_003b; } } { ___source0 = _stringLiteral5BA93C9DB0CFF93F52B521D7420E43F6EDA2784F; } IL_003b: { String_t* L_7 = ___source0; int32_t L_8 = ___options1; SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9 * L_9 = CompareInfo_CreateSortKeyCore_m6C1597391D8D5ED265849A82F697777EF86D5FE8(__this, L_7, L_8, /*hidden argument*/NULL); return L_9; } } // System.Boolean System.Globalization.CompareInfo::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CompareInfo_Equals_mF526077826434AF3DD65619A2C6BEAC7ABFE082C (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CompareInfo_Equals_mF526077826434AF3DD65619A2C6BEAC7ABFE082C_MetadataUsageId); s_Il2CppMethodInitialized = true; } CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * V_0 = NULL; { RuntimeObject * L_0 = ___value0; V_0 = ((CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 *)IsInstClass((RuntimeObject*)L_0, CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_il2cpp_TypeInfo_var)); CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * L_1 = V_0; if (!L_1) { goto IL_001c; } } { String_t* L_2 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Globalization.CompareInfo::get_Name() */, __this); CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * L_3 = V_0; NullCheck(L_3); String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Globalization.CompareInfo::get_Name() */, L_3); bool L_5 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_2, L_4, /*hidden argument*/NULL); return L_5; } IL_001c: { return (bool)0; } } // System.Int32 System.Globalization.CompareInfo::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_GetHashCode_m49D4FC2C50E5DF1C2FB30234D8B1D5F624393EE7 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, const RuntimeMethod* method) { { String_t* L_0 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Globalization.CompareInfo::get_Name() */, __this); NullCheck(L_0); int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_0); return L_1; } } // System.Int32 System.Globalization.CompareInfo::GetHashCodeOfString(System.String,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_GetHashCodeOfString_m91DE0691957416A2BBC9AADD8D4AE2A2885A5AB3 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___source0, int32_t ___options1, const RuntimeMethod* method) { { String_t* L_0 = ___source0; int32_t L_1 = ___options1; int32_t L_2 = CompareInfo_GetHashCodeOfString_m18B1AAFA96BF106798A70C8FD6ACCA286BA5A142(__this, L_0, L_1, (bool)0, (((int64_t)((int64_t)0))), /*hidden argument*/NULL); return L_2; } } // System.Int32 System.Globalization.CompareInfo::GetHashCodeOfString(System.String,System.Globalization.CompareOptions,System.Boolean,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_GetHashCodeOfString_m18B1AAFA96BF106798A70C8FD6ACCA286BA5A142 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___source0, int32_t ___options1, bool ___forceRandomizedHashing2, int64_t ___additionalEntropy3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CompareInfo_GetHashCodeOfString_m18B1AAFA96BF106798A70C8FD6ACCA286BA5A142_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___source0; 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, _stringLiteral828D338A9B04221C9CBE286F50CD389F68DE4ECF, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, CompareInfo_GetHashCodeOfString_m18B1AAFA96BF106798A70C8FD6ACCA286BA5A142_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___options1; if (!((int32_t)((int32_t)L_2&(int32_t)((int32_t)-32)))) { goto IL_0029; } } { String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral037F9AF09B79E62522526C02A67EFD7B1E70AEAC, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_4 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_4, L_3, _stringLiteral513F8DE9259FE7658FE14D1352C54CCF070E911F, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, CompareInfo_GetHashCodeOfString_m18B1AAFA96BF106798A70C8FD6ACCA286BA5A142_RuntimeMethod_var); } IL_0029: { String_t* L_5 = ___source0; NullCheck(L_5); int32_t L_6 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_5, /*hidden argument*/NULL); if (L_6) { goto IL_0033; } } { return 0; } IL_0033: { String_t* L_7 = ___source0; int32_t L_8 = ___options1; SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9 * L_9 = VirtFuncInvoker2< SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9 *, String_t*, int32_t >::Invoke(13 /* System.Globalization.SortKey System.Globalization.CompareInfo::GetSortKey(System.String,System.Globalization.CompareOptions) */, __this, L_7, L_8); NullCheck(L_9); int32_t L_10 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_9); return L_10; } } // System.String System.Globalization.CompareInfo::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CompareInfo_ToString_m770A27E70F7B8FB598E0EF85A554677F7CAB82C9 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CompareInfo_ToString_m770A27E70F7B8FB598E0EF85A554677F7CAB82C9_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Globalization.CompareInfo::get_Name() */, __this); String_t* L_1 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteralD9977C4ABA9BD29906A95DAC37967CFF847F0EC5, L_0, /*hidden argument*/NULL); return L_1; } } // System.Boolean System.Globalization.CompareInfo::get_UseManagedCollation() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CompareInfo_get_UseManagedCollation_mE3EDFF2DB83257810C9BEA1A09987D669F45EB2F (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CompareInfo_get_UseManagedCollation_mE3EDFF2DB83257810C9BEA1A09987D669F45EB2F_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B4_0 = 0; { bool L_0 = ((CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_StaticFields*)il2cpp_codegen_static_fields_for(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_il2cpp_TypeInfo_var))->get_managedCollationChecked_24(); if (L_0) { goto IL_0030; } } { String_t* L_1 = Environment_internalGetEnvironmentVariable_m49ACD082ABE4C40D49DC9CEE88AB3DCC402D6972(_stringLiteral9377E60A3330B8DCBA93D22F00E784D5E303A292, /*hidden argument*/NULL); bool L_2 = String_op_Inequality_m0BD184A74F453A72376E81CC6CAEE2556B80493E(L_1, _stringLiteralFB360F9C09AC8C5EDB2F18BE5DE4E80EA4C430D0, /*hidden argument*/NULL); if (!L_2) { goto IL_0024; } } { IL2CPP_RUNTIME_CLASS_INIT(MSCompatUnicodeTable_tF7317B16A2F3BD7B319A929F839E7E23ECCE860B_il2cpp_TypeInfo_var); bool L_3 = MSCompatUnicodeTable_get_IsReady_mFFB82666A060D9A75368AA858810C41008CDD294_inline(/*hidden argument*/NULL); G_B4_0 = ((int32_t)(L_3)); goto IL_0025; } IL_0024: { G_B4_0 = 0; } IL_0025: { ((CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_StaticFields*)il2cpp_codegen_static_fields_for(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_il2cpp_TypeInfo_var))->set_managedCollation_23((bool)G_B4_0); ((CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_StaticFields*)il2cpp_codegen_static_fields_for(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_il2cpp_TypeInfo_var))->set_managedCollationChecked_24((bool)1); } IL_0030: { bool L_4 = ((CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_StaticFields*)il2cpp_codegen_static_fields_for(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_il2cpp_TypeInfo_var))->get_managedCollation_23(); return L_4; } } // Mono.Globalization.Unicode.SimpleCollator System.Globalization.CompareInfo::GetCollator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * CompareInfo_GetCollator_m3566663FC53B48F661AD6F416AD024758493F933 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CompareInfo_GetCollator_m3566663FC53B48F661AD6F416AD024758493F933_MetadataUsageId); s_Il2CppMethodInitialized = true; } Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 * V_0 = NULL; bool V_1 = false; 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); { SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * L_0 = __this->get_collator_21(); if (!L_0) { goto IL_000f; } } { SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * L_1 = __this->get_collator_21(); return L_1; } IL_000f: { Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 * L_2 = ((CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_StaticFields*)il2cpp_codegen_static_fields_for(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_il2cpp_TypeInfo_var))->get_collators_22(); if (L_2) { goto IL_002c; } } { IL2CPP_RUNTIME_CLASS_INIT(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_il2cpp_TypeInfo_var); StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * L_3 = StringComparer_get_Ordinal_m1F38FBAB170DF80D33FE2A849D30FF2E314D9FDB_inline(/*hidden argument*/NULL); Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 * L_4 = (Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 *)il2cpp_codegen_object_new(Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3_il2cpp_TypeInfo_var); Dictionary_2__ctor_mAABE195367CBB1AFADF65A68610C2C3E5446FA43(L_4, L_3, /*hidden argument*/Dictionary_2__ctor_mAABE195367CBB1AFADF65A68610C2C3E5446FA43_RuntimeMethod_var); InterlockedCompareExchangeImpl<Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 *>((Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 **)(((CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_StaticFields*)il2cpp_codegen_static_fields_for(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_il2cpp_TypeInfo_var))->get_address_of_collators_22()), L_4, (Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 *)NULL); } IL_002c: { Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 * L_5 = ((CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_StaticFields*)il2cpp_codegen_static_fields_for(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_il2cpp_TypeInfo_var))->get_collators_22(); V_0 = L_5; V_1 = (bool)0; } IL_0034: try { // begin try (depth: 1) { Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 * L_6 = V_0; Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_6, (bool*)(&V_1), /*hidden argument*/NULL); Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 * L_7 = ((CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_StaticFields*)il2cpp_codegen_static_fields_for(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_il2cpp_TypeInfo_var))->get_collators_22(); String_t* L_8 = __this->get_m_sortName_4(); SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 ** L_9 = __this->get_address_of_collator_21(); NullCheck(L_7); bool L_10 = Dictionary_2_TryGetValue_mA0C2ACFD76D61DA29EA3D190AFD906C75A3C9B51(L_7, L_8, (SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 **)L_9, /*hidden argument*/Dictionary_2_TryGetValue_mA0C2ACFD76D61DA29EA3D190AFD906C75A3C9B51_RuntimeMethod_var); if (L_10) { goto IL_0080; } } IL_0054: { String_t* L_11 = __this->get_m_name_3(); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_12 = CultureInfo_GetCultureInfo_mC35FFFC4C2C9F4A4D5BC19E483464978E25E7350(L_11, /*hidden argument*/NULL); SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * L_13 = (SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 *)il2cpp_codegen_object_new(SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89_il2cpp_TypeInfo_var); SimpleCollator__ctor_m425CCCFC8354699C91043D289C2DD7A20F437298(L_13, L_12, /*hidden argument*/NULL); __this->set_collator_21(L_13); Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 * L_14 = ((CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_StaticFields*)il2cpp_codegen_static_fields_for(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_il2cpp_TypeInfo_var))->get_collators_22(); String_t* L_15 = __this->get_m_sortName_4(); SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * L_16 = __this->get_collator_21(); NullCheck(L_14); Dictionary_2_set_Item_mA93729C8731ED32F7F1DAD2154CEFC6236707CE1(L_14, L_15, L_16, /*hidden argument*/Dictionary_2_set_Item_mA93729C8731ED32F7F1DAD2154CEFC6236707CE1_RuntimeMethod_var); } IL_0080: { IL2CPP_LEAVE(0x8C, FINALLY_0082); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0082; } FINALLY_0082: { // begin finally (depth: 1) { bool L_17 = V_1; if (!L_17) { goto IL_008b; } } IL_0085: { Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 * L_18 = V_0; Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_18, /*hidden argument*/NULL); } IL_008b: { IL2CPP_END_FINALLY(130) } } // end finally (depth: 1) IL2CPP_CLEANUP(130) { IL2CPP_JUMP_TBL(0x8C, IL_008c) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_008c: { SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * L_19 = __this->get_collator_21(); return L_19; } } // System.Globalization.SortKey System.Globalization.CompareInfo::CreateSortKeyCore(System.String,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9 * CompareInfo_CreateSortKeyCore_m6C1597391D8D5ED265849A82F697777EF86D5FE8 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___source0, int32_t ___options1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CompareInfo_CreateSortKeyCore_m6C1597391D8D5ED265849A82F697777EF86D5FE8_MetadataUsageId); s_Il2CppMethodInitialized = true; } SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9 * V_0 = NULL; { bool L_0 = CompareInfo_get_UseManagedCollation_mE3EDFF2DB83257810C9BEA1A09987D669F45EB2F(/*hidden argument*/NULL); if (!L_0) { goto IL_0015; } } { SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * L_1 = CompareInfo_GetCollator_m3566663FC53B48F661AD6F416AD024758493F933(__this, /*hidden argument*/NULL); String_t* L_2 = ___source0; int32_t L_3 = ___options1; NullCheck(L_1); SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9 * L_4 = SimpleCollator_GetSortKey_m016BF061CEA62BF2E99B122B913C43FB1643F1A0(L_1, L_2, L_3, /*hidden argument*/NULL); return L_4; } IL_0015: { int32_t L_5 = __this->get_culture_6(); String_t* L_6 = ___source0; int32_t L_7 = ___options1; SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9 * L_8 = (SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9 *)il2cpp_codegen_object_new(SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9_il2cpp_TypeInfo_var); SortKey__ctor_m9DDF38B93F6C34DD3F7FF538B7C4E1BC9629CCF3(L_8, L_5, L_6, L_7, /*hidden argument*/NULL); V_0 = L_8; SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9 * L_9 = V_0; String_t* L_10 = ___source0; int32_t L_11 = ___options1; CompareInfo_assign_sortkey_m343AC3670D7F354B4767412AECB8D698FE267DAC(__this, L_9, L_10, L_11, /*hidden argument*/NULL); SortKey_tD5C96B638D8C6D0C4C2F49F27387D51202D78FD9 * L_12 = V_0; return L_12; } } // System.Int32 System.Globalization.CompareInfo::internal_index_switch(System.String,System.Int32,System.Int32,System.String,System.Globalization.CompareOptions,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_internal_index_switch_m2F1E3B731F1409587BB371D7DAFAA831A3064D27 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___s10, int32_t ___sindex1, int32_t ___count2, String_t* ___s23, int32_t ___opt4, bool ___first5, const RuntimeMethod* method) { { int32_t L_0 = ___opt4; bool L_1 = ___first5; if (!((int32_t)((int32_t)((((int32_t)L_0) == ((int32_t)((int32_t)1073741824)))? 1 : 0)&(int32_t)L_1))) { goto IL_0019; } } { String_t* L_2 = ___s10; String_t* L_3 = ___s23; int32_t L_4 = ___sindex1; int32_t L_5 = ___count2; NullCheck(L_2); int32_t L_6 = String_IndexOfUnchecked_m372BBB8A4722BFDE7CF4856F0EE0B4A197C5AFB0(L_2, L_3, L_4, L_5, /*hidden argument*/NULL); return L_6; } IL_0019: { bool L_7 = CompareInfo_get_UseManagedCollation_mE3EDFF2DB83257810C9BEA1A09987D669F45EB2F(/*hidden argument*/NULL); if (L_7) { goto IL_0030; } } { String_t* L_8 = ___s10; int32_t L_9 = ___sindex1; int32_t L_10 = ___count2; String_t* L_11 = ___s23; int32_t L_12 = ___opt4; bool L_13 = ___first5; int32_t L_14 = CompareInfo_internal_index_mC84E39918F364D80B7D6BFD8BD9B301A5246A5BA(__this, L_8, L_9, L_10, L_11, L_12, L_13, /*hidden argument*/NULL); return L_14; } IL_0030: { String_t* L_15 = ___s10; int32_t L_16 = ___sindex1; int32_t L_17 = ___count2; String_t* L_18 = ___s23; int32_t L_19 = ___opt4; bool L_20 = ___first5; int32_t L_21 = CompareInfo_internal_index_managed_m778771910402DCA9C9FC647B64DDAADDC0BB7196(__this, L_15, L_16, L_17, L_18, L_19, L_20, /*hidden argument*/NULL); return L_21; } } // System.Int32 System.Globalization.CompareInfo::internal_compare_switch(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_internal_compare_switch_m01ABB70A6962856A9FFD4428A236E3DA2DB9DCC4 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___str10, int32_t ___offset11, int32_t ___length12, String_t* ___str23, int32_t ___offset24, int32_t ___length25, int32_t ___options6, const RuntimeMethod* method) { { bool L_0 = CompareInfo_get_UseManagedCollation_mE3EDFF2DB83257810C9BEA1A09987D669F45EB2F(/*hidden argument*/NULL); if (L_0) { goto IL_0019; } } { String_t* L_1 = ___str10; int32_t L_2 = ___offset11; int32_t L_3 = ___length12; String_t* L_4 = ___str23; int32_t L_5 = ___offset24; int32_t L_6 = ___length25; int32_t L_7 = ___options6; int32_t L_8 = CompareInfo_internal_compare_m89017707030EDFA08245A84B2F4D786AAC7CFEEE(__this, L_1, L_2, L_3, L_4, L_5, L_6, L_7, /*hidden argument*/NULL); return L_8; } IL_0019: { String_t* L_9 = ___str10; int32_t L_10 = ___offset11; int32_t L_11 = ___length12; String_t* L_12 = ___str23; int32_t L_13 = ___offset24; int32_t L_14 = ___length25; int32_t L_15 = ___options6; int32_t L_16 = CompareInfo_internal_compare_managed_mCE97B39EB5C1BE15E1E2D74BD023F8B0535E7607(__this, L_9, L_10, L_11, L_12, L_13, L_14, L_15, /*hidden argument*/NULL); return L_16; } } // System.Int32 System.Globalization.CompareInfo::internal_compare_managed(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_internal_compare_managed_mCE97B39EB5C1BE15E1E2D74BD023F8B0535E7607 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___str10, int32_t ___offset11, int32_t ___length12, String_t* ___str23, int32_t ___offset24, int32_t ___length25, int32_t ___options6, const RuntimeMethod* method) { { SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * L_0 = CompareInfo_GetCollator_m3566663FC53B48F661AD6F416AD024758493F933(__this, /*hidden argument*/NULL); String_t* L_1 = ___str10; int32_t L_2 = ___offset11; int32_t L_3 = ___length12; String_t* L_4 = ___str23; int32_t L_5 = ___offset24; int32_t L_6 = ___length25; int32_t L_7 = ___options6; NullCheck(L_0); int32_t L_8 = SimpleCollator_Compare_mEDE295E6D8B3ACB2378D50267659C9203ACBD795(L_0, L_1, L_2, L_3, L_4, L_5, L_6, L_7, /*hidden argument*/NULL); return L_8; } } // System.Int32 System.Globalization.CompareInfo::internal_index_managed(System.String,System.Int32,System.Int32,System.String,System.Globalization.CompareOptions,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_internal_index_managed_m778771910402DCA9C9FC647B64DDAADDC0BB7196 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___s10, int32_t ___sindex1, int32_t ___count2, String_t* ___s23, int32_t ___opt4, bool ___first5, const RuntimeMethod* method) { { bool L_0 = ___first5; if (L_0) { goto IL_0017; } } { SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * L_1 = CompareInfo_GetCollator_m3566663FC53B48F661AD6F416AD024758493F933(__this, /*hidden argument*/NULL); String_t* L_2 = ___s10; String_t* L_3 = ___s23; int32_t L_4 = ___sindex1; int32_t L_5 = ___count2; int32_t L_6 = ___opt4; NullCheck(L_1); int32_t L_7 = SimpleCollator_LastIndexOf_m86547689DF681227BFE04C802D2BFB8560F9EE84(L_1, L_2, L_3, L_4, L_5, L_6, /*hidden argument*/NULL); return L_7; } IL_0017: { SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * L_8 = CompareInfo_GetCollator_m3566663FC53B48F661AD6F416AD024758493F933(__this, /*hidden argument*/NULL); String_t* L_9 = ___s10; String_t* L_10 = ___s23; int32_t L_11 = ___sindex1; int32_t L_12 = ___count2; int32_t L_13 = ___opt4; NullCheck(L_8); int32_t L_14 = SimpleCollator_IndexOf_mD91169E7D477C503B2DED708B19CE36FF63C6856(L_8, L_9, L_10, L_11, L_12, L_13, /*hidden argument*/NULL); return L_14; } } // System.Void System.Globalization.CompareInfo::assign_sortkey(System.Object,System.String,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompareInfo_assign_sortkey_m343AC3670D7F354B4767412AECB8D698FE267DAC (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, RuntimeObject * ___key0, String_t* ___source1, int32_t ___options2, const RuntimeMethod* method) { typedef void (*CompareInfo_assign_sortkey_m343AC3670D7F354B4767412AECB8D698FE267DAC_ftn) (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 *, RuntimeObject *, String_t*, int32_t); using namespace il2cpp::icalls; ((CompareInfo_assign_sortkey_m343AC3670D7F354B4767412AECB8D698FE267DAC_ftn)mscorlib::System::Globalization::CompareInfo::assign_sortkey) (__this, ___key0, ___source1, ___options2); } // System.Int32 System.Globalization.CompareInfo::internal_compare(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_internal_compare_m89017707030EDFA08245A84B2F4D786AAC7CFEEE (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___str10, int32_t ___offset11, int32_t ___length12, String_t* ___str23, int32_t ___offset24, int32_t ___length25, int32_t ___options6, const RuntimeMethod* method) { typedef int32_t (*CompareInfo_internal_compare_m89017707030EDFA08245A84B2F4D786AAC7CFEEE_ftn) (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 *, String_t*, int32_t, int32_t, String_t*, int32_t, int32_t, int32_t); using namespace il2cpp::icalls; return ((CompareInfo_internal_compare_m89017707030EDFA08245A84B2F4D786AAC7CFEEE_ftn)mscorlib::System::Globalization::CompareInfo::internal_compare) (__this, ___str10, ___offset11, ___length12, ___str23, ___offset24, ___length25, ___options6); } // System.Int32 System.Globalization.CompareInfo::internal_index(System.String,System.Int32,System.Int32,System.String,System.Globalization.CompareOptions,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_internal_index_mC84E39918F364D80B7D6BFD8BD9B301A5246A5BA (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, String_t* ___source0, int32_t ___sindex1, int32_t ___count2, String_t* ___value3, int32_t ___options4, bool ___first5, const RuntimeMethod* method) { typedef int32_t (*CompareInfo_internal_index_mC84E39918F364D80B7D6BFD8BD9B301A5246A5BA_ftn) (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 *, String_t*, int32_t, int32_t, String_t*, int32_t, bool); using namespace il2cpp::icalls; return ((CompareInfo_internal_index_mC84E39918F364D80B7D6BFD8BD9B301A5246A5BA_ftn)mscorlib::System::Globalization::CompareInfo::internal_index) (__this, ___source0, ___sindex1, ___count2, ___value3, ___options4, ___first5); } // System.Void System.Globalization.CompareInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompareInfo__ctor_m841EB6DC314800AC90C16EDB259B8DBB3BCFA152 (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CompareInfo__ctor_m841EB6DC314800AC90C16EDB259B8DBB3BCFA152_MetadataUsageId); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(CompareInfo__ctor_m841EB6DC314800AC90C16EDB259B8DBB3BCFA152_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void EventData_set_Size_m43C4529AD157BEC415C9338748703B06D1B63579_inline (EventData_tA4F2B7D36DF2FDCB4074D2088BF766EBEC2A9B04 * __this, int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; __this->set_m_Size_1(L_0); return; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool EventProvider_IsEnabled_m3C139A2AA66437973E6E41421D09300222F2CC4B_inline (EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_m_enabled_8(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t EventProvider_get_Level_m68A0811632D34B78A4C86E545AE957EAE1819B51_inline (EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483 * __this, const RuntimeMethod* method) { { uint8_t L_0 = __this->get_m_level_4(); return (int32_t)(L_0); } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int64_t EventProvider_get_MatchAnyKeyword_mAB5C8F8500A479EA5294786DA79D8147A6681D2D_inline (EventProvider_t70CEE09111DA394FEAE007A324A44F737E74D483 * __this, const RuntimeMethod* method) { { int64_t L_0 = __this->get_m_anyKeywordMask_5(); return (int64_t)(L_0); } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline (String_t* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_m_stringLength_0(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t EventAttribute_get_EventId_mECBD6F6FA850319FF22D8C98CD56AFC44A786557_inline (EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_U3CEventIdU3Ek__BackingField_0(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR uint8_t EventAttribute_get_Version_m3AAD912A9FC7924161D37BD19D89ECBA5BDD0CF6_inline (EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1 * __this, const RuntimeMethod* method) { { uint8_t L_0 = __this->get_U3CVersionU3Ek__BackingField_4(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t EventAttribute_get_Level_mB5C7FA65BD79AA55FB614D04B573187E715081EA_inline (EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_U3CLevelU3Ek__BackingField_1(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* EventAttribute_get_Message_m058E0091B7D3211698644AC7149075C9355DD519_inline (EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_U3CMessageU3Ek__BackingField_5(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int64_t EventAttribute_get_Keywords_m6889779A5A55DB96A591BF26676DFCDDD0520142_inline (EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1 * __this, const RuntimeMethod* method) { { int64_t L_0 = __this->get_U3CKeywordsU3Ek__BackingField_2(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t EventAttribute_get_Opcode_m2D6D1FA345ABB33FEB10D4A9C0878CCB5C811712_inline (EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_m_opcode_8(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t EventAttribute_get_Task_m670824C9F357501D5AEB3051330FBDE3DEBFA7A3_inline (EventAttribute_t2BBB5CB51746AE5ABE68D2DAE4614F284400D7F1 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_U3CTaskU3Ek__BackingField_3(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * StringComparer_get_Ordinal_m1F38FBAB170DF80D33FE2A849D30FF2E314D9FDB_inline (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (StringComparer_get_Ordinal_m1F38FBAB170DF80D33FE2A849D30FF2E314D9FDBmscorlib4_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_il2cpp_TypeInfo_var); StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * L_0 = ((StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_StaticFields*)il2cpp_codegen_static_fields_for(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_il2cpp_TypeInfo_var))->get__ordinal_2(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int64_t TimeSpan_get_Ticks_m829C28C42028CDBFC9E338962DC7B6B10C8FFBE7_inline (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, const RuntimeMethod* method) { { int64_t L_0 = __this->get__ticks_3(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t TraceLoggingTypeInfo_get_Level_mD8605194C1D768CFA1DE8E64ADF5CF89CC082CBF_inline (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_level_2(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t TraceLoggingTypeInfo_get_Opcode_mC5C1A9BD89FA8C785228FF61A25787BBC10544C1_inline (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_opcode_3(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int64_t TraceLoggingTypeInfo_get_Keywords_mDD63841C50042CE015E3E37C872F083190147C06_inline (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * __this, const RuntimeMethod* method) { { int64_t L_0 = __this->get_keywords_1(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* TraceLoggingTypeInfo_get_Name_m71FC96A7FD12F7BBF6B28451E05B549EC9C29995_inline (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_name_0(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t TraceLoggingMetadataCollector_get_Tags_m0F851297CC3BBE6DEA97B0DDA27EBC4462FCDA4A_inline (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_U3CTagsU3Ek__BackingField_3(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void TraceLoggingMetadataCollector_set_Tags_mF42A2BC303AB0CE39F1CD993178A05E17D306B44_inline (TraceLoggingMetadataCollector_t794F754226AD9DDCF0B4E0055DE3AA7378DEDD7E * __this, int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; __this->set_U3CTagsU3Ek__BackingField_3(L_0); return; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* EventFieldAttribute_get_Name_m49EA259EE61C829EA9F76EE79E0C1BC610235467_inline (EventFieldAttribute_tCD8E252D7D673724F2980B794282B715E16A675C * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_U3CNameU3Ek__BackingField_1(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t TraceLoggingTypeInfo_get_Tags_mDBDBBB08C1EC06514A4F899DA788100F1C36AF77_inline (TraceLoggingTypeInfo_t20C551D7A794E567EA451C7C8E8BAA4F7E2E263F * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_tags_4(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t EventDataAttribute_get_Level_m2645CBBEA5EF6157B33D20DFFD92881FA5CB0D8B_inline (EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_level_0(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t EventDataAttribute_get_Opcode_mA9A0A7D84CD44B13F027B45AF1D8B5F0B435D79D_inline (EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_opcode_1(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int64_t EventDataAttribute_get_Keywords_m8D6FDC6B0786770D3C977A2440F9812F21B200E1_inline (EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * __this, const RuntimeMethod* method) { { int64_t L_0 = __this->get_U3CKeywordsU3Ek__BackingField_3(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t EventDataAttribute_get_Tags_m412BCFA2B5FA99B82732C89EBC378E3A10AECB62_inline (EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_U3CTagsU3Ek__BackingField_4(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* EventDataAttribute_get_Name_m9AA2FCA324D80D38117FA506A81F54EAD3262D0F_inline (EventDataAttribute_t1D5900E119C876806FC056E30DDBE11D841A1F85 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_U3CNameU3Ek__BackingField_2(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void Exception_set_HResult_m920DF8C728D8A0EC0759685FED890C775FA08B99_inline (Exception_t * __this, int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; __this->set__HResult_11(L_0); return; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t Exception_get_HResult_m1F2775B234F243AD3D8AAE63B1BB5130ADD29502_inline (Exception_t * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get__HResult_11(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t StreamingContext_get_State_mC28CB681EC71C3E6B08B277F3BD0F041FC5D1F62_inline (StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_m_state_1(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* AssemblyName_get_Name_m6EA5C18D2FF050D3AF58D4A21ED39D161DFF218B_inline (AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_name_0(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * ExceptionDispatchInfo_get_BinaryStackTraceArray_mB03FCEE86CCD7523AF2856B74B8FD66936491701_inline (ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_m_stackTrace_1(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void Calendar_SetReadOnlyState_m257219F0844460D6BBC3A13B3FD021204583FC2B_inline (Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * __this, bool ___readOnly0, const RuntimeMethod* method) { { bool L_0 = ___readOnly0; __this->set_m_isReadOnly_1(L_0); return; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* CultureInfo_get_SortName_m781E78F10C18827A614272C7AB621683BFA968A5_inline (CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_m_name_13(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool MSCompatUnicodeTable_get_IsReady_mFFB82666A060D9A75368AA858810C41008CDD294_inline (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (MSCompatUnicodeTable_get_IsReady_mFFB82666A060D9A75368AA858810C41008CDD294mscorlib4_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(MSCompatUnicodeTable_tF7317B16A2F3BD7B319A929F839E7E23ECCE860B_il2cpp_TypeInfo_var); bool L_0 = ((MSCompatUnicodeTable_tF7317B16A2F3BD7B319A929F839E7E23ECCE860B_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_tF7317B16A2F3BD7B319A929F839E7E23ECCE860B_il2cpp_TypeInfo_var))->get_isReady_18(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m219EC3BCCD8CF3A474AD0C4DBA55EB9B74C9F89C_gshared_inline (Enumerator_t52B74DE77FB2834C7A6E4DEFC01F9E5818235AB2 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_current_3(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m29EC6C6EB1047528546CB514A575C8C4EFA48E1C_gshared_inline (Enumerator_tB5076FB1730C18188DBB208FD1B6870FC5A660E6 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_currentValue_3(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR uint64_t Enumerator_get_Current_m7E3BB9CBEBA4C07616DE07B4857E30FD01D97267_gshared_inline (Enumerator_t46B8FA0EA6058B0B5871CE816B84FA8AAF77208B * __this, const RuntimeMethod* method) { { uint64_t L_0 = (uint64_t)__this->get_current_3(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_mD7829C7E8CFBEDD463B15A951CDE9B90A12CC55C_gshared_inline (Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_current_3(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR 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; } }
[ "mshoshan@uci.edu" ]
mshoshan@uci.edu
9b545ce6494d85856b759a91647c36bb118a820e
59b45f9f8960084fe8247860ddfc584237f87066
/frameworks/runtime-src/Classes/AppDelegate.cpp
f61ae26d264debd909aa8a4c20df91431f42dea4
[]
no_license
zhengqiangzi/pai
e6756db7b8ef8e9a4ee7bb41433b9848aac936dc
183030f6d7dc29f84404ff797ebad98d769c90e9
refs/heads/master
2021-01-19T22:29:44.704723
2015-07-04T10:46:57
2015-07-04T10:46:57
38,530,689
0
0
null
null
null
null
UTF-8
C++
false
false
3,788
cpp
#include "AppDelegate.h" #include "SimpleAudioEngine.h" #include "jsb_cocos2dx_auto.hpp" #include "jsb_cocos2dx_ui_auto.hpp" #include "jsb_cocos2dx_studio_auto.hpp" #include "jsb_cocos2dx_builder_auto.hpp" #include "jsb_cocos2dx_spine_auto.hpp" #include "jsb_cocos2dx_extension_auto.hpp" #include "ui/jsb_cocos2dx_ui_manual.h" #include "cocostudio/jsb_cocos2dx_studio_manual.h" #include "cocosbuilder/js_bindings_ccbreader.h" #include "spine/jsb_cocos2dx_spine_manual.h" #include "extension/jsb_cocos2dx_extension_manual.h" #include "localstorage/js_bindings_system_registration.h" #include "chipmunk/js_bindings_chipmunk_registration.h" #include "jsb_opengl_registration.h" #include "network/XMLHTTPRequest.h" #include "network/jsb_websocket.h" #include "network/jsb_socketio.h" #if (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID) #include "platform/android/CCJavascriptJavaBridge.h" #endif USING_NS_CC; using namespace CocosDenshion; AppDelegate::AppDelegate() { } AppDelegate::~AppDelegate() { ScriptEngineManager::destroyInstance(); } bool AppDelegate::applicationDidFinishLaunching() { // initialize director auto director = Director::getInstance(); auto glview = director->getOpenGLView(); if(!glview) { glview = GLView::createWithRect("xiaoxiong", Rect(0,0,900,640)); director->setOpenGLView(glview); } // turn on display FPS director->setDisplayStats(true); // set FPS. the default value is 1.0/60 if you don't call this director->setAnimationInterval(1.0 / 60); ScriptingCore* sc = ScriptingCore::getInstance(); sc->addRegisterCallback(register_all_cocos2dx); sc->addRegisterCallback(register_all_cocos2dx_extension); sc->addRegisterCallback(register_cocos2dx_js_extensions); sc->addRegisterCallback(register_all_cocos2dx_extension_manual); sc->addRegisterCallback(jsb_register_chipmunk); sc->addRegisterCallback(jsb_register_system); sc->addRegisterCallback(JSB_register_opengl); sc->addRegisterCallback(register_all_cocos2dx_builder); sc->addRegisterCallback(register_CCBuilderReader); sc->addRegisterCallback(register_all_cocos2dx_ui); sc->addRegisterCallback(register_all_cocos2dx_ui_manual); sc->addRegisterCallback(register_all_cocos2dx_studio); sc->addRegisterCallback(register_all_cocos2dx_studio_manual); sc->addRegisterCallback(register_all_cocos2dx_spine); sc->addRegisterCallback(register_all_cocos2dx_spine_manual); sc->addRegisterCallback(MinXmlHttpRequest::_js_register); sc->addRegisterCallback(register_jsb_websocket); sc->addRegisterCallback(register_jsb_socketio); #if (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID) sc->addRegisterCallback(JavascriptJavaBridge::_js_register); #endif sc->start(); ScriptEngineProtocol *engine = ScriptingCore::getInstance(); ScriptEngineManager::getInstance()->setScriptEngine(engine); ScriptingCore::getInstance()->runScript("main.js"); return true; } // This function will be called when the app is inactive. When comes a phone call,it's be invoked too void AppDelegate::applicationDidEnterBackground() { auto director = Director::getInstance(); director->stopAnimation(); director->getEventDispatcher()->dispatchCustomEvent("game_on_hide"); SimpleAudioEngine::getInstance()->pauseBackgroundMusic(); SimpleAudioEngine::getInstance()->pauseAllEffects(); } // this function will be called when the app is active again void AppDelegate::applicationWillEnterForeground() { auto director = Director::getInstance(); director->startAnimation(); director->getEventDispatcher()->dispatchCustomEvent("game_on_show"); SimpleAudioEngine::getInstance()->resumeBackgroundMusic(); SimpleAudioEngine::getInstance()->resumeAllEffects(); }
[ "zhengqiangzi123@163.com" ]
zhengqiangzi123@163.com
011c10218f98aeaea27f2c638226663b09d3b178
bed24c848700bc3f8ad4754d4bb3cf457c14ebbb
/9-递归/22.括号生成.cpp
637fb0441ca7da1b6649b9198b4f066ce1bbeb34
[]
no_license
sikey647/Algorithms
09cf80f5c59ecec123e012563760559100ab78e5
dd211e5b1c41fa1a8a430bcd64d61ce141bd7f34
refs/heads/master
2023-07-22T00:06:54.679346
2021-08-23T03:19:40
2021-08-23T03:19:40
223,762,884
2
0
null
null
null
null
UTF-8
C++
false
false
874
cpp
/* * @lc app=leetcode.cn id=22 lang=cpp * * [22] 括号生成 */ #include <string> #include <vector> using namespace std; // @lc code=start class Solution { public: vector<string> generateParenthesis(int n) { vector<string> res; string sub; helper(res, sub, 0, 0, n); return res; } void helper(vector<string>& res, string& sub, int left, int right, int n) { // 递归终止条件 if (left == n && right == n) { res.push_back(sub); } // 处理当前层逻辑 if(left < n) { sub.push_back('('); helper(res, sub, left + 1, right, n); sub.pop_back(); } if (right < left) { sub.push_back(')'); helper(res, sub, left, right + 1, n); sub.pop_back(); } } }; // @lc code=end
[ "liuciqi@zuoyebang.com" ]
liuciqi@zuoyebang.com
7f1447ee051df0e32829cb5cac5db28bb3f8a6a6
84a80d86aa7e4b62b5970a881a77d69991ff9dfc
/cartographer/cartographer/mapping/trajectory_node.h
c9b699ac4152ec49287d9800e869b4b49c574bdd
[ "Apache-2.0" ]
permissive
caoyifeng001/homework
266c3286386f7d981a98ca6e87ba5e5d125d7e27
9a61de1408da6dd7802da89e96918e1fac1f4f00
refs/heads/master
2020-04-14T10:57:33.012184
2019-01-07T22:22:49
2019-01-07T22:22:49
163,800,651
6
1
null
null
null
null
UTF-8
C++
false
false
3,308
h
/* * Copyright 2016 The Cartographer Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef CARTOGRAPHER_MAPPING_TRAJECTORY_NODE_H_ #define CARTOGRAPHER_MAPPING_TRAJECTORY_NODE_H_ #include <deque> #include <vector> #include "eigen3/Eigen/Core" #include "../common/time.h" #include "../sensor/laser.h" #include "../transform/rigid_transform.h" namespace cartographer { namespace mapping { struct Submaps; //纯粹机器人运动轨迹上的一个节点 //这个节点的意思就是一个坐标点以及在这个坐标点上的一些传感器数据,主要就是激光雷达 struct TrajectoryNode { //这个轨迹节点上不会变化的一些数据 struct ConstantData { //这个节点的时间 common::Time time; // LaserFan in 'pose' frame. Only used in the 2D case. // 这个节点上的激光数据 2D情况使用 // 对于2D的情况 这里的数据是已经经过下面的tracking_to_pose这个矩阵进行转换过了的, // 被投影到平面的2D激光数据 sensor::LaserFan laser_fan; // LaserFan in 'pose' frame. Only used in the 3D case. // 这个节点上的激光数据 3D情况使用 sensor::CompressedLaserFan3D laser_fan_3d; // Trajectory this node belongs to. // TODO(jmason): The naming here is confusing because 'trajectory' doesn't // seem like a good name for a Submaps*. Sort this out. // 这个节点属于哪一条轨迹 轨迹就是一系列的submap const Submaps* trajectory; // Transform from the 3D 'tracking' frame to the 'pose' frame of the // laser, which contains roll, pitch and height for 2D. In 3D this is // always identity. // 从3d tracking坐标系 转换到 pose坐标系的转换矩阵 // 注意这个矩阵只对于2D情况有用 在2D的情况下 把激光雷达从3D空间转换到2D平面的转换矩阵 // 对于3D的情况,这个矩阵永远都等于I,因为本身就是三维的,不需要转换。 transform::Rigid3d tracking_to_pose; }; common::Time time() const { return constant_data->time; } //存储这个节点的ConstantData const ConstantData* constant_data; //这个节点自己的位姿 transform::Rigid3d pose; }; // Users will only be interested in 'trajectory_nodes'. But 'constant_data' // is referenced by 'trajectory_nodes'. This struct guarantees that their // lifetimes are bound. // 只需要考虑trajectory_nodes就可以了。这个存储机器人的一整条轨迹。 // 这里的轨迹表示各种位姿点 不是submap struct TrajectoryNodes { std::deque<mapping::TrajectoryNode::ConstantData> constant_data; std::vector<mapping::TrajectoryNode> trajectory_nodes; }; } // namespace mapping } // namespace cartographer #endif // CARTOGRAPHER_MAPPING_TRAJECTORY_NODE_H_
[ "2018734045@qq.com" ]
2018734045@qq.com
080bd7132d170d87b5717dd5fb79c14634d72fd3
d3e6a208fdc11e2ad35616a0549e1316a549d0b6
/Code/InvertedIndex/filequeue.cpp
85df0db89d170efe39e1987b1fcc87dca4b10a70
[]
no_license
Sergey-Koval/Multithreaded-Indexer
e46cc020c269e46c4b741f2a27d17e23b37caede
2db450f5772b9389b9fad4d80f78505e75cfa9ea
refs/heads/master
2022-07-18T04:40:49.969401
2020-05-23T17:45:35
2020-05-23T17:45:35
null
0
0
null
null
null
null
UTF-8
C++
false
false
400
cpp
#include "filequeue.h" fileQueue::fileQueue() {} std::string* fileQueue::get() { mtx.lock(); if (q.empty()) { mtx.unlock(); return nullptr; } std::string* res = new std::string; *res = q.front(); q.pop(); mtx.unlock(); return res; } void fileQueue::add(std::string file) { mtx.lock(); q.push(file); mtx.unlock(); } unsigned fileQueue::getSize() { return q.size(); }
[ "kovalsergii6@gmail.com" ]
kovalsergii6@gmail.com
4d10e57b526720f420efb3e61da679acbc90ae7a
469176a1cbce6090f2a168862442eb0277403f75
/faceSwap/src/main/jni/dlib/dnn/cudnn_dlibapi.cpp
80fecaef663ce36bc40e5e3a421b0f056444ad51
[ "Apache-2.0", "BSL-1.0" ]
permissive
adunye/Face-Swap-Android
a208798743c55f4f3c5f249cc8b6f52c02977057
7c203d6ef17dbff9d8be538dbfb2c2757ee446ae
refs/heads/master
2020-03-28T03:44:26.905917
2018-09-06T17:30:41
2018-09-06T17:30:41
147,667,717
0
0
Apache-2.0
2018-09-06T12:07:30
2018-09-06T12:07:30
null
UTF-8
C++
false
false
58,677
cpp
// Copyright (C) 2015 Davis E. King (davis@dlib.net) // License: Boost Software License See LICENSE.txt for the full license. #ifndef DLIB_DNN_CuDNN_CPP_ #define DLIB_DNN_CuDNN_CPP_ #ifdef DLIB_USE_CUDA #include "cudnn_dlibapi.h" #include "tensor.h" #include <cudnn.h> #include <iostream> #include <string> #include "cuda_utils.h" #include "cpu_dlib.h" #include "cuda_dlib.h" #include "tensor_tools.h" static const char* cudnn_get_error_string(cudnnStatus_t s) { switch(s) { case CUDNN_STATUS_NOT_INITIALIZED: return "CUDA Runtime API initialization failed."; case CUDNN_STATUS_ALLOC_FAILED: return "CUDA Resources could not be allocated."; case CUDNN_STATUS_BAD_PARAM: return "CUDNN_STATUS_BAD_PARAM"; case CUDNN_STATUS_EXECUTION_FAILED: return "CUDNN_STATUS_EXECUTION_FAILED"; case CUDNN_STATUS_NOT_SUPPORTED: return "CUDNN_STATUS_NOT_SUPPORTED"; default: return "A call to cuDNN failed"; } } // Check the return value of a call to the cuDNN runtime for an error condition. #define CHECK_CUDNN(call) \ do{ \ const cudnnStatus_t error = call; \ if (error != CUDNN_STATUS_SUCCESS) \ { \ std::ostringstream sout; \ sout << "Error while calling " << #call << " in file " << __FILE__ << ":" << __LINE__ << ". ";\ sout << "code: " << error << ", reason: " << cudnn_get_error_string(error);\ throw dlib::cudnn_error(sout.str()); \ } \ }while(false) namespace dlib { namespace cuda { // ------------------------------------------------------------------------------------ static cudnnTensorDescriptor_t descriptor(const tensor& t) { return (const cudnnTensorDescriptor_t)t.get_cudnn_tensor_descriptor().get_handle(); } static cudnnTensorDescriptor_t descriptor(const tensor_descriptor& t) { return (const cudnnTensorDescriptor_t)t.get_handle(); } // ------------------------------------------------------------------------------------ class cudnn_context { public: // not copyable cudnn_context(const cudnn_context&) = delete; cudnn_context& operator=(const cudnn_context&) = delete; cudnn_context() { CHECK_CUDNN(cudnnCreate(&handle)); CHECK_CUDA(cudaGetDevice(&device_id)); } ~cudnn_context() { cudnnDestroy(handle); } cudnnHandle_t get_handle ( ) { // Check if the active device for the current thread changed. If so then // regenerate our cuDNN handle so it will use the currently selected // device. int new_device_id; CHECK_CUDA(cudaGetDevice(&new_device_id)); if (new_device_id != device_id) { CHECK_CUDNN(cudnnDestroy(handle)); CHECK_CUDNN(cudnnCreate(&handle)); } return handle; } private: cudnnHandle_t handle; int device_id; }; static cudnnHandle_t context() { thread_local cudnn_context c; return c.get_handle(); } // ------------------------------------------------------------------------------------ class cudnn_activation_descriptor { public: // not copyable cudnn_activation_descriptor(const cudnn_activation_descriptor&) = delete; cudnn_activation_descriptor& operator=(const cudnn_activation_descriptor&) = delete; cudnn_activation_descriptor( cudnnActivationMode_t mode, cudnnNanPropagation_t reluNanOpt, double reluCeiling ) { CHECK_CUDNN(cudnnCreateActivationDescriptor(&handle)); CHECK_CUDNN(cudnnSetActivationDescriptor(handle, mode, reluNanOpt, reluCeiling)); } ~cudnn_activation_descriptor() { cudnnDestroyActivationDescriptor(handle); } cudnnActivationDescriptor_t get_handle ( ) { return handle; } private: cudnnActivationDescriptor_t handle; }; static cudnnActivationDescriptor_t relu_activation_descriptor() { thread_local cudnn_activation_descriptor des(CUDNN_ACTIVATION_RELU, CUDNN_PROPAGATE_NAN,0); return des.get_handle(); } static cudnnActivationDescriptor_t sigmoid_activation_descriptor() { thread_local cudnn_activation_descriptor des(CUDNN_ACTIVATION_SIGMOID, CUDNN_PROPAGATE_NAN,0); return des.get_handle(); } static cudnnActivationDescriptor_t tanh_activation_descriptor() { thread_local cudnn_activation_descriptor des(CUDNN_ACTIVATION_TANH, CUDNN_PROPAGATE_NAN,0); return des.get_handle(); } // ------------------------------------------------------------------------------------ tensor_descriptor:: tensor_descriptor( ) : handle(nullptr) { } tensor_descriptor:: ~tensor_descriptor() { set_size(0,0,0,0); } void tensor_descriptor:: set_size( int n, int k, int nr, int nc ) { if (n == 0 || nr == 0 || nc == 0 || k == 0) { if (handle) { cudnnDestroyTensorDescriptor((cudnnTensorDescriptor_t)handle); handle = nullptr; } } else { cudnnTensorDescriptor_t h; CHECK_CUDNN(cudnnCreateTensorDescriptor(&h)); handle = h; CHECK_CUDNN(cudnnSetTensor4dDescriptor((cudnnTensorDescriptor_t)handle, CUDNN_TENSOR_NCHW, CUDNN_DATA_FLOAT, n, k, nr, nc)); } } void tensor_descriptor:: get_size ( int& n, int& k, int& nr, int& nc ) const { if (handle) { int nStride, cStride, hStride, wStride; cudnnDataType_t datatype; CHECK_CUDNN(cudnnGetTensor4dDescriptor((cudnnTensorDescriptor_t)handle, &datatype, &n, &k, &nr, &nc, &nStride, &cStride, &hStride, &wStride)); } else { n = 0; k = 0; nr = 0; nc = 0; } } // ------------------------------------------------------------------------------------ void add( float beta, tensor& dest, float alpha, const tensor& src ) { DLIB_CASSERT( (have_same_dimensions(src, dest) || (src.num_samples()==1 && src.k()==dest.k() && src.nr()==1 && src.nc()==1) || (src.num_samples()==1 && src.k()==dest.k() && src.nr()==dest.nr() && src.nc()==dest.nc()) || (src.num_samples()==1 && src.k()==1 && src.nr()==dest.nr() && src.nc()==dest.nc())) && is_same_object(src,dest) == false , "\n\t dest.num_samples(): " << dest.num_samples() <<"\n\t dest.k(): " << dest.k() <<"\n\t dest.nr(): " << dest.nr() <<"\n\t dest.nc(): " << dest.nc() <<"\n\t src.num_samples(): " << src.num_samples() <<"\n\t src.k(): " << src.k() <<"\n\t src.nr(): " << src.nr() <<"\n\t src.nc(): " << src.nc() ); if (dest.size() == src.size() && beta == 1) { // Call the dlib function in this case since it's faster than the one that // comes with cuDNN (at least as of cuDNN v4). add_scaled(dest, alpha, src); return; } CHECK_CUDNN(cudnnAddTensor(context(), &alpha, descriptor(src), src.device(), &beta, descriptor(dest), dest.device())); } void set_tensor ( tensor& t, float value ) { if (t.size() == 0) return; CHECK_CUDNN(cudnnSetTensor(context(), descriptor(t), t.device_write_only(), &value)); } void scale_tensor ( tensor& t, float value ) { if (t.size() == 0) return; CHECK_CUDNN(cudnnScaleTensor(context(), descriptor(t), t.device(), &value)); } void assign_conv_bias_gradient ( tensor& grad, const tensor& gradient_input ) { DLIB_CASSERT( grad.num_samples() == 1 && grad.k() >= 1 && grad.nr() == 1 && grad.nc() == 1 && gradient_input.k() == grad.k() && gradient_input.size() > 0 && is_same_object(grad,gradient_input) == false ,""); const float alpha = 1; const float beta = 0; CHECK_CUDNN(cudnnConvolutionBackwardBias(context(), &alpha, descriptor(gradient_input), gradient_input.device(), &beta, descriptor(grad), grad.device())); } // ------------------------------------------------------------------------------------ void batch_normalize_inference ( const double eps, resizable_tensor& dest, const tensor& src, const tensor& gamma, const tensor& beta, const tensor& running_means, const tensor& running_variances ) { DLIB_CASSERT( gamma.num_samples() == 1 && gamma.nr() == src.nr() && gamma.nc() == src.nc() && gamma.k() == src.k() && have_same_dimensions(gamma, beta) && have_same_dimensions(gamma, running_means) && have_same_dimensions(gamma, running_variances) && eps > 0, "\ngamma.num_samples(): " << gamma.num_samples() << "\ngamma.k(): " << gamma.k() << "\ngamma.nr(): " << gamma.nr() << "\ngamma.nc(): " << gamma.nc() << "\nbeta.num_samples(): " << beta.num_samples() << "\nbeta.k(): " << beta.k() << "\nbeta.nr(): " << beta.nr() << "\nbeta.nc(): " << beta.nc() << "\nrunning_means.num_samples(): " << running_means.num_samples() << "\nrunning_means.k(): " << running_means.k() << "\nrunning_means.nr(): " << running_means.nr() << "\nrunning_means.nc(): " << running_means.nc() << "\nrunning_variances.num_samples(): " << running_variances.num_samples() << "\nrunning_variances.k(): " << running_variances.k() << "\nrunning_variances.nr(): " << running_variances.nr() << "\nrunning_variances.nc(): " << running_variances.nc() << "\nsrc.k(): " << src.k() << "\nsrc.nr(): " << src.nr() << "\nsrc.nc(): " << src.nc() << "\neps: " << eps ); const float in_scale = 1; const float out_scale = 0; dest.copy_size(src); CHECK_CUDNN(cudnnBatchNormalizationForwardInference( context(), CUDNN_BATCHNORM_PER_ACTIVATION, &in_scale, &out_scale, descriptor(src), src.device(), descriptor(dest), dest.device(), descriptor(gamma), gamma.device(), beta.device(), running_means.device(), running_variances.device(), eps)); } void batch_normalize ( const double eps, resizable_tensor& dest, resizable_tensor& means, resizable_tensor& invstds, const double averaging_factor, resizable_tensor& running_means, resizable_tensor& running_variances, const tensor& src, const tensor& gamma, const tensor& beta ) { DLIB_CASSERT(0 <= averaging_factor && averaging_factor <= 1, "averaging_factor: " << averaging_factor); DLIB_CASSERT(averaging_factor==1 || have_same_dimensions(running_means,means),""); DLIB_CASSERT(averaging_factor==1 || have_same_dimensions(running_variances,invstds),""); DLIB_CASSERT( src.num_samples() > 1 && gamma.num_samples() == 1 && beta.num_samples() == 1 && gamma.nr() == beta.nr() && beta.nr() == src.nr() && gamma.nc() == beta.nc() && beta.nc() == src.nc() && gamma.k() == beta.k() && beta.k() == src.k() && eps > 0, "\ngamma.num_samples(): " << gamma.num_samples() << "\ngamma.k(): " << gamma.k() << "\ngamma.nr(): " << gamma.nr() << "\ngamma.nc(): " << gamma.nc() << "\nbeta.num_samples(): " << beta.num_samples() << "\nbeta.k(): " << beta.k() << "\nbeta.nr(): " << beta.nr() << "\nbeta.nc(): " << beta.nc() << "\nsrc.k(): " << src.k() << "\nsrc.nr(): " << src.nr() << "\nsrc.nc(): " << src.nc() << "\neps: " << eps ); const float in_scale = 1; const float out_scale = 0; dest.copy_size(src); means.set_size(1, src.k(), src.nr(), src.nc()); invstds.copy_size(means); running_means.copy_size(means); running_variances.copy_size(means); CHECK_CUDNN(cudnnBatchNormalizationForwardTraining( context(), CUDNN_BATCHNORM_PER_ACTIVATION, &in_scale, &out_scale, descriptor(src), src.device(), descriptor(dest), dest.device(), descriptor(gamma), gamma.device(), beta.device(), averaging_factor, running_means.device(), running_variances.device(), eps, means.device(), invstds.device())); } void batch_normalize_gradient( const double eps, const tensor& gradient_input, const tensor& means, const tensor& invstds, const tensor& src, const tensor& gamma, tensor& src_grad, tensor& gamma_grad, tensor& beta_grad ) { const long num = src.k()*src.nr()*src.nc(); DLIB_CASSERT(src.num_samples() > 1, ""); DLIB_CASSERT(num == means.size(),""); DLIB_CASSERT(num == invstds.size(),""); DLIB_CASSERT(num == gamma.size(),""); DLIB_CASSERT(num == gamma_grad.size(),""); DLIB_CASSERT(num == beta_grad.size(),""); DLIB_CASSERT(have_same_dimensions(gradient_input, src),""); DLIB_CASSERT(have_same_dimensions(gradient_input, src_grad),""); DLIB_CASSERT(eps > 0,""); const float in_scale = 1; const float out_scale = 1; const float in_scale_params = 1; const float out_scale_params = 0; CHECK_CUDNN(cudnnBatchNormalizationBackward( context(), CUDNN_BATCHNORM_PER_ACTIVATION, &in_scale, &out_scale, &in_scale_params, &out_scale_params, descriptor(src), src.device(), descriptor(gradient_input), gradient_input.device(), descriptor(src_grad), src_grad.device(), descriptor(gamma), gamma.device(), gamma_grad.device(), beta_grad.device(), eps, means.device(), invstds.device())); } // ------------------------------------------------------------------------------------ void batch_normalize_conv_inference ( const double eps, resizable_tensor& dest, const tensor& src, const tensor& gamma, const tensor& beta, const tensor& running_means, const tensor& running_variances ) { DLIB_CASSERT( gamma.num_samples() == 1 && gamma.nr() == 1 && gamma.nc() == 1 && gamma.k() == src.k() && have_same_dimensions(gamma, beta) && have_same_dimensions(gamma, running_means) && have_same_dimensions(gamma, running_variances) && eps > 0, "\ngamma.num_samples(): " << gamma.num_samples() << "\ngamma.k(): " << gamma.k() << "\ngamma.nr(): " << gamma.nr() << "\ngamma.nc(): " << gamma.nc() << "\nbeta.num_samples(): " << beta.num_samples() << "\nbeta.k(): " << beta.k() << "\nbeta.nr(): " << beta.nr() << "\nbeta.nc(): " << beta.nc() << "\nrunning_means.num_samples(): " << running_means.num_samples() << "\nrunning_means.k(): " << running_means.k() << "\nrunning_means.nr(): " << running_means.nr() << "\nrunning_means.nc(): " << running_means.nc() << "\nrunning_variances.num_samples(): " << running_variances.num_samples() << "\nrunning_variances.k(): " << running_variances.k() << "\nrunning_variances.nr(): " << running_variances.nr() << "\nrunning_variances.nc(): " << running_variances.nc() << "\nsrc.k(): " << src.k() << "\nsrc.nr(): " << src.nr() << "\nsrc.nc(): " << src.nc() << "\neps: " << eps ); const float in_scale = 1; const float out_scale = 0; dest.copy_size(src); CHECK_CUDNN(cudnnBatchNormalizationForwardInference( context(), CUDNN_BATCHNORM_SPATIAL, &in_scale, &out_scale, descriptor(src), src.device(), descriptor(dest), dest.device(), descriptor(gamma), gamma.device(), beta.device(), running_means.device(), running_variances.device(), eps)); } void batch_normalize_conv ( const double eps, resizable_tensor& dest, resizable_tensor& means, resizable_tensor& invstds, const double averaging_factor, resizable_tensor& running_means, resizable_tensor& running_variances, const tensor& src, const tensor& gamma, const tensor& beta ) { DLIB_CASSERT(0 <= averaging_factor && averaging_factor <= 1, "averaging_factor: " << averaging_factor); DLIB_CASSERT(averaging_factor==1 || have_same_dimensions(running_means,means),""); DLIB_CASSERT(averaging_factor==1 || have_same_dimensions(running_variances,invstds),""); DLIB_CASSERT( src.num_samples() > 1 && gamma.num_samples() == 1 && beta.num_samples() == 1 && gamma.nr() == 1 && beta.nr() == 1 && gamma.nc() == 1 && beta.nc() == 1 && gamma.k() == beta.k() && beta.k() == src.k() && eps > 0, "\ngamma.num_samples(): " << gamma.num_samples() << "\ngamma.k(): " << gamma.k() << "\ngamma.nr(): " << gamma.nr() << "\ngamma.nc(): " << gamma.nc() << "\nbeta.num_samples(): " << beta.num_samples() << "\nbeta.k(): " << beta.k() << "\nbeta.nr(): " << beta.nr() << "\nbeta.nc(): " << beta.nc() << "\nsrc.k(): " << src.k() << "\nsrc.nr(): " << src.nr() << "\nsrc.nc(): " << src.nc() << "\neps: " << eps ); const float in_scale = 1; const float out_scale = 0; dest.copy_size(src); means.set_size(1, src.k()); invstds.copy_size(means); running_means.copy_size(means); running_variances.copy_size(means); CHECK_CUDNN(cudnnBatchNormalizationForwardTraining( context(), CUDNN_BATCHNORM_SPATIAL, &in_scale, &out_scale, descriptor(src), src.device(), descriptor(dest), dest.device(), descriptor(gamma), gamma.device(), beta.device(), averaging_factor, running_means.device(), running_variances.device(), eps, means.device(), invstds.device())); } void batch_normalize_conv_gradient( const double eps, const tensor& gradient_input, const tensor& means, const tensor& invstds, const tensor& src, const tensor& gamma, tensor& src_grad, tensor& gamma_grad, tensor& beta_grad ) { const long num = src.nr()*src.nc(); DLIB_CASSERT(src.k() == means.size(),""); DLIB_CASSERT(src.k() == invstds.size(),""); DLIB_CASSERT(src.k() == gamma.size(),""); DLIB_CASSERT(src.k() == gamma_grad.size(),""); DLIB_CASSERT(src.k() == beta_grad.size(),""); DLIB_CASSERT(have_same_dimensions(gradient_input, src),""); DLIB_CASSERT(have_same_dimensions(gradient_input, src_grad),""); DLIB_CASSERT(eps > 0,""); const float in_scale = 1; const float out_scale = 1; const float in_scale_params = 1; const float out_scale_params = 0; CHECK_CUDNN(cudnnBatchNormalizationBackward( context(), CUDNN_BATCHNORM_SPATIAL, &in_scale, &out_scale, &in_scale_params, &out_scale_params, descriptor(src), src.device(), descriptor(gradient_input), gradient_input.device(), descriptor(src_grad), src_grad.device(), descriptor(gamma), gamma.device(), gamma_grad.device(), beta_grad.device(), eps, means.device(), invstds.device())); } // ------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------ tensor_conv:: tensor_conv( ) : filter_handle(nullptr), conv_handle(nullptr), forward_algo(0), forward_workspace_size_in_bytes(0), forward_workspace(nullptr), backward_data_algo(0), backward_data_workspace_size_in_bytes(0), backward_data_workspace(nullptr), backward_filters_algo(0), backward_filters_workspace_size_in_bytes(0), backward_filters_workspace(nullptr) { clear(); } void tensor_conv:: clear ( ) { if (filter_handle) cudnnDestroyFilterDescriptor((cudnnFilterDescriptor_t)filter_handle); if (conv_handle) cudnnDestroyConvolutionDescriptor((cudnnConvolutionDescriptor_t)conv_handle); filter_handle = nullptr; conv_handle = nullptr; out_num_samples = 0; out_k = 0; out_nr = 0; out_nc = 0; if (forward_workspace) cudaFree(forward_workspace); forward_workspace = nullptr; forward_algo = 0; forward_workspace_size_in_bytes = 0; if (backward_data_workspace) cudaFree(backward_data_workspace); backward_data_workspace = nullptr; backward_data_algo = 0; backward_data_workspace_size_in_bytes = 0; if (backward_filters_workspace) cudaFree(backward_filters_workspace); backward_filters_workspace = nullptr; backward_filters_algo = 0; backward_filters_workspace_size_in_bytes = 0; stride_y = 0; stride_x = 0; padding_y = 0; padding_x = 0; data_num_samples = 0; data_k = 0; data_nr = 0; data_nc = 0; filters_num_samples = 0; filters_k = 0; filters_nr = 0; filters_nc = 0; } void tensor_conv:: setup( const tensor& data, const tensor& filters, int stride_y_, int stride_x_, int padding_y_, int padding_x_ ) { DLIB_CASSERT(data.k() == filters.k(),""); // if the last call to setup gave the same exact settings then don't do // anything. if (stride_y_ == stride_y && stride_x_ == stride_x && padding_y_ == padding_y && padding_x_ == padding_x && data_num_samples == data.num_samples() && data_k == data.k() && data_nr == data.nr() && data_nc == data.nc() && filters_num_samples == filters.num_samples() && filters_k == filters.k() && filters_nr == filters.nr() && filters_nc == filters.nc()) { return; } clear(); try { stride_y = stride_y_; stride_x = stride_x_; padding_y = padding_y_; padding_x = padding_x_; data_num_samples = data.num_samples(); data_k = data.k(); data_nr = data.nr(); data_nc = data.nc(); filters_num_samples = filters.num_samples(); filters_k = filters.k(); filters_nr = filters.nr(); filters_nc = filters.nc(); CHECK_CUDNN(cudnnCreateFilterDescriptor((cudnnFilterDescriptor_t*)&filter_handle)); CHECK_CUDNN(cudnnSetFilter4dDescriptor((cudnnFilterDescriptor_t)filter_handle, CUDNN_DATA_FLOAT, CUDNN_TENSOR_NCHW, filters.num_samples(), filters.k(), filters.nr(), filters.nc())); CHECK_CUDNN(cudnnCreateConvolutionDescriptor((cudnnConvolutionDescriptor_t*)&conv_handle)); CHECK_CUDNN(cudnnSetConvolution2dDescriptor((cudnnConvolutionDescriptor_t)conv_handle, padding_y, // vertical padding padding_x, // horizontal padding stride_y, stride_x, 1, 1, // must be 1,1 CUDNN_CROSS_CORRELATION)); // could also be CUDNN_CONVOLUTION CHECK_CUDNN(cudnnGetConvolution2dForwardOutputDim( (const cudnnConvolutionDescriptor_t)conv_handle, descriptor(data), (const cudnnFilterDescriptor_t)filter_handle, &out_num_samples, &out_k, &out_nr, &out_nc)); tensor_descriptor dest_desc; dest_desc.set_size(out_num_samples,out_k,out_nr,out_nc); // Pick which forward algorithm we will use and allocate the necessary // workspace buffer. cudnnConvolutionFwdAlgo_t forward_best_algo; CHECK_CUDNN(cudnnGetConvolutionForwardAlgorithm( context(), descriptor(data), (const cudnnFilterDescriptor_t)filter_handle, (const cudnnConvolutionDescriptor_t)conv_handle, descriptor(dest_desc), dnn_prefer_fastest_algorithms()?CUDNN_CONVOLUTION_FWD_PREFER_FASTEST:CUDNN_CONVOLUTION_FWD_NO_WORKSPACE, std::numeric_limits<size_t>::max(), &forward_best_algo)); forward_algo = forward_best_algo; CHECK_CUDNN(cudnnGetConvolutionForwardWorkspaceSize( context(), descriptor(data), (const cudnnFilterDescriptor_t)filter_handle, (const cudnnConvolutionDescriptor_t)conv_handle, descriptor(dest_desc), forward_best_algo, &forward_workspace_size_in_bytes)); CHECK_CUDA(cudaMalloc(&forward_workspace, forward_workspace_size_in_bytes)); // Pick which backward data algorithm we will use and allocate the // necessary workspace buffer. cudnnConvolutionBwdDataAlgo_t backward_data_best_algo; CHECK_CUDNN(cudnnGetConvolutionBackwardDataAlgorithm( context(), (const cudnnFilterDescriptor_t)filter_handle, descriptor(dest_desc), (const cudnnConvolutionDescriptor_t)conv_handle, descriptor(data), dnn_prefer_fastest_algorithms()?CUDNN_CONVOLUTION_BWD_DATA_PREFER_FASTEST:CUDNN_CONVOLUTION_BWD_DATA_NO_WORKSPACE, std::numeric_limits<size_t>::max(), &backward_data_best_algo)); backward_data_algo = backward_data_best_algo; CHECK_CUDNN(cudnnGetConvolutionBackwardDataWorkspaceSize( context(), (const cudnnFilterDescriptor_t)filter_handle, descriptor(dest_desc), (const cudnnConvolutionDescriptor_t)conv_handle, descriptor(data), backward_data_best_algo, &backward_data_workspace_size_in_bytes)); CHECK_CUDA(cudaMalloc(&backward_data_workspace, backward_data_workspace_size_in_bytes)); // Pick which backward filters algorithm we will use and allocate the // necessary workspace buffer. cudnnConvolutionBwdFilterAlgo_t backward_filters_best_algo; CHECK_CUDNN(cudnnGetConvolutionBackwardFilterAlgorithm( context(), descriptor(data), descriptor(dest_desc), (const cudnnConvolutionDescriptor_t)conv_handle, (const cudnnFilterDescriptor_t)filter_handle, dnn_prefer_fastest_algorithms()?CUDNN_CONVOLUTION_BWD_FILTER_PREFER_FASTEST:CUDNN_CONVOLUTION_BWD_FILTER_NO_WORKSPACE, std::numeric_limits<size_t>::max(), &backward_filters_best_algo)); backward_filters_algo = backward_filters_best_algo; CHECK_CUDNN(cudnnGetConvolutionBackwardFilterWorkspaceSize( context(), descriptor(data), descriptor(dest_desc), (const cudnnConvolutionDescriptor_t)conv_handle, (const cudnnFilterDescriptor_t)filter_handle, backward_filters_best_algo, &backward_filters_workspace_size_in_bytes)); CHECK_CUDA(cudaMalloc(&backward_filters_workspace, backward_filters_workspace_size_in_bytes)); } catch(...) { clear(); throw; } } tensor_conv:: ~tensor_conv ( ) { clear(); } void tensor_conv::operator() ( resizable_tensor& output, const tensor& data, const tensor& filters, int stride_y, int stride_x, int padding_y, int padding_x ) { DLIB_CASSERT(is_same_object(output,data) == false,""); DLIB_CASSERT(is_same_object(output,filters) == false,""); DLIB_CASSERT(filters.k() == data.k(),""); DLIB_CASSERT(stride_y > 0 && stride_x > 0,""); DLIB_CASSERT(filters.nc() <= data.nc() + 2*padding_x, "Filter windows must be small enough to fit into the padded image." << "\n\t filters.nc(): " << filters.nc() << "\n\t data.nc(): " << data.nc() << "\n\t padding_x: " << padding_x ); DLIB_CASSERT(filters.nr() <= data.nr() + 2*padding_y, "Filter windows must be small enough to fit into the padded image." << "\n\t filters.nr(): " << filters.nr() << "\n\t data.nr(): " << data.nr() << "\n\t padding_y: " << padding_y ); setup(data,filters,stride_y,stride_x,padding_y,padding_x); output.set_size(out_num_samples, out_k, out_nr, out_nc); DLIB_ASSERT(output.num_samples() == data.num_samples(),out_num_samples << " " << data.num_samples()); DLIB_ASSERT(output.k() == filters.num_samples(),""); DLIB_ASSERT(output.nr() == 1+(data.nr()+2*padding_y-filters.nr())/stride_y,""); DLIB_ASSERT(output.nc() == 1+(data.nc()+2*padding_x-filters.nc())/stride_x,""); const float alpha = 1; const float beta = 0; CHECK_CUDNN(cudnnConvolutionForward( context(), &alpha, descriptor(data), data.device(), (const cudnnFilterDescriptor_t)filter_handle, filters.device(), (const cudnnConvolutionDescriptor_t)conv_handle, (cudnnConvolutionFwdAlgo_t)forward_algo, forward_workspace, forward_workspace_size_in_bytes, &beta, descriptor(output), output.device())); } void tensor_conv::get_gradient_for_data ( const tensor& gradient_input, const tensor& filters, tensor& data_gradient ) { const float alpha = 1; const float beta = 1; CHECK_CUDNN(cudnnConvolutionBackwardData(context(), &alpha, (const cudnnFilterDescriptor_t)filter_handle, filters.device(), descriptor(gradient_input), gradient_input.device(), (const cudnnConvolutionDescriptor_t)conv_handle, (cudnnConvolutionBwdDataAlgo_t)backward_data_algo, backward_data_workspace, backward_data_workspace_size_in_bytes, &beta, descriptor(data_gradient), data_gradient.device())); } void tensor_conv:: get_gradient_for_filters ( const tensor& gradient_input, const tensor& data, tensor& filters_gradient ) { const float alpha = 1; const float beta = 0; CHECK_CUDNN(cudnnConvolutionBackwardFilter(context(), &alpha, descriptor(data), data.device(), descriptor(gradient_input), gradient_input.device(), (const cudnnConvolutionDescriptor_t)conv_handle, (cudnnConvolutionBwdFilterAlgo_t)backward_filters_algo, backward_filters_workspace, backward_filters_workspace_size_in_bytes, &beta, (const cudnnFilterDescriptor_t)filter_handle, filters_gradient.device())); } // ------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------ pooling::pooling ( ) : handle(nullptr),window_height(0),window_width(0),stride_y(0),stride_x(0),padding_y(0), padding_x(0) { } pooling::~pooling( ) { clear(); } void pooling:: clear( ) { if (handle) cudnnDestroyPoolingDescriptor((cudnnPoolingDescriptor_t)handle); handle = nullptr; window_height = 0; window_width = 0; stride_y = 0; stride_x = 0; padding_y = 0; padding_x = 0; } void pooling:: setup_max_pooling( int window_height_, int window_width_, int stride_y_, int stride_x_, int padding_y_, int padding_x_ ) { setup(window_height_, window_width_, stride_y_, stride_x_, padding_y_, padding_x_, CUDNN_POOLING_MAX); do_max_pooling = true; } void pooling:: setup_avg_pooling( int window_height_, int window_width_, int stride_y_, int stride_x_, int padding_y_, int padding_x_ ) { setup(window_height_, window_width_, stride_y_, stride_x_, padding_y_, padding_x_, CUDNN_POOLING_AVERAGE_COUNT_EXCLUDE_PADDING); do_max_pooling = false; } void pooling:: setup( int window_height_, int window_width_, int stride_y_, int stride_x_, int padding_y_, int padding_x_, int pooling_mode ) { DLIB_CASSERT (window_height_ > 0 && window_width_ > 0 && stride_y_ > 0 && stride_x_ > 0 , "window_height_: " << window_height_ << "\t\n window_width_: " << window_width_ << "\t\n stride_y_: " << stride_y_ << "\t\n stride_x_: " << stride_x_ ); DLIB_CASSERT( 0 <= padding_y_ && padding_y_ < window_height_ && 0 <= padding_x_ && padding_x_ < window_width_, "window_height_: " << window_height_ << "\t\n window_width_: " << window_width_ << "\t\n padding_y_: " << padding_y_ << "\t\n padding_x_: " << padding_x_ ); if (window_height == window_height_ && window_width == window_width_ && stride_y == stride_y_ && stride_x == stride_x_ && padding_y == padding_y_ && padding_x == padding_x_ ) { return; } clear(); try { window_height = window_height_; window_width = window_width_; stride_x = stride_x_; stride_y = stride_y_; padding_y = padding_y_; padding_x = padding_x_; cudnnPoolingDescriptor_t poolingDesc; CHECK_CUDNN(cudnnCreatePoolingDescriptor(&poolingDesc)); handle = poolingDesc; CHECK_CUDNN(cudnnSetPooling2dDescriptor(poolingDesc, (cudnnPoolingMode_t)pooling_mode, CUDNN_PROPAGATE_NAN, window_height, window_width, padding_y, padding_x, stride_y, stride_x)); } catch(...) { clear(); throw; } } void pooling:: operator() ( resizable_tensor& dest, const tensor& src ) { DLIB_CASSERT(window_width <= src.nc() + 2*padding_x, "Pooling windows must be small enough to fit into the padded image." << "\n\t window_width: " << window_width << "\n\t src.nc(): " << src.nc() << "\n\t padding_x: " << padding_x ); DLIB_CASSERT(window_height <= src.nr() + 2*padding_y, "Pooling windows must be small enough to fit into the padded image." << "\n\t window_height: " << window_height << "\n\t src.nr(): " << src.nr() << "\n\t padding_y: " << padding_y ); const float alpha = 1; const float beta = 0; int outN; int outC; int outH; int outW; CHECK_CUDNN(cudnnGetPooling2dForwardOutputDim((const cudnnPoolingDescriptor_t)handle, descriptor(src), &outN, &outC, &outH, &outW)); dest.set_size(outN,outC,outH,outW); DLIB_CASSERT(dest.num_samples() == src.num_samples(),""); DLIB_CASSERT(dest.k() == src.k(),""); DLIB_CASSERT(dest.nr() == 1 + (src.nr() + 2*padding_y - window_height)/stride_y, "\n stride_y: " << stride_y << "\n padding_y: " << padding_y << "\n window_height: " << window_height << "\n src.nr(): " << src.nr() << "\n dest.nr(): " << dest.nr() << "\n src.nr()/stride_y: " << src.nr()/stride_y); DLIB_CASSERT(dest.nc() == 1 + (src.nc() + 2*padding_x - window_width)/stride_x, "\n stride_x: " << stride_x << "\n padding_x: " << padding_x << "\n window_width: " << window_width << "\n src.nc(): " << src.nc() << "\n dest.nc(): " << dest.nc() << "\n src.nc()/stride_x: " << src.nc()/stride_x); CHECK_CUDNN(cudnnPoolingForward(context(), (const cudnnPoolingDescriptor_t)handle, &alpha, descriptor(src), src.device(), &beta, descriptor(dest), dest.device())); } void pooling::get_gradient( const tensor& gradient_input, const tensor& dest, const tensor& src, tensor& grad ) { DLIB_CASSERT(have_same_dimensions(gradient_input,dest),""); DLIB_CASSERT(have_same_dimensions(src,grad),""); const float alpha = 1; const float beta = 1; CHECK_CUDNN(cudnnPoolingBackward(context(), (const cudnnPoolingDescriptor_t)handle, &alpha, descriptor(dest), dest.device(), descriptor(gradient_input), gradient_input.device(), descriptor(src), src.device(), &beta, descriptor(grad), grad.device())); } // ------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------ void softmax ( tensor& dest, const tensor& src ) { DLIB_CASSERT(have_same_dimensions(dest,src),""); if (src.size() == 0) return; const float alpha = 1; const float beta = 0; CHECK_CUDNN(cudnnSoftmaxForward(context(), CUDNN_SOFTMAX_ACCURATE, CUDNN_SOFTMAX_MODE_CHANNEL, &alpha, descriptor(src), src.device(), &beta, descriptor(dest), dest.device())); } void softmax_gradient ( tensor& grad, const tensor& dest, const tensor& gradient_input ) { DLIB_CASSERT( have_same_dimensions(dest,gradient_input) == true && have_same_dimensions(dest,grad) == true , ""); if (dest.size() == 0) return; const float alpha = 1; const float beta = is_same_object(grad,gradient_input) ? 0 : 1; CHECK_CUDNN(cudnnSoftmaxBackward(context(), CUDNN_SOFTMAX_ACCURATE, CUDNN_SOFTMAX_MODE_CHANNEL, &alpha, descriptor(dest), dest.device(), descriptor(gradient_input), gradient_input.device(), &beta, descriptor(grad), grad.device())); } // ------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------ void sigmoid ( tensor& dest, const tensor& src ) { DLIB_CASSERT(have_same_dimensions(dest,src),""); if (src.size() == 0) return; const float alpha = 1; const float beta = 0; CHECK_CUDNN(cudnnActivationForward(context(), sigmoid_activation_descriptor(), &alpha, descriptor(src), src.device(), &beta, descriptor(dest), dest.device())); } void sigmoid_gradient ( tensor& grad, const tensor& dest, const tensor& gradient_input ) { DLIB_CASSERT( have_same_dimensions(dest,gradient_input) == true && have_same_dimensions(dest,grad) == true , ""); if (dest.size() == 0) return; const float alpha = 1; const float beta = is_same_object(grad,gradient_input) ? 0 : 1; CHECK_CUDNN(cudnnActivationBackward(context(), sigmoid_activation_descriptor(), &alpha, descriptor(dest), dest.device(), descriptor(gradient_input), gradient_input.device(), descriptor(dest), dest.device(), &beta, descriptor(grad), grad.device())); } // ------------------------------------------------------------------------------------ void relu ( tensor& dest, const tensor& src ) { DLIB_CASSERT(have_same_dimensions(dest,src),""); if (src.size() == 0) return; const float alpha = 1; const float beta = 0; CHECK_CUDNN(cudnnActivationForward(context(), relu_activation_descriptor(), &alpha, descriptor(src), src.device(), &beta, descriptor(dest), dest.device())); } void relu_gradient ( tensor& grad, const tensor& dest, const tensor& gradient_input ) { DLIB_CASSERT( have_same_dimensions(dest,gradient_input) == true && have_same_dimensions(dest,grad) == true , ""); if (dest.size() == 0) return; const float alpha = 1; const float beta = is_same_object(grad,gradient_input) ? 0 : 1; CHECK_CUDNN(cudnnActivationBackward(context(), relu_activation_descriptor(), &alpha, descriptor(dest), dest.device(), descriptor(gradient_input), gradient_input.device(), descriptor(dest), dest.device(), &beta, descriptor(grad), grad.device())); } // ------------------------------------------------------------------------------------ void tanh ( tensor& dest, const tensor& src ) { DLIB_CASSERT(have_same_dimensions(dest,src),""); if (src.size() == 0) return; const float alpha = 1; const float beta = 0; CHECK_CUDNN(cudnnActivationForward(context(), tanh_activation_descriptor(), &alpha, descriptor(src), src.device(), &beta, descriptor(dest), dest.device())); } void tanh_gradient ( tensor& grad, const tensor& dest, const tensor& gradient_input ) { DLIB_CASSERT( have_same_dimensions(dest,gradient_input) == true && have_same_dimensions(dest,grad) == true, ""); if (dest.size() == 0) return; const float alpha = 1; const float beta = is_same_object(grad,gradient_input) ? 0 : 1; CHECK_CUDNN(cudnnActivationBackward(context(), tanh_activation_descriptor(), &alpha, descriptor(dest), dest.device(), descriptor(gradient_input), gradient_input.device(), descriptor(dest), dest.device(), &beta, descriptor(grad), grad.device())); } // ------------------------------------------------------------------------------------ } } #endif // DLIB_USE_CUDA #endif // DLIB_DNN_CuDNN_CPP_
[ "tn.emre@gmail.com" ]
tn.emre@gmail.com
749570115d7c3b4e717e962517dd919afe278b0e
483d5992960b195c255d2a3bed41bae11744e0ec
/Codeforces/CF609A.cpp
10d1854868fe517d868c74fb50ac59824a06a823
[]
no_license
zcy05331/code-backup
bd2627f461b69778f56b7ef74441802df2f84a58
9ef0dd11108a3fe11364266755a84467c64ba099
refs/heads/master
2022-04-30T16:30:28.877120
2022-04-15T12:27:25
2022-04-15T12:27:25
241,646,316
1
0
null
null
null
null
UTF-8
C++
false
false
349
cpp
#include<bits/stdc++.h> using namespace std; int a[10001]; int main() { int n,m; scanf("%d%d",&n,&m); for(int i=0;i<n;i++) { scanf("%d",&a[i]); } sort(a,a+n); int ans=0,sum=0; for(int i=n-1;i>=0;i--) { sum+=a[i]; ans++; if(sum>=m) { break; } } printf("%d",ans); return 0; }
[ "little_sun0331@qq.com" ]
little_sun0331@qq.com
b73f791a7b22c9601ea6145c2569c8cfa5312e06
56c1c4feb63eb390aa8f340226c6b8cd97c134a9
/process_arrival.cpp
03a5840e95a9d8862838486b050acdd529af01c8
[]
no_license
hanbeul/OS_Simulation
d5bf8d4e2b4ec793570b03983492c68a56b48de6
405385119ac61f5f5b9a0c926098d1cd77a29124
refs/heads/master
2022-06-06T23:16:03.758683
2016-05-01T17:31:37
2016-05-01T17:31:37
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,076
cpp
//============================================================================ // Name : process_arrival.cpp // Author : // Version : 0.01 // Description : functions pertaining to simulated arrival of processes //============================================================================ #include "process_arrival.h" PCB retrieve_next_process (ifstream& inputFile) { int runtime = 0, IO = 0, size = 0, IO_min = 0, elapsedTime = 0; static int cycleCount = 0, arrival = 0, PID = 0; static bool empty_list = false; string state = "NEW"; if(!empty_list){ if (arrival == 0){ arrival = rand() % (475-5+1)+5; cycleCount++; }else if(cycleCount == arrival){ arrival = 0; cycleCount = 0; if (!inputFile.eof()) { PID++; inputFile >> runtime >> IO >> size; PCB next_process(PID, state, runtime, elapsedTime, IO, IO_min, size); return next_process; }else{ if (DEBUG){cout << "Process list is empty" << endl;} empty_list = true; } }else{ cycleCount++; } } PCB next_process; next_process.set_state("NULL"); return next_process; } void check_file(ifstream& inputFile){ string line; int line_piece; int runtime, io, size, on_line, count = 0; std::vector<int> check_duplicates; while(!inputFile.eof()){ on_line = 0; getline(inputFile,line); istringstream seperate(line); while(seperate >> line_piece){ on_line++; switch(on_line){ case 1: runtime = line_piece; if(runtime > 950 || runtime < 10){ cout << "ERROR: Process on line " << count+1 << "has an incorrect runtime value. Please make sure that the Processes.txt file follows the correct format and try again." << endl; exit(0); } break; case 2: io = line_piece; if(io > 5 || runtime < 0){ cout << "ERROR: Process on line " << count+1 << "has an incorrect IO value. Please make sure that the Processes.txt file follows the correct format and try again." << endl; exit(0); } break; case 3: size = line_piece; if(size > 8 || runtime < 1){ cout << "ERROR: Process on line " << count+1 << "has an incorrect size value. Please make sure that the Processes.txt file follows the correct format and try again." << endl; exit(0); } break; default : cout << "ERROR: Too many entries on line " << count+1 << ". Please make sure that the Processes.txt file follows the correct format and try again." << endl; exit(0); break; } } count++; if(on_line < 3){ cout << "ERROR: Too few entries on line " << count << ". Please make sure that the Processes.txt file follows the correct format and try again." << endl; exit(0); } } inputFile.clear(); inputFile.seekg(0, inputFile.beg); if(count < 10){ cout << "ERROR: too few processes in Processes.txt. Please make sure there are at least 10 processes in the file." << endl; exit(0); }else if(count > 60){ cout << "ERROR: too many processes in Processes.txt. Please make sure there are no more than 60 processes in the file." << endl; exit(0); } }
[ "lucasck@mymail.vcu.edu" ]
lucasck@mymail.vcu.edu
6d93e291f22c4b9c81c338e13e71be7bb0b8eeb0
e7e7c640ca3caae5757ed7f2bbfe7f42e2ab485f
/src/slatechaind.cpp
ff569e445fe5a16347f2776c3dbba9ab5dbd4e0b
[ "MIT" ]
permissive
SlateTeam/SlatechainCore
3f22a6011b1d5602ba8e3b6e49bf67346ae2e8d9
83111d09b36c769d0d4a45bb6751a6a220c68d61
refs/heads/master
2020-03-15T16:55:34.545473
2018-06-26T07:59:05
2018-06-26T07:59:05
132,246,352
3
7
MIT
2018-05-18T01:51:04
2018-05-05T12:34:10
C++
UTF-8
C++
false
false
6,034
cpp
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2014 The Bitcoin developers // Copyright (c) 2014-2015 The Dash developers // Copyright (c) 2015-2017 The PIVX developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "clientversion.h" #include "init.h" #include "main.h" #include "masternodeconfig.h" #include "noui.h" #include "rpcserver.h" #include "ui_interface.h" #include "util.h" #include <boost/algorithm/string/predicate.hpp> #include <boost/filesystem.hpp> #include <boost/thread.hpp> /* Introduction text for doxygen: */ /*! \mainpage Developer documentation * * \section intro_sec Introduction * * This is the developer documentation of the reference client for an experimental new digital currency called SLTC (http://www.slatechain.org), * which enables instant payments to anyone, anywhere in the world. SLTC uses peer-to-peer technology to operate * with no central authority: managing transactions and issuing money are carried out collectively by the network. * * The software is a community-driven open source project, released under the MIT license. * * \section Navigation * Use the buttons <code>Namespaces</code>, <code>Classes</code> or <code>Files</code> at the top of the page to start navigating the code. */ static bool fDaemon; void DetectShutdownThread(boost::thread_group* threadGroup) { bool fShutdown = ShutdownRequested(); // Tell the main threads to shutdown. while (!fShutdown) { MilliSleep(200); fShutdown = ShutdownRequested(); } if (threadGroup) { threadGroup->interrupt_all(); threadGroup->join_all(); } } ////////////////////////////////////////////////////////////////////////////// // // Start // bool AppInit(int argc, char* argv[]) { boost::thread_group threadGroup; boost::thread* detectShutdownThread = NULL; bool fRet = false; // // Parameters // // If Qt is used, parameters/slatechain.conf are parsed in qt/slatechain.cpp's main() ParseParameters(argc, argv); // Process help and version before taking care about datadir if (mapArgs.count("-?") || mapArgs.count("-help") || mapArgs.count("-version")) { std::string strUsage = _("SLTC Core Daemon") + " " + _("version") + " " + FormatFullVersion() + "\n"; if (mapArgs.count("-version")) { strUsage += LicenseInfo(); } else { strUsage += "\n" + _("Usage:") + "\n" + " slatechaind [options] " + _("Start SLTC Core Daemon") + "\n"; strUsage += "\n" + HelpMessage(HMM_BITCOIND); } fprintf(stdout, "%s", strUsage.c_str()); return false; } try { if (!boost::filesystem::is_directory(GetDataDir(false))) { fprintf(stderr, "Error: Specified data directory \"%s\" does not exist.\n", mapArgs["-datadir"].c_str()); return false; } try { ReadConfigFile(mapArgs, mapMultiArgs); } catch (std::exception& e) { fprintf(stderr, "Error reading configuration file: %s\n", e.what()); return false; } // Check for -testnet or -regtest parameter (Params() calls are only valid after this clause) if (!SelectParamsFromCommandLine()) { fprintf(stderr, "Error: Invalid combination of -regtest and -testnet.\n"); return false; } // parse masternode.conf std::string strErr; if (!masternodeConfig.read(strErr)) { fprintf(stderr, "Error reading masternode configuration file: %s\n", strErr.c_str()); return false; } // Command-line RPC bool fCommandLine = false; for (int i = 1; i < argc; i++) if (!IsSwitchChar(argv[i][0]) && !boost::algorithm::istarts_with(argv[i], "slatechain:")) fCommandLine = true; if (fCommandLine) { fprintf(stderr, "Error: There is no RPC client functionality in slatechaind anymore. Use the slatechain-cli utility instead.\n"); exit(1); } #ifndef WIN32 fDaemon = GetBoolArg("-daemon", false); if (fDaemon) { fprintf(stdout, "SLTC server starting\n"); // Daemonize pid_t pid = fork(); if (pid < 0) { fprintf(stderr, "Error: fork() returned %d errno %d\n", pid, errno); return false; } if (pid > 0) // Parent process, pid is child process id { return true; } // Child process falls through to rest of initialization pid_t sid = setsid(); if (sid < 0) fprintf(stderr, "Error: setsid() returned %d errno %d\n", sid, errno); } #endif SoftSetBoolArg("-server", true); detectShutdownThread = new boost::thread(boost::bind(&DetectShutdownThread, &threadGroup)); fRet = AppInit2(threadGroup); } catch (std::exception& e) { PrintExceptionContinue(&e, "AppInit()"); } catch (...) { PrintExceptionContinue(NULL, "AppInit()"); } if (!fRet) { if (detectShutdownThread) detectShutdownThread->interrupt(); threadGroup.interrupt_all(); // threadGroup.join_all(); was left out intentionally here, because we didn't re-test all of // the startup-failure cases to make sure they don't result in a hang due to some // thread-blocking-waiting-for-another-thread-during-startup case } if (detectShutdownThread) { detectShutdownThread->join(); delete detectShutdownThread; detectShutdownThread = NULL; } Shutdown(); return fRet; } int main(int argc, char* argv[]) { SetupEnvironment(); // Connect slatechaind signal handlers noui_connect(); return (AppInit(argc, argv) ? 0 : 1); }
[ "root@vultr.guest" ]
root@vultr.guest
e6145665f962bc6b3003cd2ff2489ef3c5842ee9
992df64fd2f917a808a8138be52f2e58680fbf60
/App/hooks.cpp
d023f67777368906e98a08680c7ef9d2d6a104c3
[ "MIT" ]
permissive
ghost2238/engine-ex
e813cdf4f38af2dfeef9eb588541b3e698db8804
e51cc5651323a801c6708f64ac0168e866edd0ef
refs/heads/master
2021-01-12T17:51:40.752853
2020-02-27T00:45:49
2020-02-27T00:45:49
71,652,679
1
0
null
null
null
null
UTF-8
C++
false
false
2,170
cpp
#include "hooks.h" bool firstDraw = true; typedef void(__thiscall *FOClient_AddMess)(int, int, const char*); void FOAddLogMessage(int type, char* str) { auto func = HookManager::functions["FOClient_AddMess"]; auto var = HookManager::variables["FOClient"]; FOClient_AddMess f = (FOClient_AddMess)(func.offset); int foclient = *(int*)var.offset; f(foclient, type, str); } struct Rect { int x1; int y1; int x2; int y2; }; typedef void(__thiscall *SpriteManager_DrawStr)(unsigned int, Rect*, const char*, int, char*, int); void __stdcall FODrawText(int x, int y, int flags, char* color, int font, char* text, ...) { char buffer[512]; va_list args; va_start(args, text); vsprintf_s(buffer, 512, text, args); va_end(args); Rect pos; pos.x1 = x; pos.y1 = y; pos.x2 = 1200; pos.y2 = 1200; auto var = HookManager::variables["SpriteManager"]; auto func = HookManager::functions["SpriteManager_DrawStr"]; SpriteManager_DrawStr f = (SpriteManager_DrawStr)(func.offset); f(var.offset, &pos, buffer, flags, color, font); } void OnDrawConsole() { if (firstDraw) { FOAddLogMessage(MSGTYPE_DOT_RED, "Loaded EngineEx in FOnline."); firstDraw = false; } int y = 10; for(int i=4;i<9;i++) FODrawText(10, y+=30, FT_BORDERED, "FF00FF00", i, "|0xFFFFFF00 Hello World!"); } char* __stdcall GetMsgTest(int id, int dummy) { printf("%d\n", id); return ""; } int __stdcall MsgBoxA(HWND hWnd, LPCTSTR lpText, LPCTSTR lpCaption, UINT uType) { printf("Redirected to stdout: %s\n", (char*)lpText); return 0; } void __stdcall AddMessTest2(int msgType, const char* text) { //printf("%s\n", text); } void __stdcall AddMessTest(int msgType, const char* text) { printf("%s\n", text); // FOClient->AddMess(int, char*) /*typedef void(__thiscall *MsgCall)(int, int, const char*); MsgCall f = (MsgCall)((DWORD)Orig_FOClient_AddMess); f(r_ecx, msgType, text); */ //f(msgType, text); //void (*func)(int, const char*) = (void(*)(int, const char*))((DWORD)Offset_FOClient_AddMess + 5); //func(msgType, text); //((FuncPtr*))(msgType, text); } void __stdcall OnWriteFileLog(char* logLine, int dummy) { FOAddLogMessage(MSGTYPE_DOT_LIGHTGREEN, logLine); }
[ "ghsthack@gmail.com" ]
ghsthack@gmail.com
8606f2bc047d8ac53c1bd36df6828d10179a2da1
5a2349399fa9d57c6e8cc6e0f7226d683391a362
/src/qt/qtwebkit/Source/JavaScriptCore/API/JSCallbackObjectFunctions.h
b92e3161eab63c41645dca5d147919c2621ec37f
[ "LicenseRef-scancode-warranty-disclaimer", "LicenseRef-scancode-other-copyleft", "GPL-2.0-only", "LGPL-2.0-or-later", "GPL-1.0-or-later", "LGPL-2.0-only", "BSD-3-Clause" ]
permissive
aharthcock/phantomjs
e70f3c379dcada720ec8abde3f7c09a24808154c
7d7f2c862347fbc7215c849e790290b2e07bab7c
refs/heads/master
2023-03-18T04:58:32.428562
2023-03-14T05:52:52
2023-03-14T05:52:52
24,828,890
0
0
BSD-3-Clause
2023-03-14T05:52:53
2014-10-05T23:38:56
C++
UTF-8
C++
false
false
28,037
h
/* * Copyright (C) 2006, 2008 Apple Inc. All rights reserved. * Copyright (C) 2007 Eric Seidel <eric@webkit.org> * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "APIShims.h" #include "APICast.h" #include "Error.h" #include "ExceptionHelpers.h" #include "JSCallbackFunction.h" #include "JSClassRef.h" #include "JSFunction.h" #include "JSGlobalObject.h" #include "JSLock.h" #include "JSObjectRef.h" #include "JSString.h" #include "JSStringRef.h" #include "OpaqueJSString.h" #include "PropertyNameArray.h" #include <wtf/Vector.h> namespace JSC { template <class Parent> inline JSCallbackObject<Parent>* JSCallbackObject<Parent>::asCallbackObject(JSValue value) { ASSERT(asObject(value)->inherits(&s_info)); return jsCast<JSCallbackObject*>(asObject(value)); } template <class Parent> JSCallbackObject<Parent>::JSCallbackObject(ExecState* exec, Structure* structure, JSClassRef jsClass, void* data) : Parent(exec->vm(), structure) , m_callbackObjectData(adoptPtr(new JSCallbackObjectData(data, jsClass))) { } // Global object constructor. // FIXME: Move this into a separate JSGlobalCallbackObject class derived from this one. template <class Parent> JSCallbackObject<Parent>::JSCallbackObject(VM& vm, JSClassRef jsClass, Structure* structure) : Parent(vm, structure) , m_callbackObjectData(adoptPtr(new JSCallbackObjectData(0, jsClass))) { } template <class Parent> void JSCallbackObject<Parent>::finishCreation(ExecState* exec) { Base::finishCreation(exec->vm()); ASSERT(Parent::inherits(&s_info)); init(exec); } // This is just for Global object, so we can assume that Base::finishCreation is JSGlobalObject::finishCreation. template <class Parent> void JSCallbackObject<Parent>::finishCreation(VM& vm) { ASSERT(Parent::inherits(&s_info)); ASSERT(Parent::isGlobalObject()); Base::finishCreation(vm); init(jsCast<JSGlobalObject*>(this)->globalExec()); } template <class Parent> void JSCallbackObject<Parent>::init(ExecState* exec) { ASSERT(exec); Vector<JSObjectInitializeCallback, 16> initRoutines; JSClassRef jsClass = classRef(); do { if (JSObjectInitializeCallback initialize = jsClass->initialize) initRoutines.append(initialize); } while ((jsClass = jsClass->parentClass)); // initialize from base to derived for (int i = static_cast<int>(initRoutines.size()) - 1; i >= 0; i--) { APICallbackShim callbackShim(exec); JSObjectInitializeCallback initialize = initRoutines[i]; initialize(toRef(exec), toRef(this)); } for (JSClassRef jsClassPtr = classRef(); jsClassPtr; jsClassPtr = jsClassPtr->parentClass) { if (jsClassPtr->finalize) { WeakSet::allocate(this, m_callbackObjectData.get(), classRef()); break; } } } template <class Parent> String JSCallbackObject<Parent>::className(const JSObject* object) { const JSCallbackObject* thisObject = jsCast<const JSCallbackObject*>(object); String thisClassName = thisObject->classRef()->className(); if (!thisClassName.isEmpty()) return thisClassName; return Parent::className(object); } template <class Parent> bool JSCallbackObject<Parent>::getOwnPropertySlot(JSCell* cell, ExecState* exec, PropertyName propertyName, PropertySlot& slot) { JSCallbackObject* thisObject = jsCast<JSCallbackObject*>(cell); JSContextRef ctx = toRef(exec); JSObjectRef thisRef = toRef(thisObject); RefPtr<OpaqueJSString> propertyNameRef; if (StringImpl* name = propertyName.publicName()) { for (JSClassRef jsClass = thisObject->classRef(); jsClass; jsClass = jsClass->parentClass) { // optional optimization to bypass getProperty in cases when we only need to know if the property exists if (JSObjectHasPropertyCallback hasProperty = jsClass->hasProperty) { if (!propertyNameRef) propertyNameRef = OpaqueJSString::create(name); APICallbackShim callbackShim(exec); if (hasProperty(ctx, thisRef, propertyNameRef.get())) { slot.setCustom(thisObject, callbackGetter); return true; } } else if (JSObjectGetPropertyCallback getProperty = jsClass->getProperty) { if (!propertyNameRef) propertyNameRef = OpaqueJSString::create(name); JSValueRef exception = 0; JSValueRef value; { APICallbackShim callbackShim(exec); value = getProperty(ctx, thisRef, propertyNameRef.get(), &exception); } if (exception) { throwError(exec, toJS(exec, exception)); slot.setValue(jsUndefined()); return true; } if (value) { slot.setValue(toJS(exec, value)); return true; } } if (OpaqueJSClassStaticValuesTable* staticValues = jsClass->staticValues(exec)) { if (staticValues->contains(name)) { JSValue value = thisObject->getStaticValue(exec, propertyName); if (value) { slot.setValue(value); return true; } } } if (OpaqueJSClassStaticFunctionsTable* staticFunctions = jsClass->staticFunctions(exec)) { if (staticFunctions->contains(name)) { slot.setCustom(thisObject, staticFunctionGetter); return true; } } } } return Parent::getOwnPropertySlot(thisObject, exec, propertyName, slot); } template <class Parent> bool JSCallbackObject<Parent>::getOwnPropertySlotByIndex(JSCell* cell, ExecState* exec, unsigned propertyName, PropertySlot& slot) { return cell->methodTable()->getOwnPropertySlot(cell, exec, Identifier::from(exec, propertyName), slot); } template <class Parent> JSValue JSCallbackObject<Parent>::defaultValue(const JSObject* object, ExecState* exec, PreferredPrimitiveType hint) { const JSCallbackObject* thisObject = jsCast<const JSCallbackObject*>(object); JSContextRef ctx = toRef(exec); JSObjectRef thisRef = toRef(thisObject); ::JSType jsHint = hint == PreferString ? kJSTypeString : kJSTypeNumber; for (JSClassRef jsClass = thisObject->classRef(); jsClass; jsClass = jsClass->parentClass) { if (JSObjectConvertToTypeCallback convertToType = jsClass->convertToType) { JSValueRef exception = 0; JSValueRef result = convertToType(ctx, thisRef, jsHint, &exception); if (exception) { throwError(exec, toJS(exec, exception)); return jsUndefined(); } if (result) return toJS(exec, result); } } return Parent::defaultValue(object, exec, hint); } template <class Parent> bool JSCallbackObject<Parent>::getOwnPropertyDescriptor(JSObject* object, ExecState* exec, PropertyName propertyName, PropertyDescriptor& descriptor) { JSCallbackObject* thisObject = jsCast<JSCallbackObject*>(object); PropertySlot slot(thisObject); if (thisObject->methodTable()->getOwnPropertySlot(thisObject, exec, propertyName, slot)) { // Ideally we should return an access descriptor, but returning a value descriptor is better than nothing. JSValue value = slot.getValue(exec, propertyName); if (!exec->hadException()) descriptor.setValue(value); // We don't know whether the property is configurable, but assume it is. descriptor.setConfigurable(true); // We don't know whether the property is enumerable (we could call getOwnPropertyNames() to find out), but assume it isn't. descriptor.setEnumerable(false); return true; } return Parent::getOwnPropertyDescriptor(thisObject, exec, propertyName, descriptor); } template <class Parent> void JSCallbackObject<Parent>::put(JSCell* cell, ExecState* exec, PropertyName propertyName, JSValue value, PutPropertySlot& slot) { JSCallbackObject* thisObject = jsCast<JSCallbackObject*>(cell); JSContextRef ctx = toRef(exec); JSObjectRef thisRef = toRef(thisObject); RefPtr<OpaqueJSString> propertyNameRef; JSValueRef valueRef = toRef(exec, value); if (StringImpl* name = propertyName.publicName()) { for (JSClassRef jsClass = thisObject->classRef(); jsClass; jsClass = jsClass->parentClass) { if (JSObjectSetPropertyCallback setProperty = jsClass->setProperty) { if (!propertyNameRef) propertyNameRef = OpaqueJSString::create(name); JSValueRef exception = 0; bool result; { APICallbackShim callbackShim(exec); result = setProperty(ctx, thisRef, propertyNameRef.get(), valueRef, &exception); } if (exception) throwError(exec, toJS(exec, exception)); if (result || exception) return; } if (OpaqueJSClassStaticValuesTable* staticValues = jsClass->staticValues(exec)) { if (StaticValueEntry* entry = staticValues->get(name)) { if (entry->attributes & kJSPropertyAttributeReadOnly) return; if (JSObjectSetPropertyCallback setProperty = entry->setProperty) { if (!propertyNameRef) propertyNameRef = OpaqueJSString::create(name); JSValueRef exception = 0; bool result; { APICallbackShim callbackShim(exec); result = setProperty(ctx, thisRef, propertyNameRef.get(), valueRef, &exception); } if (exception) throwError(exec, toJS(exec, exception)); if (result || exception) return; } } } if (OpaqueJSClassStaticFunctionsTable* staticFunctions = jsClass->staticFunctions(exec)) { if (StaticFunctionEntry* entry = staticFunctions->get(name)) { if (entry->attributes & kJSPropertyAttributeReadOnly) return; thisObject->JSCallbackObject<Parent>::putDirect(exec->vm(), propertyName, value); // put as override property return; } } } } return Parent::put(thisObject, exec, propertyName, value, slot); } template <class Parent> void JSCallbackObject<Parent>::putByIndex(JSCell* cell, ExecState* exec, unsigned propertyIndex, JSValue value, bool shouldThrow) { JSCallbackObject* thisObject = jsCast<JSCallbackObject*>(cell); JSContextRef ctx = toRef(exec); JSObjectRef thisRef = toRef(thisObject); RefPtr<OpaqueJSString> propertyNameRef; JSValueRef valueRef = toRef(exec, value); Identifier propertyName = Identifier(exec, String::number(propertyIndex)); for (JSClassRef jsClass = thisObject->classRef(); jsClass; jsClass = jsClass->parentClass) { if (JSObjectSetPropertyCallback setProperty = jsClass->setProperty) { if (!propertyNameRef) propertyNameRef = OpaqueJSString::create(propertyName.impl()); JSValueRef exception = 0; bool result; { APICallbackShim callbackShim(exec); result = setProperty(ctx, thisRef, propertyNameRef.get(), valueRef, &exception); } if (exception) throwError(exec, toJS(exec, exception)); if (result || exception) return; } if (OpaqueJSClassStaticValuesTable* staticValues = jsClass->staticValues(exec)) { if (StaticValueEntry* entry = staticValues->get(propertyName.impl())) { if (entry->attributes & kJSPropertyAttributeReadOnly) return; if (JSObjectSetPropertyCallback setProperty = entry->setProperty) { if (!propertyNameRef) propertyNameRef = OpaqueJSString::create(propertyName.impl()); JSValueRef exception = 0; bool result; { APICallbackShim callbackShim(exec); result = setProperty(ctx, thisRef, propertyNameRef.get(), valueRef, &exception); } if (exception) throwError(exec, toJS(exec, exception)); if (result || exception) return; } } } if (OpaqueJSClassStaticFunctionsTable* staticFunctions = jsClass->staticFunctions(exec)) { if (StaticFunctionEntry* entry = staticFunctions->get(propertyName.impl())) { if (entry->attributes & kJSPropertyAttributeReadOnly) return; break; } } } return Parent::putByIndex(thisObject, exec, propertyIndex, value, shouldThrow); } template <class Parent> bool JSCallbackObject<Parent>::deleteProperty(JSCell* cell, ExecState* exec, PropertyName propertyName) { JSCallbackObject* thisObject = jsCast<JSCallbackObject*>(cell); JSContextRef ctx = toRef(exec); JSObjectRef thisRef = toRef(thisObject); RefPtr<OpaqueJSString> propertyNameRef; if (StringImpl* name = propertyName.publicName()) { for (JSClassRef jsClass = thisObject->classRef(); jsClass; jsClass = jsClass->parentClass) { if (JSObjectDeletePropertyCallback deleteProperty = jsClass->deleteProperty) { if (!propertyNameRef) propertyNameRef = OpaqueJSString::create(name); JSValueRef exception = 0; bool result; { APICallbackShim callbackShim(exec); result = deleteProperty(ctx, thisRef, propertyNameRef.get(), &exception); } if (exception) throwError(exec, toJS(exec, exception)); if (result || exception) return true; } if (OpaqueJSClassStaticValuesTable* staticValues = jsClass->staticValues(exec)) { if (StaticValueEntry* entry = staticValues->get(name)) { if (entry->attributes & kJSPropertyAttributeDontDelete) return false; return true; } } if (OpaqueJSClassStaticFunctionsTable* staticFunctions = jsClass->staticFunctions(exec)) { if (StaticFunctionEntry* entry = staticFunctions->get(name)) { if (entry->attributes & kJSPropertyAttributeDontDelete) return false; return true; } } } } return Parent::deleteProperty(thisObject, exec, propertyName); } template <class Parent> bool JSCallbackObject<Parent>::deletePropertyByIndex(JSCell* cell, ExecState* exec, unsigned propertyName) { JSCallbackObject* thisObject = jsCast<JSCallbackObject*>(cell); return thisObject->methodTable()->deleteProperty(thisObject, exec, Identifier::from(exec, propertyName)); } template <class Parent> ConstructType JSCallbackObject<Parent>::getConstructData(JSCell* cell, ConstructData& constructData) { JSCallbackObject* thisObject = jsCast<JSCallbackObject*>(cell); for (JSClassRef jsClass = thisObject->classRef(); jsClass; jsClass = jsClass->parentClass) { if (jsClass->callAsConstructor) { constructData.native.function = construct; return ConstructTypeHost; } } return ConstructTypeNone; } template <class Parent> EncodedJSValue JSCallbackObject<Parent>::construct(ExecState* exec) { JSObject* constructor = exec->callee(); JSContextRef execRef = toRef(exec); JSObjectRef constructorRef = toRef(constructor); for (JSClassRef jsClass = jsCast<JSCallbackObject<Parent>*>(constructor)->classRef(); jsClass; jsClass = jsClass->parentClass) { if (JSObjectCallAsConstructorCallback callAsConstructor = jsClass->callAsConstructor) { size_t argumentCount = exec->argumentCount(); Vector<JSValueRef, 16> arguments; arguments.reserveInitialCapacity(argumentCount); for (size_t i = 0; i < argumentCount; ++i) arguments.uncheckedAppend(toRef(exec, exec->argument(i))); JSValueRef exception = 0; JSObject* result; { APICallbackShim callbackShim(exec); result = toJS(callAsConstructor(execRef, constructorRef, argumentCount, arguments.data(), &exception)); } if (exception) throwError(exec, toJS(exec, exception)); return JSValue::encode(result); } } RELEASE_ASSERT_NOT_REACHED(); // getConstructData should prevent us from reaching here return JSValue::encode(JSValue()); } template <class Parent> bool JSCallbackObject<Parent>::customHasInstance(JSObject* object, ExecState* exec, JSValue value) { JSCallbackObject* thisObject = jsCast<JSCallbackObject*>(object); JSContextRef execRef = toRef(exec); JSObjectRef thisRef = toRef(thisObject); for (JSClassRef jsClass = thisObject->classRef(); jsClass; jsClass = jsClass->parentClass) { if (JSObjectHasInstanceCallback hasInstance = jsClass->hasInstance) { JSValueRef valueRef = toRef(exec, value); JSValueRef exception = 0; bool result; { APICallbackShim callbackShim(exec); result = hasInstance(execRef, thisRef, valueRef, &exception); } if (exception) throwError(exec, toJS(exec, exception)); return result; } } return false; } template <class Parent> CallType JSCallbackObject<Parent>::getCallData(JSCell* cell, CallData& callData) { JSCallbackObject* thisObject = jsCast<JSCallbackObject*>(cell); for (JSClassRef jsClass = thisObject->classRef(); jsClass; jsClass = jsClass->parentClass) { if (jsClass->callAsFunction) { callData.native.function = call; return CallTypeHost; } } return CallTypeNone; } template <class Parent> EncodedJSValue JSCallbackObject<Parent>::call(ExecState* exec) { JSContextRef execRef = toRef(exec); JSObjectRef functionRef = toRef(exec->callee()); JSObjectRef thisObjRef = toRef(exec->hostThisValue().toThisObject(exec)); for (JSClassRef jsClass = jsCast<JSCallbackObject<Parent>*>(toJS(functionRef))->classRef(); jsClass; jsClass = jsClass->parentClass) { if (JSObjectCallAsFunctionCallback callAsFunction = jsClass->callAsFunction) { size_t argumentCount = exec->argumentCount(); Vector<JSValueRef, 16> arguments; arguments.reserveInitialCapacity(argumentCount); for (size_t i = 0; i < argumentCount; ++i) arguments.uncheckedAppend(toRef(exec, exec->argument(i))); JSValueRef exception = 0; JSValue result; { APICallbackShim callbackShim(exec); result = toJS(exec, callAsFunction(execRef, functionRef, thisObjRef, argumentCount, arguments.data(), &exception)); } if (exception) throwError(exec, toJS(exec, exception)); return JSValue::encode(result); } } RELEASE_ASSERT_NOT_REACHED(); // getCallData should prevent us from reaching here return JSValue::encode(JSValue()); } template <class Parent> void JSCallbackObject<Parent>::getOwnNonIndexPropertyNames(JSObject* object, ExecState* exec, PropertyNameArray& propertyNames, EnumerationMode mode) { JSCallbackObject* thisObject = jsCast<JSCallbackObject*>(object); JSContextRef execRef = toRef(exec); JSObjectRef thisRef = toRef(thisObject); for (JSClassRef jsClass = thisObject->classRef(); jsClass; jsClass = jsClass->parentClass) { if (JSObjectGetPropertyNamesCallback getPropertyNames = jsClass->getPropertyNames) { APICallbackShim callbackShim(exec); getPropertyNames(execRef, thisRef, toRef(&propertyNames)); } if (OpaqueJSClassStaticValuesTable* staticValues = jsClass->staticValues(exec)) { typedef OpaqueJSClassStaticValuesTable::const_iterator iterator; iterator end = staticValues->end(); for (iterator it = staticValues->begin(); it != end; ++it) { StringImpl* name = it->key.get(); StaticValueEntry* entry = it->value.get(); if (entry->getProperty && (!(entry->attributes & kJSPropertyAttributeDontEnum) || (mode == IncludeDontEnumProperties))) propertyNames.add(Identifier(exec, name)); } } if (OpaqueJSClassStaticFunctionsTable* staticFunctions = jsClass->staticFunctions(exec)) { typedef OpaqueJSClassStaticFunctionsTable::const_iterator iterator; iterator end = staticFunctions->end(); for (iterator it = staticFunctions->begin(); it != end; ++it) { StringImpl* name = it->key.get(); StaticFunctionEntry* entry = it->value.get(); if (!(entry->attributes & kJSPropertyAttributeDontEnum) || (mode == IncludeDontEnumProperties)) propertyNames.add(Identifier(exec, name)); } } } Parent::getOwnNonIndexPropertyNames(thisObject, exec, propertyNames, mode); } template <class Parent> void JSCallbackObject<Parent>::setPrivate(void* data) { m_callbackObjectData->privateData = data; } template <class Parent> void* JSCallbackObject<Parent>::getPrivate() { return m_callbackObjectData->privateData; } template <class Parent> bool JSCallbackObject<Parent>::inherits(JSClassRef c) const { for (JSClassRef jsClass = classRef(); jsClass; jsClass = jsClass->parentClass) { if (jsClass == c) return true; } return false; } template <class Parent> JSValue JSCallbackObject<Parent>::getStaticValue(ExecState* exec, PropertyName propertyName) { JSObjectRef thisRef = toRef(this); RefPtr<OpaqueJSString> propertyNameRef; if (StringImpl* name = propertyName.publicName()) { for (JSClassRef jsClass = classRef(); jsClass; jsClass = jsClass->parentClass) { if (OpaqueJSClassStaticValuesTable* staticValues = jsClass->staticValues(exec)) { if (StaticValueEntry* entry = staticValues->get(name)) { if (JSObjectGetPropertyCallback getProperty = entry->getProperty) { if (!propertyNameRef) propertyNameRef = OpaqueJSString::create(name); JSValueRef exception = 0; JSValueRef value; { APICallbackShim callbackShim(exec); value = getProperty(toRef(exec), thisRef, propertyNameRef.get(), &exception); } if (exception) { throwError(exec, toJS(exec, exception)); return jsUndefined(); } if (value) return toJS(exec, value); } } } } } return JSValue(); } template <class Parent> JSValue JSCallbackObject<Parent>::staticFunctionGetter(ExecState* exec, JSValue slotParent, PropertyName propertyName) { JSCallbackObject* thisObj = asCallbackObject(slotParent); // Check for cached or override property. PropertySlot slot2(thisObj); if (Parent::getOwnPropertySlot(thisObj, exec, propertyName, slot2)) return slot2.getValue(exec, propertyName); if (StringImpl* name = propertyName.publicName()) { for (JSClassRef jsClass = thisObj->classRef(); jsClass; jsClass = jsClass->parentClass) { if (OpaqueJSClassStaticFunctionsTable* staticFunctions = jsClass->staticFunctions(exec)) { if (StaticFunctionEntry* entry = staticFunctions->get(name)) { if (JSObjectCallAsFunctionCallback callAsFunction = entry->callAsFunction) { JSObject* o = JSCallbackFunction::create(exec, thisObj->globalObject(), callAsFunction, name); thisObj->putDirect(exec->vm(), propertyName, o, entry->attributes); return o; } } } } } return throwError(exec, createReferenceError(exec, ASCIILiteral("Static function property defined with NULL callAsFunction callback."))); } template <class Parent> JSValue JSCallbackObject<Parent>::callbackGetter(ExecState* exec, JSValue slotParent, PropertyName propertyName) { JSCallbackObject* thisObj = asCallbackObject(slotParent); JSObjectRef thisRef = toRef(thisObj); RefPtr<OpaqueJSString> propertyNameRef; if (StringImpl* name = propertyName.publicName()) { for (JSClassRef jsClass = thisObj->classRef(); jsClass; jsClass = jsClass->parentClass) { if (JSObjectGetPropertyCallback getProperty = jsClass->getProperty) { if (!propertyNameRef) propertyNameRef = OpaqueJSString::create(name); JSValueRef exception = 0; JSValueRef value; { APICallbackShim callbackShim(exec); value = getProperty(toRef(exec), thisRef, propertyNameRef.get(), &exception); } if (exception) { throwError(exec, toJS(exec, exception)); return jsUndefined(); } if (value) return toJS(exec, value); } } } return throwError(exec, createReferenceError(exec, ASCIILiteral("hasProperty callback returned true for a property that doesn't exist."))); } } // namespace JSC
[ "ariya.hidayat@gmail.com" ]
ariya.hidayat@gmail.com
5d2824a810075602d6fea9dab22abce2e51ae6f6
596ed8d5d8e53ef7961af976f7a8449a6b591f18
/src/output/workspace-impl.cpp
f78e76e84f0a55bdc5b225d49f8cbd6d5e5e01f8
[ "MIT" ]
permissive
junglerobba/wayfire
7938361336ef3cd48880adf597325b685d8151b3
26d00712590d219ac4aae12f2061dd9f5a39a2b4
refs/heads/master
2020-11-24T01:35:55.767021
2019-12-10T11:25:30
2019-12-10T11:25:30
227,907,498
0
0
MIT
2019-12-13T19:22:00
2019-12-13T19:21:59
null
UTF-8
C++
false
false
22,341
cpp
#include <view.hpp> #include <debug.hpp> #include <output.hpp> #include <core.hpp> #include <workspace-manager.hpp> #include <render-manager.hpp> #include <signal-definitions.hpp> #include <opengl.hpp> #include <list> #include <algorithm> #include <nonstd/reverse.hpp> namespace wf { /** * output_layer_manager_t is a part of the workspace_manager module. It provides * the functionality related to layers. */ class output_layer_manager_t { struct view_layer_data_t : public wf::custom_data_t { uint32_t layer = 0; }; using layer_container = std::list<wayfire_view>; layer_container layers[TOTAL_LAYERS]; public: constexpr int layer_index_from_mask(uint32_t layer_mask) const { return __builtin_ctz(layer_mask); } uint32_t& get_view_layer(wayfire_view view) { return view->get_data_safe<view_layer_data_t>()->layer; } void remove_view(wayfire_view view) { auto& view_layer = get_view_layer(view); if (!view_layer) return; view->damage(); auto& layer_container = layers[layer_index_from_mask(view_layer)]; auto it = std::remove( layer_container.begin(), layer_container.end(), view); layer_container.erase(it, layer_container.end()); view_layer = 0; } /** * Add or move the view to the given layer */ void add_view_to_layer(wayfire_view view, layer_t layer) { view->damage(); auto& current_layer = get_view_layer(view); if (current_layer) remove_view(view); auto& layer_container = layers[layer_index_from_mask(layer)]; layer_container.push_front(view); current_layer = layer; view->damage(); } void bring_to_front(wayfire_view view) { uint32_t view_layer = get_view_layer(view); assert(view_layer > 0); // checked in workspace_manager::impl remove_view(view); add_view_to_layer(view, static_cast<layer_t>(view_layer)); } wayfire_view get_front_view(wf::layer_t layer) { auto& container = layers[layer_index_from_mask(layer)]; if (container.empty()) return nullptr; return container.front(); } void restack_above(wayfire_view view, wayfire_view below) { remove_view(view); auto layer = get_view_layer(below); auto& container = layers[layer_index_from_mask(layer)]; auto it = std::find(container.begin(), container.end(), below); container.insert(it, view); get_view_layer(view) = layer; } void restack_below(wayfire_view view, wayfire_view above) { remove_view(view); auto layer = get_view_layer(above); auto& container = layers[layer_index_from_mask(layer)]; auto it = std::find(container.begin(), container.end(), above); assert(it != container.end()); container.insert(std::next(it), view); get_view_layer(view) = layer; } std::vector<wayfire_view> get_views_in_layer(uint32_t layers_mask) { std::vector<wayfire_view> views; for (int i = TOTAL_LAYERS - 1; i >= 0; i--) { if ((1 << i) & layers_mask) { views.insert(views.end(), layers[i].begin(), layers[i].end()); } } return views; } }; struct default_workspace_implementation_t : public workspace_implementation_t { bool view_movable (wayfire_view view) { return true; } bool view_resizable(wayfire_view view) { return true; } virtual ~default_workspace_implementation_t() {} }; /** * The output_viewport_manager_t provides viewport-related functionality in * workspace_manager */ class output_viewport_manager_t { private: int vwidth; int vheight; int current_vx; int current_vy; output_t *output; public: output_viewport_manager_t(output_t *output) { this->output = output; auto section = wf::get_core().config->get_section("core"); vwidth = *section->get_option("vwidth", "3"); vheight = *section->get_option("vheight", "3"); vwidth = clamp(vwidth, 1, 20); vheight = clamp(vheight, 1, 20); current_vx = 0; current_vy = 0; } /** * @param use_bbox When considering view visibility, whether to use the * bounding box or the wm geometry. * * @return true if the view is visible on the workspace vp */ bool view_visible_on(wayfire_view view, wf_point vp, bool use_bbox) { auto g = output->get_relative_geometry(); if (view->role != VIEW_ROLE_SHELL_VIEW) { g.x += (vp.x - current_vx) * g.width; g.y += (vp.y - current_vy) * g.height; } if (view->has_transformer() & use_bbox) { return view->intersects_region(g); } else { return g & view->get_wm_geometry(); } } /** * Moves view geometry so that it is visible on the given workspace */ void move_to_workspace(wayfire_view view, wf_point ws) { if (view->get_output() != output) { log_error("Cannot ensure view visibility for a view from a different output!"); return; } auto box = view->get_wm_geometry(); auto visible = output->get_relative_geometry(); visible.x += (ws.x - current_vx) * visible.width; visible.y += (ws.y - current_vy) * visible.height; if (!(box & visible)) { /* center of the view */ int cx = box.x + box.width / 2; int cy = box.y + box.height / 2; int width = visible.width, height = visible.height; /* compute center coordinates when moved to the current workspace */ int local_cx = (cx % width + width) % width; int local_cy = (cy % height + height) % height; /* finally, calculate center coordinates in the target workspace */ int target_cx = local_cx + visible.x; int target_cy = local_cy + visible.y; view->move(box.x + target_cx - cx, box.y + target_cy - cy); } } std::vector<wayfire_view> get_views_on_workspace(wf_point vp, uint32_t layers_mask, bool wm_only) { /* get all views in the given layers */ std::vector<wayfire_view> views = output->workspace->get_views_in_layer(layers_mask); /* remove those which aren't visible on the workspace */ auto it = std::remove_if(views.begin(), views.end(), [&] (wayfire_view view) { return !view_visible_on(view, vp, !wm_only); }); views.erase(it, views.end()); return views; } wf_point get_current_workspace() { return {current_vx, current_vy}; } wf_size_t get_workspace_grid_size() { return {vwidth, vheight}; } void set_workspace(wf_point nws) { if(nws.x >= vwidth || nws.y >= vheight || nws.x < 0 || nws.y < 0) { log_error("Attempt to set invalid workspace: %d,%d," " workspace grid size is %dx%d", nws.x, nws.y, vwidth, vheight); return; } if (nws.x == current_vx && nws.y == current_vy) { output->refocus(); return; } change_viewport_signal data; data.old_viewport = {current_vx, current_vy}; data.new_viewport = {nws.x, nws.y}; /* The part below is tricky, because with the current architecture * we cannot make the viewport change look atomic, i.e the workspace * is changed first, and then all views are moved. * * We first change the viewport, and then adjust the position of the * views. */ current_vx = nws.x; current_vy = nws.y; auto screen = output->get_screen_size(); auto dx = (data.old_viewport.x - nws.x) * screen.width; auto dy = (data.old_viewport.y - nws.y) * screen.height; for (auto& v : output->workspace->get_views_in_layer(MIDDLE_LAYERS)) { v->move(v->get_wm_geometry().x + dx, v->get_wm_geometry().y + dy); } output->emit_signal("viewport-changed", &data); /* unfocus view from last workspace */ output->focus_view(nullptr); /* we iterate through views on current viewport from bottom to top * that way we ensure that they will be focused before all others */ auto views = get_views_on_workspace(get_current_workspace(), MIDDLE_LAYERS, true); for (auto& view : wf::reverse(views)) { if (view->is_mapped()) output->workspace->bring_to_front(view); } /* Focus last window */ if (!views.empty()) output->focus_view(views.front()); } }; /** * output_workarea_manager_t provides workarea-related functionality from the * workspace_manager module */ class output_workarea_manager_t { wf_geometry current_workarea; std::vector<workspace_manager::anchored_area*> anchors; output_t *output; public: output_workarea_manager_t(output_t *output) { this->output = output; this->current_workarea = output->get_relative_geometry(); } wf_geometry get_workarea() { return current_workarea; } wf_geometry calculate_anchored_geometry(const workspace_manager::anchored_area& area) { auto wa = get_workarea(); wf_geometry target; if (area.edge <= workspace_manager::ANCHORED_EDGE_BOTTOM) { target.width = wa.width; target.height = area.real_size; } else { target.height = wa.height; target.width = area.real_size; } target.x = wa.x; target.y = wa.y; if (area.edge == workspace_manager::ANCHORED_EDGE_RIGHT) target.x = wa.x + wa.width - target.width; if (area.edge == workspace_manager::ANCHORED_EDGE_BOTTOM) target.y = wa.y + wa.height - target.height; return target; } void add_reserved_area(workspace_manager::anchored_area *area) { anchors.push_back(area); } void remove_reserved_area(workspace_manager::anchored_area *area) { auto it = std::remove(anchors.begin(), anchors.end(), area); anchors.erase(it, anchors.end()); } void reflow_reserved_areas() { auto old_workarea = current_workarea; current_workarea = output->get_relative_geometry(); for (auto a : anchors) { auto anchor_area = calculate_anchored_geometry(*a); if (a->reflowed) a->reflowed(anchor_area, current_workarea); switch(a->edge) { case workspace_manager::ANCHORED_EDGE_TOP: current_workarea.y += a->reserved_size; // fallthrough case workspace_manager::ANCHORED_EDGE_BOTTOM: current_workarea.height -= a->reserved_size; break; case workspace_manager::ANCHORED_EDGE_LEFT: current_workarea.x += a->reserved_size; // fallthrough case workspace_manager::ANCHORED_EDGE_RIGHT: current_workarea.width -= a->reserved_size; break; } } reserved_workarea_signal data; data.old_workarea = old_workarea; data.new_workarea = current_workarea; if (data.old_workarea != data.new_workarea) output->emit_signal("reserved-workarea", &data); } }; class workspace_manager::impl { wf::output_t *output; wf_geometry output_geometry; signal_callback_t output_geometry_changed = [&] (void*) { auto old_w = output_geometry.width, old_h = output_geometry.height; auto new_size = output->get_screen_size(); for (auto& view : layer_manager.get_views_in_layer(MIDDLE_LAYERS)) { if (!view->is_mapped()) continue; auto wm = view->get_wm_geometry(); float px = 1. * wm.x / old_w; float py = 1. * wm.y / old_h; float pw = 1. * wm.width / old_w; float ph = 1. * wm.height / old_h; view->set_geometry({ int(px * new_size.width), int(py * new_size.height), int(pw * new_size.width), int(ph * new_size.height) }); } output_geometry = output->get_relative_geometry(); workarea_manager.reflow_reserved_areas(); }; signal_callback_t view_changed_viewport = [=] (signal_data_t *data) { check_autohide_panels(); }; bool sent_autohide = false; std::unique_ptr<workspace_implementation_t> workspace_impl; public: output_layer_manager_t layer_manager; output_viewport_manager_t viewport_manager; output_workarea_manager_t workarea_manager; impl(output_t *o) : layer_manager(), viewport_manager(o), workarea_manager(o) { output = o; output_geometry = output->get_relative_geometry(); o->connect_signal("view-change-viewport", &view_changed_viewport); o->connect_signal("output-configuration-changed", &output_geometry_changed); } workspace_implementation_t* get_implementation() { static default_workspace_implementation_t default_impl; return workspace_impl ? workspace_impl.get() : &default_impl; } bool set_implementation(std::unique_ptr<workspace_implementation_t> impl, bool overwrite) { bool replace = overwrite || !workspace_impl; if (replace) workspace_impl = std::move(impl); return replace; } void check_autohide_panels() { auto fs_views = viewport_manager.get_views_on_workspace( viewport_manager.get_current_workspace(), wf::LAYER_FULLSCREEN, true); if (fs_views.size() && !sent_autohide) { sent_autohide = 1; output->emit_signal("autohide-panels", reinterpret_cast<signal_data_t*> (1)); log_debug("autohide panels"); } else if (fs_views.empty() && sent_autohide) { sent_autohide = 0; output->emit_signal("autohide-panels", reinterpret_cast<signal_data_t*> (0)); log_debug("restore panels"); } } void set_workspace(wf_point ws) { viewport_manager.set_workspace(ws); check_autohide_panels(); } layer_t get_target_layer(wayfire_view view, layer_t current_target) { /* A view which is fullscreen should go directly to the fullscreen layer * when it is raised */ if ((current_target & MIDDLE_LAYERS) && view->fullscreen) { return LAYER_FULLSCREEN; } else { return current_target; } } void check_lower_fullscreen_layer(wayfire_view top_view, uint32_t top_view_layer) { /* We need to lower fullscreen layer only if we are focusing a regular * view, which isn't fullscreen */ if (top_view_layer != LAYER_WORKSPACE || top_view->fullscreen) return; auto views = viewport_manager.get_views_on_workspace( viewport_manager.get_current_workspace(), LAYER_FULLSCREEN, true); for (auto& v : wf::reverse(views)) layer_manager.add_view_to_layer(v, LAYER_WORKSPACE); } void add_view_to_layer(wayfire_view view, layer_t layer) { uint32_t view_layer_before = layer_manager.get_view_layer(view); layer_t target_layer = get_target_layer(view, layer); /* First lower fullscreen layer, then make the view on top of all lowered * fullscreen views */ check_lower_fullscreen_layer(view, target_layer); layer_manager.add_view_to_layer(view, target_layer); if (view_layer_before == 0) { _view_signal data; data.view = view; output->emit_signal("attach-view", &data); } check_autohide_panels(); } void bring_to_front(wayfire_view view) { uint32_t view_layer = layer_manager.get_view_layer(view); if (!view_layer) { log_error ("trying to bring_to_front a view without a layer!"); return; } uint32_t target_layer = get_target_layer(view, static_cast<layer_t>(view_layer)); /* First lower fullscreen layer, then make the view on top of all lowered * fullscreen views */ check_lower_fullscreen_layer(view, target_layer); if (view_layer == target_layer) { layer_manager.bring_to_front(view); } else { layer_manager.add_view_to_layer(view, static_cast<layer_t>(target_layer)); } check_autohide_panels(); } void restack_above(wayfire_view view, wayfire_view below) { if (!view || !below || view == below) { log_error("Cannot restack a view on top of itself"); return; } uint32_t view_layer = layer_manager.get_view_layer(view); uint32_t below_layer = layer_manager.get_view_layer(below); if (view_layer == 0 || below_layer == 0 || view_layer != below_layer) { log_error("restacking views from different layers(%d vs %d!)", view_layer, below_layer); return; } log_info("restack %s on top of %s", view->get_title().c_str(), below->get_title().c_str()); /* If we restack on top of the front-most view, then this can * potentially change fullscreen state. So in this case use the * bring_to_front() path */ auto front_view = layer_manager.get_front_view(static_cast<wf::layer_t>(below_layer)); if (front_view == below) { bring_to_front(view); } else { layer_manager.restack_above(view, below); } } void restack_below(wayfire_view view, wayfire_view above) { if (!view || !above || view == above) { log_error("Cannot restack a view on top of itself"); return; } uint32_t view_layer = layer_manager.get_view_layer(view); uint32_t below_layer = layer_manager.get_view_layer(above); if (view_layer == 0 || below_layer == 0 || view_layer != below_layer) { log_error("restacking views from different layers(%d vs %d!)", view_layer, below_layer); return; } layer_manager.restack_below(view, above); } void remove_view(wayfire_view view) { uint32_t view_layer = layer_manager.get_view_layer(view); layer_manager.remove_view(view); _view_signal data; data.view = view; output->emit_signal("detach-view", &data); /* Check if the next focused view is fullscreen. If so, then we need * to make sure it is in the fullscreen layer */ if (view_layer & MIDDLE_LAYERS) { auto views = viewport_manager.get_views_on_workspace( viewport_manager.get_current_workspace(), LAYER_WORKSPACE | LAYER_FULLSCREEN, true); if (views.size() && views[0]->fullscreen) layer_manager.add_view_to_layer(views[0], LAYER_FULLSCREEN); } check_autohide_panels(); } }; workspace_manager::workspace_manager(output_t *wo) : pimpl(new impl(wo)) {} workspace_manager::~workspace_manager() = default; /* Just pass to the appropriate function from above */ bool workspace_manager::view_visible_on(wayfire_view view, wf_point ws) { return pimpl->viewport_manager.view_visible_on(view, ws, true); } std::vector<wayfire_view> workspace_manager::get_views_on_workspace(wf_point ws, uint32_t layer_mask, bool wm_only) { return pimpl->viewport_manager.get_views_on_workspace(ws, layer_mask, wm_only); } void workspace_manager::move_to_workspace(wayfire_view view, wf_point ws) { return pimpl->viewport_manager.move_to_workspace(view, ws); } void workspace_manager::add_view(wayfire_view view, layer_t layer) { return pimpl->add_view_to_layer(view, layer); } void workspace_manager::bring_to_front(wayfire_view view) { return pimpl->bring_to_front(view); } void workspace_manager::restack_above(wayfire_view view, wayfire_view below) { return pimpl->restack_above(view, below); } void workspace_manager::restack_below(wayfire_view view, wayfire_view below) { return pimpl->restack_below(view, below); } void workspace_manager::remove_view(wayfire_view view) { return pimpl->remove_view(view); } uint32_t workspace_manager::get_view_layer(wayfire_view view) { return pimpl->layer_manager.get_view_layer(view); } std::vector<wayfire_view> workspace_manager::get_views_in_layer(uint32_t layers_mask) { return pimpl->layer_manager.get_views_in_layer(layers_mask); } workspace_implementation_t* workspace_manager::get_workspace_implementation() { return pimpl->get_implementation(); } bool workspace_manager::set_workspace_implementation(std::unique_ptr<workspace_implementation_t> impl, bool overwrite) { return pimpl->set_implementation(std::move(impl), overwrite); } void workspace_manager::set_workspace(wf_point ws) { return pimpl->set_workspace(ws); } wf_point workspace_manager::get_current_workspace() { return pimpl->viewport_manager.get_current_workspace(); } wf_size_t workspace_manager::get_workspace_grid_size() { return pimpl->viewport_manager.get_workspace_grid_size(); } void workspace_manager::add_reserved_area(anchored_area *area) { return pimpl->workarea_manager.add_reserved_area(area); } void workspace_manager::remove_reserved_area(anchored_area *area) { return pimpl->workarea_manager.remove_reserved_area(area); } void workspace_manager::reflow_reserved_areas() { return pimpl->workarea_manager.reflow_reserved_areas(); } wf_geometry workspace_manager::get_workarea() { return pimpl->workarea_manager.get_workarea(); } } // namespace wf
[ "ammen99@gmail.com" ]
ammen99@gmail.com
c9ea2b1469a237024575fe5a2ca61ec60bc74246
b39985c2ce1fa0ce89856b6470da979c69ef1924
/src/CL_MapMode_stub.hpp
5d25892767f7dcbbd659605283d208c601e2d93a
[ "LicenseRef-scancode-other-permissive", "LicenseRef-scancode-unknown-license-reference", "Zlib" ]
permissive
fccm/ocaml-clanlib
bed147f5cd5454a88d27b781d7649082b0971351
1929f1c11d4cc9fc19e7da22826238b4cce7a07d
refs/heads/master
2021-01-04T02:33:41.811027
2020-10-27T13:12:30
2020-10-27T13:12:30
305,236,647
1
0
null
null
null
null
UTF-8
C++
false
false
1,157
hpp
/* ocaml-clanlib: OCaml bindings to the ClanLib SDK Copyright (C) 2013 Florent Monnier This software is provided "AS-IS", without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely. */ #include <ClanLib/Display/Render/graphic_context.h> #include "cl_caml_incs.hpp" #ifndef _CL_MAPMODE_INC #define _CL_MAPMODE_INC // Conversions of enum CL_MapMode: static const CL_MapMode caml_table_CL_MapMode[] = { cl_map_2d_upper_left, cl_map_2d_lower_left, cl_user_projection, }; #define CL_MapMode_val(v) \ (caml_table_CL_MapMode[Long_val(v)]) value Val_CL_MapMode(CL_MapMode e) { switch (e) { case cl_map_2d_upper_left: return Val_long(0); case cl_map_2d_lower_left: return Val_long(1); case cl_user_projection: return Val_long(2); default: caml_failwith("CL_MapMode"); } caml_failwith("CL_MapMode"); } #endif // _CL_MAPMODE_INC // vim: sw=4 sts=4 ts=4 et
[ "monnier.florent@gmail.com" ]
monnier.florent@gmail.com
2e1f407cba8b9426d3173cdbcc16f994f1bd8803
e6ae6070d3053ca1e4ff958c719a8cf5dfcd6b9b
/XOR_in_a_tree.cpp
d47d6f383e615e30292f96ba46e3be11f2d24f88
[]
no_license
Arti14/Competitive-Programming
31d246d34581599219ffb7e23a3372f02fc6dfa6
de42977b6cce39bb480d3cf90c1781d806be3b56
refs/heads/master
2021-01-25T07:34:29.240567
2015-05-08T07:07:10
2015-05-08T07:07:10
35,263,950
0
0
null
null
null
null
UTF-8
C++
false
false
3,762
cpp
#include <iostream> #include <vector> #include <algorithm> #include <cstdio> #include <cmath> using namespace std; #define MAXN 100010 #define MAXL 20 vector <int> adj[MAXN]; int a[MAXN], pos[MAXN], subTreeNodesCount[MAXN]; int par[MAXN][MAXL], pathXOR[MAXN], depth[MAXN]; bool visited[MAXN]; int m, l, n; void DFS(int u) { visited[u] = true; subTreeNodesCount[u] = 1; for(int i = 0; i < adj[u].size(); i++) { int v = adj[u][i]; if(!visited[v]) { pathXOR[v] = a[v] ^ pathXOR[u]; depth[v] = depth[u] + 1; DFS(v); par[v][0] = u; subTreeNodesCount[u] += subTreeNodesCount[v]; } } pos[u] = m; m--; } struct segmentTree { int t[8*MAXN]; void init() { for(int i = 0; i <= 8*n; i++) { t[i] = 0; } } void lazyPropogation(int node, int s, int e) { if(s <= e) { t[node*2] = t[node*2] ^ t[node]; t[node*2 + 1] = t[node*2 + 1] ^ t[node]; t[node] = 0; } } void update(int node, int s, int e, int l, int r, int xorVal) { lazyPropogation(node, s, e); if(e < l || s > r) { return; } if(s >= l && e <= r) { t[node] ^= xorVal; return; } int mid = (e + s)/2; update(node*2, s, mid, l, r, xorVal); update(node*2 + 1, mid + 1, e, l, r, xorVal); } void xorRange(int l, int r, int xorVal) { update(1, 1, n, l, r, xorVal); } void getXORValue(int node, int s, int e, int pos, int &res) { lazyPropogation(node, s, e); if(e < pos || s > pos) { return; } if(e == s) { res = t[s]; return; } int mid = (s + e) / 2; getXORValue(node*2, s, mid, pos, res); getXORValue(node*2 + 1, mid + 1, e, pos, res); } int updatedXOR(int pos) { int res = 0; getXORValue(1, 1, n, pos, res); return res; } } st; void init() { scanf("%d", &n); int u, v; for(int i = 1; i <= n; i++) { scanf("%d", &a[i]); visited[i] = false; adj[i].clear(); } for(int i = 1; i <= n-1; i++) { scanf("%d %d", &u, &v); adj[u].push_back(v); adj[v].push_back(u); } m = n; pathXOR[1] = a[1]; depth[1] = 1; DFS(1); l = (int)(log(n) / log(2)) + 1; for(int j = 1; j <= l; j++) { for(int i = 1; i <= n; i++) par[i][j] = par[par[i][j - 1]][j - 1]; } } void jump(int &node, int height) { for(int i = l; i >= 0 ; i--) { if(height >= (1 << i)) { node = par[node][i]; height -= (1 << i); } } } int findLCA(int u, int v) { if (depth[u] > depth[v]) jump(u, depth[u] - depth[v]); else jump(v, depth[v] - depth[u]); if (u == v) return u; for(int i = l; i >= 0; i--) { if (par[u][i] != par[v][i]) { u = par[u][i]; v = par[v][i]; } } return par[u][0]; } int main() { int T; int q; scanf("%d", &T); while(T--) { int u, v, op; init(); st.init(); scanf("%d\n", &q); while(q--) { scanf("%d %d %d", &op, &u, &v); if(op == 1) { //update a[u] to v int xorVal = a[u] ^ v; st.xorRange(pos[u], pos[u] + subTreeNodesCount[u] - 1, xorVal); a[u] = v; } else { //XOR of path from u to v int lca = findLCA(u, v); int ans = pathXOR[u] ^ pathXOR[v] ^ st.updatedXOR(pos[u]) ^ st.updatedXOR(pos[v]) ^ a[lca]; printf("%d\n", ans); } } } return 0; }
[ "rt@rt-VGN-CS14G-B.(none)" ]
rt@rt-VGN-CS14G-B.(none)
d629a7859fe72393c173c31ff25be8a629bdcc38
53bf7487e8a4f6fd98b314280311fd04a1c6a924
/082814ClassesTest/082814ClassesTest/Point.h
8821c6d1aaab1846342f0b35157f57f09046c6c8
[]
no_license
redwingsdan/cpp-schoolwork
5fc2c2ceaf828ad42f1ed77b572b016836a7f602
08375fac86d71fbc01e6cebc2f244116feb6c307
refs/heads/master
2022-11-28T14:53:22.179316
2020-08-04T04:06:52
2020-08-04T04:06:52
284,873,262
0
0
null
null
null
null
UTF-8
C++
false
false
115
h
#include <iostream> class Point { public: Point(double x, double y); private: double xCoord; double yCoord; };
[ "djp21795@yahoo.com" ]
djp21795@yahoo.com
5c5474f5e6ba8ed5cf8105114c8944b7ed8ff0b8
938e4888840de783c74cd6bcf0a44443472054dd
/gammacombo/include/PDF_D_KSKpi_RWS_noDmix.h
c1059e29e593d07d009bdcb2cc3e324b3c8a8013
[]
no_license
ppodolsky/pygammacombo
1922fb541a8d48f3b08558c1552053e2cf6017cd
fa52d2cda49694de36deb13e235f4e0801fd0fe5
refs/heads/master
2021-01-14T08:57:06.796747
2016-02-14T05:39:59
2016-02-14T05:39:59
null
0
0
null
null
null
null
UTF-8
C++
false
false
909
h
/** * Gamma Combination * Author: Matthew Kenzie, matthew.kenzie@cern.ch * Date: January 2016 * **/ #ifndef PDF_D_KSKpi_RWS_noDmix_h #define PDF_D_KSKpi_RWS_noDmix_h #include "PDF_Abs.h" #include "TFile.h" #include "RooHistPdf.h" #include "RooHistPdfVar.h" #include "RooHistPdfAngleVar.h" #include "ParametersGammaCombo.h" using namespace RooFit; using namespace std; using namespace Utils; /// /// The measurement of the D->KSKpi coherence factor, rD and dD. /// class PDF_D_KSKpi_RWS_noDmix : public PDF_Abs { public: PDF_D_KSKpi_RWS_noDmix(config cObs=lhcb, config cErr=lhcb, config cCor=lhcb); ~PDF_D_KSKpi_RWS_noDmix(); void initObservables(); virtual void initParameters(); virtual void initRelations(); void setCorrelations(config c); void setObservables(config c); void setUncertainties(config c); void buildPdf(); }; #endif
[ "ppodolsky@me.com" ]
ppodolsky@me.com
8b8f11932d0e0ca91e5e11fe16c3fa13e4f6c27f
fca68c5fec6df6f999408571315c2b8e7c4b8ce9
/service/uberfittingweights_home/src/mysourceformats/SampleFileSourceFormat/Instantiate/T_CFProxy.cc
3d3f808a1a630056e25e67a44f11a1eca029ab0b
[]
no_license
jpivarski-talks/1999-2006_gradschool-3
8b2ea0b6babef104b0281c069994fc9894a05b14
57e80d601c0519f9e01a07ecb53d367846e8306e
refs/heads/master
2022-11-19T12:01:42.959599
2020-07-25T01:19:59
2020-07-25T01:19:59
282,235,559
0
0
null
null
null
null
UTF-8
C++
false
false
768
cc
// -*- C++ -*- // // Package: <package> // Module: T_CFProxy // // Description: <one line class summary> // // Implementation: // <Notes on implementation> // // Author: REPLACEUSERNAME // Created: REPLACETIMEB // $Id: T_Binder.cc,v 1.0 REPLACETIMEA REPLACEUSERID Exp $ // // Revision history // // #include "Experiment/Experiment.h" // system include files #if defined(STL_TEMPLATE_DEFAULT_PARAMS_FIRST_BUG) #include <vector> #endif /* STL_TEMPLATE_DEFAULT_PARAMS_FIRST_BUG */ // user include files //#include "Experiment/report.h" #include "REPLACEMIXEDCASEFileSourceFormat/REPLACEMIXEDCASEInfo.h" #include "ConstantsFileDelivery/Template/CFProxy.cc" // // instantiate // template class CFProxy< REPLACEMIXEDCASEInfo::ConstantType >;
[ "jpivarski@gmail.com" ]
jpivarski@gmail.com
1d48e608badbc6a0f5d975e1dd037488c9f77948
d2c68e57939f3fd59250e1eb190a83802de0604a
/dusthm/src/input_output.hpp
895d29c18b04ada066d4fad3b8b7ebc755d39b97
[ "MIT" ]
permissive
tloredo/CUDAHM
0fd25a9b1dc5ac5609a8a53b2267a32660ca45b0
d50161de8c6352fcb8acd7b0960a9ea4ce5d4fa3
refs/heads/master
2021-01-21T03:45:54.522043
2014-05-02T02:57:47
2014-05-02T02:57:47
38,272,182
1
1
null
2015-06-29T21:25:05
2015-06-29T21:25:05
null
UTF-8
C++
false
false
916
hpp
/* * input_output.hpp * * Created on: Mar 21, 2014 * Author: brandonkelly */ #ifndef INPUT_OUTPUT_HPP_ #define INPUT_OUTPUT_HPP_ // standard includes #include <fstream> #include <string> #include <vector> typedef std::vector<std::vector<double> > vecvec; // return the number of lines in a text file int get_file_lines(std::string& filename); // read in the data void read_data(std::string& filename, vecvec& meas, vecvec& meas_unc, int ndata, int mfeat); // load in a set of (const, beta, temp) values void load_cbt(std::string& filename, vecvec& cbt, int ndata); // dump the sampled values of the population parameter to a text file void write_thetas(std::string& filename, vecvec& theta_samples); // dump the posterior means and standard deviations of the characteristics to a text file void write_chis(std::string& filename, std::vector<vecvec>& chi_samples); #endif /* INPUT_OUTPUT_HPP_ */
[ "bckelly80@gmail.com" ]
bckelly80@gmail.com
926609f93e1f6f259b566c582ad33ee8044fab23
0954477f92ab979ab3f8aebdc8d957c04959a916
/C++Primer/Day10/FileClass.cpp
7ae6a36f24e79bfc5fcc65a034f96826b6f31ce1
[]
no_license
Drafox/CplusplusLearn30Days
f2091eb90a7a2af37ef960692fb80aad4dcd9df6
87fbf2972a184a0623765e55b77b1c13017ea7d0
refs/heads/master
2020-09-01T10:46:28.861761
2019-12-28T09:26:39
2019-12-28T09:26:39
218,943,278
0
0
null
null
null
null
UTF-8
C++
false
false
310
cpp
#include"FileClass.h" void FileClass:: GetMaxNameLength() { std::cout << "the max length of name is :" << NAME_MAX << std::endl; } void FileClass::TestName(std::string name) { auto flag = O_RDWR|O_CREAT|O_EXCL; auto file = open(name.c_str(), flag); std::cerr << strerror(errno) << std::endl; }
[ "yearinyearout123@gmail.com" ]
yearinyearout123@gmail.com
3fbb7125fbb86e0b115bbf2ecb6520f83bcdc122
49db059c239549a8691fda362adf0654c5749fb1
/2010/verbov/task2/TimerDialog.h
b135d206a60658ff75f5b554071a91ccc32d45ed
[]
no_license
bondarevts/amse-qt
1a063f27c45a80897bb4751ae5c10f5d9d80de1b
2b9b76c7a5576bc1079fc037adcf039fed4dc848
refs/heads/master
2020-05-07T21:19:48.773724
2010-12-07T07:53:51
2010-12-07T07:53:51
35,804,478
0
0
null
null
null
null
UTF-8
C++
false
false
636
h
#ifndef _TIMER_DIALOG_H_ #define _TIMER_DIALOG_H_ #include <QDialog> #include <QLabel> #include <QPushButton> #include <QLineEdit> #include <QComboBox> #include <QTimerEvent> class TimerDialog : public QDialog { Q_OBJECT public: TimerDialog(QWidget *parent = 0); void timerEvent(QTimerEvent *event); public slots: void setTimer(); void stopTimer(); private: QLabel *myFirstTimerLabel, *mySecondTimerLabel; QPushButton *mySetButton, *myStopButton; QLineEdit *myTimerIntervalLineEdit; QComboBox *myTimersList; int myFirstTimerID, mySecondTimerID; int myFirstTimerValue, mySecondTimerValue; }; #endif // _TIMER_DIALOG_H_
[ "lfilosofl@1a14799f-55e9-4979-7f51-533a2053511e" ]
lfilosofl@1a14799f-55e9-4979-7f51-533a2053511e
578e891ca59189953d27247f83e6625be8bf0c80
315649e57d11f8d19500bcecc89a5ef8e53fb702
/layers/FullyConnectedLayer.hpp
1abcf0c33aaa7d9a777f8bc83322ecd9b45ee33d
[]
no_license
dronperminov/MakeYourOwnNetwork
4673699c9f90f1a1f79b05b0692d9c5a937b5026
8bf8274408d0881445017b3a20331086ff6a1798
refs/heads/master
2021-04-18T10:55:19.393665
2020-04-07T22:44:19
2020-04-07T22:44:19
249,536,816
0
0
null
null
null
null
UTF-8
C++
false
false
3,569
hpp
#pragma once #include "Layer.hpp" using namespace std; class FullyConnectedLayer : public Layer { int inputs; int outputs; vector<vector<double>> w; // матрица весовых коэффициентов vector<vector<double>> dw; // градиенты весовых коэффициентов void InitializeWeights(); // инициализация весовых коэффициентов public: FullyConnectedLayer(TensorSize inputSize, int outputs); // создание слоя void Forward(const Tensor &x); // прямое распространение void Backward(const Tensor &x, const Tensor &dout, bool needDx); // обратное распространение void UpdateWeights(double learningRate); // обновление весовых коэффициентов void PrintWeights() const; // вывод весовых коэффициентов void Summary() const; // вывод информации }; FullyConnectedLayer::FullyConnectedLayer(TensorSize inputSize, int outputs) : Layer(inputSize, { 1, 1, outputs }) { this->inputs = inputSize.width * inputSize.height * inputSize.depth; this->outputs = outputs; w = vector<vector<double>>(outputs, vector<double>(inputs + 1)); // выделяем память под весовые коэффициенты и выходной вектор dw = vector<vector<double>>(outputs, vector<double>(inputs + 1)); // выделяем место под градиенты InitializeWeights(); } // инициализация весовых коэффициентов void FullyConnectedLayer::InitializeWeights() { for (int i = 0; i < outputs; i++) { for (int j = 0; j < inputs; j++) w[i][j] = GetRnd(-0.5, 0.5); w[i][inputs] = GetRnd(-0.5, 0.5); } } // прямое распространение void FullyConnectedLayer::Forward(const Tensor &x) { for (int i = 0; i < outputs; i++) { double y = w[i][inputs]; for (int j = 0; j < inputs; j++) y += w[i][j] * x[j]; output[i] = y; } } // обратное распространение void FullyConnectedLayer::Backward(const Tensor &x, const Tensor &dout, bool needDx) { // считаем градиенты весовых коэффициентов for (int i = 0; i < outputs; i++) { for (int j = 0; j < inputs; j++) dw[i][j] += dout[i] * x[j]; dw[i][inputs] += dout[i]; } if (!needDx) return; // считаем градиенты по входам for (int i = 0; i < inputs; i++) { dx[i] = 0; for (int j = 0; j < outputs; j++) dx[i] += w[j][i] * dout[j]; } } // обновление весовых коэффициентов void FullyConnectedLayer::UpdateWeights(double learningRate) { for (int i = 0; i < outputs; i++) { for (int j = 0; j < inputs; j++) { w[i][j] -= learningRate * dw[i][j]; // выполняем шаг градиентного спуска для веса dw[i][j] = 0; } w[i][inputs] -= learningRate * dw[i][inputs]; // выполняем шаг градиентного спуска для смещения dw[i][inputs] = 0; } } // вывод весовых коэффициентов void FullyConnectedLayer::PrintWeights() const { for (int i = 0; i < outputs; i++) { for (int j = 0; j < inputs; j++) cout << w[i][j] << " "; cout << w[i][inputs] << endl; } } // вывод информации void FullyConnectedLayer::Summary() const { cout << "| fully connected | " << setw(12) << inputSize << " | " << setw(13) << outputSize << " | " << setw(13) << ((inputs + 1) * outputs) << " |" << endl; }
[ "dronperminov@gmail.com" ]
dronperminov@gmail.com
e3f2d186d74b1eec66e412b99ccfdd54b6435c67
86683a8d36c44321c92e9c9a8ea6f0602c4f8452
/src/good/res/res.h
eb1c2c5bfe480ca4aec2431134d55d42b6652974
[]
no_license
cnyaw/good
157ca8b8c6560f7cd1f56141b93331fb973e95c7
c7a6564c2421e0685790550734cea5194eed619c
refs/heads/master
2023-09-04T11:06:03.035298
2023-08-31T07:57:37
2023-08-31T07:57:37
107,022,657
10
1
null
null
null
null
UTF-8
C++
false
false
4,988
h
// // res.h // Good resource manager. // // Copyright (c) 2007 Waync Cheng. // All Rights Reserved. // // 2007/11/29 Waync created. // #pragma once namespace good { class Traits { public: typedef Sound SoundT; typedef Texture TextureT; typedef Map<Tileset> MapT; typedef Sprite<Tileset> SpriteT; typedef Object ObjectT; typedef Level<Object> LevelT; }; template<class TraitsT = Traits> class Resource { public: typedef typename TraitsT::SoundT SoundT; typedef typename TraitsT::TextureT TextureT; typedef typename TraitsT::MapT MapT; typedef typename TraitsT::SpriteT SpriteT; typedef typename TraitsT::ObjectT ObjectT; typedef typename TraitsT::LevelT LevelT; // // Project property. // std::string mName; std::string mFileName; sw2::ObjectPool<int,32,true> mId; // ID manager pool. // // Settings. // int mWidth, mHeight; // Window size. int mFps; // // Sounds. // std::vector<int> mSndIdx; std::map<int, SoundT> mSnd; // // Textures. // std::vector<int> mTexIdx; std::map<int, TextureT> mTex; // // Maps. // std::vector<int> mMapIdx; std::map<int, MapT> mMap; // // Sprites. // std::vector<int> mSpriteIdx; std::map<int, SpriteT> mSprite; // // Level. // std::vector<int> mLevelIdx; std::map<int, LevelT> mLevel; // // Script. // std::vector<int> mScriptIdx; std::map<int, std::string> mScript; // // STGE script. // std::vector<int> mStgeScriptIdx; std::map<int, std::string> mStgeScript; // // Project dependencies. // std::vector<int> mDepIdx; std::map<int, std::string> mDep; // // Codegen macros. Ex: isSnd, getSnd. // #define IMPL_GET_RESOURCE_ITEM(ResName, ResType) \ bool is ## ResName(int id) const \ { \ return m ## ResName.end() != m ## ResName.find(id); \ } \ ResType& get ## ResName(int id) \ { \ return const_cast<ResType&>(static_cast<Resource const &>(*this).get ## ResName(id)); \ } \ ResType const& get ## ResName(int id) const \ { \ typename std::map<int, ResType>::const_iterator it = m ## ResName.find(id); \ if (m ## ResName.end() == it) { \ throw std::range_error("get" # ResName); \ } else { \ return it->second; \ } \ } IMPL_GET_RESOURCE_ITEM(Snd, SoundT) IMPL_GET_RESOURCE_ITEM(Tex, TextureT) IMPL_GET_RESOURCE_ITEM(Map, MapT) IMPL_GET_RESOURCE_ITEM(Sprite, SpriteT) IMPL_GET_RESOURCE_ITEM(Level, LevelT) IMPL_GET_RESOURCE_ITEM(Script, std::string) IMPL_GET_RESOURCE_ITEM(StgeScript, std::string) IMPL_GET_RESOURCE_ITEM(Dep, std::string) #undef IMPL_GET_RESOURCE_ITEM // // Load resource. // bool load(std::string const& name) { std::ifstream ifs(name.c_str()); if (!ifs) { return false; } if (!load(ifs)) { return false; } mFileName = name; return true; } bool load(std::istream& ins) { // // File. // sw2::Ini ini; if (!ini.load(ins)) { SW2_TRACE_ERROR("bad ini file format"); return false; } if (!ini.find("good")) { SW2_TRACE_ERROR("[good] section not found"); return false; } sw2::Ini sec = ini["good"]; // // Property. // if (GOOD_VERSION != sec["version"].value) { SW2_TRACE_ERROR("version mismatch"); return false; } mName = sec["name"].value; mId.clear(); // // Default settings. // mWidth = 640; mHeight = 480; mFps = GOOD_DEFAULT_TICK_PER_SECOND; std::vector<int> v; assignListFromString(sec["window"].value, v); if (1 <= v.size()) { mWidth = v[0]; } if (2 <= v.size()) { mHeight = v[1]; } if (sec.find("fps")) { mFps = sec["fps"]; } return loadAllResources(sec, ini); } bool loadAllResources(sw2::Ini &sec, const sw2::Ini &ini) { // // Sounds. // if (!loadResources(mId, mSnd, mSndIdx, "snds", sec, ini)) { return false; } // // Textures. // if (!loadResources(mId, mTex, mTexIdx, "texs", sec, ini)) { return false; } // // Maps. // if (!loadResources(mId, mMap, mMapIdx, "maps", sec, ini)) { return false; } // // Sprites. // if (!loadResources(mId, mSprite, mSpriteIdx, "sprites", sec, ini)) { return false; } // // Levels. // if (!loadResources(mId, mLevel, mLevelIdx, "levels", sec, ini)) { return false; } // // Scripts. // if (!loadStringTableResources(mId, mScript, mScriptIdx, "scripts", ini)) { return false; } // // STGE scripts. // if (!loadStringTableResources(mId, mStgeScript, mStgeScriptIdx, "stges", ini)) { return false; } // // Dependencies. // if (!loadStringTableResources(mId, mDep, mDepIdx, "deps", ini)) { return false; } return true; } }; } // namespace good // end of res.h
[ "wayncc@gmail.com" ]
wayncc@gmail.com
d4bafd35c6de3af612a58c515e66ca7f945290d0
99f762b98f4698967b57398189db3920857c4202
/Ant-Simulator/ant.h
02037af6bb70b489216b919c548404633f7381ea
[]
no_license
TarefasUFSC/QT-ant-simulator
92490abe2ada56ec84efa2571aa0a82ee0e4c0e7
f13d81a44904d6704b698c2218ddc7422ff83203
refs/heads/main
2023-05-31T01:58:35.160557
2021-06-12T17:08:03
2021-06-12T17:08:03
null
0
0
null
null
null
null
UTF-8
C++
false
false
479
h
#ifndef ANT_H #define ANT_H #include <QGraphicsPixmapItem> #include <QObject> #include <QGraphicsItem> #include <QMediaPlayer> #include <vector> using namespace std; class Ant : public QObject, public QGraphicsPixmapItem { public: int goal; //0: Food - 1: Home bool food; int steps; float lastAngle; Ant(QGraphicsPixmapItem *parent = 0); void move(); void move(float angle); ~Ant(){}; private: void move(int dX, int dY); }; #endif // ANT_H
[ "rodrigo.souza289@etec.sp.gov.br" ]
rodrigo.souza289@etec.sp.gov.br
81b9705db271d280394a9526c5cbdddcb4c54c4e
4cb59bab0083dfc2021865d50f608aacc70c77c5
/include/colorpanelfader.h
517d2b468ad8f173e5c6b4488ec5154dd2127d34
[ "LicenseRef-scancode-mulanpsl-1.0-en", "MulanPSL-1.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
netmankind/qucsdk
73b75b1f64ca66625ba2d4240f54d482689a4f86
54be06bc9054b4a615deda1dc40436593b5803a4
refs/heads/master
2020-08-07T16:22:10.763797
2019-10-07T13:40:30
2019-10-07T13:40:30
213,523,204
5
3
null
2019-10-08T01:39:38
2019-10-08T01:39:37
null
UTF-8
C++
false
false
1,862
h
#ifndef COLORPANELFADER_H #define COLORPANELFADER_H /** * 颜色滑块面板 作者:feiyangqingyun(QQ:517216493) 2017-11-17 * 1:可设置滑块条之间的间隔 * 2:可设置滑块组之间的间隔 * 3:可设置背景颜色 */ #include <QWidget> class QHBoxLayout; class QSpacerItem; class ColorPanelBar; #ifdef quc #if (QT_VERSION < QT_VERSION_CHECK(5,7,0)) #include <QtDesigner/QDesignerExportWidget> #else #include <QtUiPlugin/QDesignerExportWidget> #endif class QDESIGNER_WIDGET_EXPORT ColorPanelFader : public QWidget #else class ColorPanelFader : public QWidget #endif { Q_OBJECT Q_PROPERTY(int barSpace READ getBarSpace WRITE setBarSpace) Q_PROPERTY(int groupSpace READ getGroupSpace WRITE setGroupSpace) Q_PROPERTY(QColor bgColor READ getBgColor WRITE setBgColor) public: explicit ColorPanelFader(QWidget *parent = 0); protected: bool eventFilter(QObject *watched, QEvent *event); void paintEvent(QPaintEvent *); private: QHBoxLayout *layout; QSpacerItem *spacer1; QSpacerItem *spacer2; QList<ColorPanelBar *> items; int barSpace; //柱状条间隔 int groupSpace; //分组间隔 QColor bgColor; //背景颜色 private slots: void colorChanged(const QColor &color, double value, double percent); public: int getBarSpace() const; int getGroupSpace() const; QColor getBgColor() const; QSize sizeHint() const; QSize minimumSizeHint() const; public: //设置柱状条间隔 void setBarSpace(int barSpace); //设置分组间隔 void setGroupSpace(int groupSpace); //设置背景颜色 void setBgColor(const QColor &bgColor); Q_SIGNALS: void colorChanged(const QColor &color, double hue, double sat, double bright); }; #endif // COLORPANELFADER_H
[ "feiyangqingyun@163.com" ]
feiyangqingyun@163.com
d6167c552b5792fb0820f0d29ae9ebc875447a02
0aa175c6e76c710940e97da77eb27d9c549edc76
/Invader.h
734c5b14df70458bc74ff1b1480c7ddb65d6bd26
[]
no_license
DeirhX/SpaceInvador
21a7eb63e8c296f02631d84c48153a6e40e14995
3b8337acc4f9a854a6f9ef594e9a32f7936550cc
refs/heads/master
2022-04-08T17:44:23.697616
2020-02-17T09:35:26
2020-02-17T09:35:26
239,905,038
1
0
null
null
null
null
UTF-8
C++
false
false
736
h
#pragma once #include "Renderables.h" #include "AI.h" class Invader : public Renderable { using base = Renderable; private: int seed = 0; float time_elapsed = 0; SyntheticIntelligence ai; public: Invader(Sprite sprite, Position base, int seed, SyntheticIntelligence&& ai) : Renderable(sprite, base, {10}), seed(seed), ai(ai) { SetSize((float)(10 + ((seed) % 17))); } [[nodiscard]] EntityType GetType() const override { return EntityType::Invader; } [[nodiscard]] int GetSeed() const { return seed; }; [[nodiscard]] Boundary GetBoundary() const override { return { Boundary{ GetLocation(), GetSize() } }; } void Advance(float delta) override; void Collide(const Entity& other) override; void Destroy() override; };
[ "dobias@avast.com" ]
dobias@avast.com
85b8aae1d04b51b7d515f6685103de0131a55cb1
bc0945070d150c8af7cc56bf6e045a8c2cc7873d
/3256/2327843_RE.cpp
bcd406d3db1ea4df405161cad01ed08bba4ecd79
[]
no_license
fengrenchang86/PKU
ab889d88cd62b3c0b3e00cde5d5c3a652a16221a
0c4adf6b740d2186b7f23124673cd56520d1c818
refs/heads/master
2021-01-10T12:12:18.100884
2016-03-07T14:14:33
2016-03-07T14:14:33
53,328,385
1
0
null
null
null
null
UTF-8
C++
false
false
1,130
cpp
#include <iostream> using namespace std; struct ac { int node; ac *next; ac(){next=NULL;} }*list[1001]; bool flag = false; int max = 0; int cow[1001]; int first[1001]; void insert(int a, int b) { ac *p = new ac; p->node = b; p->next = list[a]; list[a] = p; } void dfs ( int node, int count, int k, int number) { if ( number > max ) max = number; if ( cow[node] == 1 && flag == true ) return; else if ( flag == true ) number++; else if ( cow[node] == 1 && flag == false) count++; if ( count == k && flag == false ) { flag = true; number++; } ac *p = list[node]; while ( p != NULL ) { dfs(p->node,count,k,number); p = p->next; } if ( number > max ) max = number; } int main () { int x,y; int k,n,m,i,d; scanf("%d%d%d",&k,&n,&m); for ( i = 0; i <= n; i++ ) { cow[i] = 0; first[i] = 0; list[i] = NULL; } for ( i = 0; i < k; i++ ) { scanf("%d",&d); cow[d] = 1; } for ( i = 0; i < m; i++ ) { scanf("%d%d",&x,&y); insert(x,y); first[y] = 1; } for ( i = 1; i <= n; i++ ) { if ( first[i] == 0 ) { flag = false; dfs(i,0,k,0); } } cout<<max<<endl; return 0; }
[ "fengrenchang86@gmail.com" ]
fengrenchang86@gmail.com
3be3c12459f534fe41467512ea8ce8244b406f74
92e67b30497ffd29d3400e88aa553bbd12518fe9
/assignment2/part6/Re=110/4.3/p
516fb5eb53061baa76cd5beea6991e39ad616053
[]
no_license
henryrossiter/OpenFOAM
8b89de8feb4d4c7f9ad4894b2ef550508792ce5c
c54b80dbf0548b34760b4fdc0dc4fb2facfdf657
refs/heads/master
2022-11-18T10:05:15.963117
2020-06-28T15:24:54
2020-06-28T15:24:54
241,991,470
0
0
null
null
null
null
UTF-8
C++
false
false
19,182
/*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Version: 7 \\/ M anipulation | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volScalarField; location "4.3"; object p; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 2 -2 0 0 0 0]; internalField nonuniform List<scalar> 2000 ( 0.361728 0.363291 0.36694 0.371993 0.37755 0.382859 0.387478 0.391258 0.394254 0.396634 0.361813 0.363174 0.366743 0.371559 0.376806 0.381777 0.386056 0.389505 0.392169 0.39419 0.361657 0.362928 0.366382 0.370989 0.375916 0.380544 0.384497 0.387646 0.39002 0.391716 0.361192 0.362458 0.365808 0.37017 0.374727 0.378978 0.382598 0.385471 0.387614 0.389065 0.360353 0.36171 0.364943 0.368984 0.373094 0.376902 0.380154 0.382761 0.384733 0.38607 0.359093 0.360648 0.363742 0.367341 0.370918 0.374195 0.377023 0.379356 0.381193 0.382575 0.357395 0.359262 0.362165 0.365253 0.36819 0.370847 0.37319 0.375229 0.376934 0.378474 0.355266 0.357586 0.360251 0.362773 0.364992 0.36696 0.368765 0.370486 0.372049 0.373768 0.352748 0.35565 0.358071 0.359995 0.361456 0.362688 0.363883 0.365191 0.366568 0.368498 0.349915 0.353476 0.35568 0.357008 0.357709 0.358174 0.358638 0.359225 0.359933 0.361668 0.400707 0.405706 0.408692 0.412947 0.414172 0.41833 0.418299 0.421442 0.420992 0.422447 0.397666 0.402718 0.405531 0.409775 0.411026 0.41522 0.415315 0.418467 0.418159 0.419615 0.394533 0.39974 0.402349 0.406566 0.407808 0.412064 0.41226 0.415444 0.415259 0.416716 0.391223 0.396732 0.399139 0.403303 0.404527 0.408862 0.409137 0.412368 0.412288 0.413747 0.387624 0.393656 0.395887 0.399972 0.4012 0.405611 0.40595 0.409238 0.409244 0.410706 0.383618 0.390463 0.392576 0.396565 0.397845 0.402304 0.402708 0.40605 0.406129 0.407591 0.379118 0.38708 0.38918 0.393082 0.394472 0.398933 0.399429 0.402801 0.402945 0.404388 0.37414 0.383424 0.385665 0.389508 0.391067 0.395467 0.396123 0.399475 0.399699 0.401126 0.368878 0.379422 0.382041 0.385882 0.387677 0.391934 0.392828 0.396064 0.396388 0.397684 0.363992 0.374981 0.378205 0.382106 0.384206 0.388259 0.389511 0.392536 0.393045 0.394353 0.355197 0.36636 0.37027 0.373837 0.376536 0.379597 0.381651 0.383758 0.384593 0.384105 0.329251 0.342038 0.348127 0.353999 0.358617 0.362708 0.365372 0.367725 0.369876 0.372544 0.301111 0.315851 0.323697 0.331271 0.337837 0.343585 0.347748 0.350283 0.350011 0.348414 0.270215 0.286623 0.295425 0.304105 0.311397 0.318228 0.322652 0.325866 0.330984 0.335518 0.236592 0.254172 0.264541 0.274628 0.284065 0.292788 0.299292 0.302614 0.297888 0.299603 0.199169 0.218349 0.229211 0.239311 0.248577 0.256654 0.263333 0.26691 0.273105 0.284284 0.158503 0.177221 0.189437 0.20176 0.212473 0.220603 0.224355 0.225526 0.230044 0.237934 0.115099 0.133789 0.144618 0.154582 0.163977 0.172093 0.17872 0.183773 0.185688 0.189029 0.0643185 0.0817931 0.0943355 0.10353 0.109155 0.113431 0.118186 0.12274 0.126638 0.130721 0.013729 0.0261769 0.033913 0.0395322 0.042571 0.0457077 0.0470745 0.0487063 0.0508454 0.0534724 0.34064 0.312324 0.283041 0.251162 0.217324 0.178788 0.140239 0.0966658 0.0510342 0.00383404 0.333634 0.304312 0.274695 0.242725 0.208926 0.170267 0.132503 0.0886645 0.0454414 -0.000195562 0.325999 0.297194 0.267213 0.235175 0.20139 0.162731 0.125449 0.0815006 0.0405764 -0.00384881 0.318299 0.290398 0.260037 0.227847 0.194073 0.155529 0.118514 0.0746316 0.0359398 -0.0074908 0.310872 0.284024 0.253397 0.220899 0.187082 0.148704 0.111706 0.0682081 0.031476 -0.011528 0.304163 0.278029 0.247249 0.214287 0.180356 0.142165 0.105036 0.0622529 0.0271324 -0.0161924 0.298523 0.272527 0.241717 0.208187 0.174014 0.135988 0.098641 0.0568726 0.0231286 -0.0203566 0.294233 0.267699 0.236901 0.202757 0.168159 0.130214 0.0926316 0.0520512 0.0198042 -0.0212601 0.291425 0.263815 0.232934 0.198179 0.162947 0.124941 0.087118 0.0477817 0.017445 -0.0194205 0.290034 0.261046 0.229835 0.19447 0.158444 0.120206 0.0821296 0.0439827 0.0158048 -0.0168479 0.289837 0.259332 0.227483 0.191497 0.154608 0.115974 0.0776364 0.0405044 0.0138136 -0.0133862 0.290752 0.258608 0.225876 0.189224 0.151424 0.112222 0.0736019 0.0372925 0.0118476 -0.0100997 0.292922 0.258933 0.225181 0.187736 0.148898 0.108912 0.0699811 0.0343538 0.0101183 -0.00718268 0.296491 0.260341 0.225435 0.186861 0.146784 0.105832 0.0666581 0.0317715 0.00867783 -0.00467862 0.301301 0.262612 0.226203 0.186012 0.144637 0.102721 0.0635313 0.0294911 0.00761075 -0.00259197 0.306614 0.265588 0.22662 0.184977 0.142558 0.0998198 0.0607854 0.0275819 0.00689497 -0.000905676 0.312164 0.269291 0.228287 0.185604 0.142325 0.0985339 0.0591922 0.0262656 0.00648899 0.000413549 0.319625 0.27739 0.235199 0.191538 0.146785 0.100923 0.0598279 0.0258638 0.00633771 0.00145774 0.330962 0.291831 0.248139 0.202543 0.155288 0.106418 0.0623392 0.0263257 0.00638893 0.00216985 0.337999 0.29947 0.252883 0.204847 0.155949 0.10625 0.0618751 0.0262248 0.00673976 0.00267346 0.337117 0.291765 0.239982 0.188183 0.138038 0.0908379 0.0516043 0.0235977 0.00947154 0.00350857 0.33464 0.281995 0.224194 0.168448 0.117834 0.0742849 0.0397152 0.0175722 0.0101777 0.00358521 0.330704 0.274755 0.210468 0.152199 0.103576 0.0667579 0.0423818 0.0283914 0.0172889 0.00455388 0.328592 0.266397 0.198412 0.140393 0.0955587 0.0638071 0.0436673 0.0328356 0.0214122 0.00644337 0.331517 0.261433 0.190975 0.136022 0.0970004 0.0706151 0.05329 0.0406079 0.0248562 0.0084163 0.33511 0.258158 0.189351 0.14058 0.106504 0.0818234 0.0634826 0.0461364 0.027248 0.00939098 0.342708 0.265326 0.201048 0.156134 0.121495 0.0937454 0.0709098 0.0499563 0.0288951 0.00897224 0.365784 0.287892 0.223318 0.175157 0.133768 0.102196 0.0774168 0.0541052 0.0304676 0.00839259 0.395662 0.312861 0.245779 0.189891 0.143068 0.110909 0.0837583 0.0572484 0.0323259 0.0100731 0.412399 0.32994 0.262234 0.201426 0.149538 0.116296 0.0887604 0.0601239 0.0338594 0.0103768 0.367442 0.370169 0.366519 0.367935 0.373439 0.383731 0.394033 0.414409 0.452881 0.474264 0.379622 0.382518 0.381216 0.384763 0.391436 0.40381 0.415959 0.435997 0.478012 0.50074 0.391264 0.394148 0.39447 0.400435 0.408803 0.42288 0.437614 0.458512 0.502015 0.524002 0.403149 0.40593 0.407253 0.414775 0.424634 0.440082 0.456976 0.478884 0.522394 0.544554 0.413023 0.417356 0.419641 0.428323 0.439237 0.455723 0.474094 0.496502 0.540061 0.563638 0.423892 0.428192 0.43143 0.441151 0.452849 0.470095 0.489525 0.511632 0.555435 0.580392 0.433988 0.43824 0.44238 0.452993 0.46534 0.483133 0.503462 0.524662 0.568142 0.593061 0.443139 0.447411 0.452361 0.463659 0.476511 0.494622 0.515709 0.535727 0.577803 0.601053 0.4513 0.455693 0.461351 0.473118 0.486312 0.504461 0.526047 0.544764 0.584393 0.605022 0.458461 0.463083 0.469359 0.481418 0.494816 0.51272 0.534477 0.551798 0.588282 0.605994 0.464632 0.469594 0.476402 0.488621 0.502136 0.519557 0.541192 0.557055 0.590102 0.604941 0.469851 0.475223 0.482502 0.494761 0.508347 0.525125 0.546433 0.560863 0.590509 0.602684 0.474182 0.479974 0.487692 0.499874 0.513511 0.52956 0.550419 0.563524 0.590017 0.59983 0.477687 0.483897 0.492026 0.504051 0.51772 0.533008 0.553343 0.565274 0.588967 0.596766 0.480431 0.487062 0.495567 0.507395 0.521074 0.535619 0.555379 0.566301 0.587575 0.593716 0.48249 0.489547 0.498384 0.51001 0.523667 0.537527 0.556678 0.566758 0.585972 0.590796 0.483937 0.491434 0.500553 0.511998 0.525594 0.538854 0.557373 0.566772 0.584229 0.588049 0.484837 0.492798 0.502154 0.513453 0.526944 0.539704 0.557573 0.566444 0.582382 0.585481 0.485238 0.493702 0.503263 0.514473 0.527818 0.540192 0.557389 0.565866 0.580454 0.583077 0.485077 0.494138 0.503878 0.515026 0.528196 0.540275 0.556814 0.565056 0.578437 0.580811 0.486006 0.496051 0.506003 0.517396 0.529517 0.541026 0.555498 0.56305 0.5736 0.575864 0.493393 0.502331 0.511188 0.521435 0.531958 0.541187 0.553586 0.558617 0.567354 0.56861 0.499212 0.507582 0.515702 0.524659 0.533726 0.540694 0.551325 0.554139 0.561618 0.56207 0.502654 0.510372 0.517989 0.526053 0.534243 0.53968 0.548893 0.550312 0.556481 0.556451 0.505538 0.512351 0.519189 0.526309 0.533685 0.537929 0.546065 0.546684 0.55172 0.551399 0.507318 0.513594 0.519821 0.526138 0.532817 0.536086 0.54323 0.543268 0.547273 0.546638 0.508277 0.514089 0.519851 0.525584 0.531749 0.534335 0.540617 0.540267 0.543269 0.542533 0.508538 0.514078 0.519462 0.524772 0.530532 0.532684 0.538228 0.537652 0.539791 0.537098 0.508215 0.513669 0.518701 0.523768 0.529111 0.530426 0.535802 0.534548 0.53371 0.535179 0.508737 0.513898 0.518981 0.524131 0.528427 0.531797 0.535849 0.535414 0.538834 0.517735 0.480079 0.488062 0.49409 0.497993 0.501649 0.503617 0.504979 0.505467 0.5057 0.505669 0.478602 0.486915 0.492663 0.496583 0.500319 0.502242 0.503685 0.504191 0.504674 0.504325 0.477874 0.486508 0.491822 0.495625 0.499213 0.501002 0.50244 0.502895 0.50354 0.502871 0.476747 0.485551 0.490711 0.494529 0.498029 0.499747 0.501191 0.501597 0.502328 0.501411 0.47545 0.484193 0.489391 0.493298 0.496777 0.498477 0.499942 0.500312 0.501093 0.500018 0.474161 0.482702 0.488056 0.492042 0.495519 0.497223 0.498705 0.499047 0.499849 0.4987 0.472855 0.481134 0.48675 0.490795 0.494275 0.495998 0.497486 0.49781 0.498597 0.497449 0.471514 0.479522 0.485456 0.489553 0.493045 0.494804 0.49629 0.496614 0.497316 0.496257 0.470152 0.477928 0.484172 0.488319 0.491838 0.493648 0.495121 0.49546 0.496041 0.495069 0.468768 0.476374 0.482909 0.487102 0.490666 0.492535 0.49399 0.494354 0.494789 0.493887 0.467344 0.474841 0.481668 0.485908 0.489536 0.491473 0.492914 0.493292 0.493563 0.492735 0.465714 0.473383 0.480431 0.48474 0.488448 0.490466 0.491897 0.49228 0.492372 0.491632 0.463901 0.47191 0.479115 0.48365 0.487375 0.489512 0.490943 0.491329 0.491226 0.490595 0.461885 0.470366 0.477777 0.482569 0.486342 0.488617 0.490054 0.490451 0.490136 0.489642 0.459672 0.468752 0.476406 0.4815 0.485352 0.48778 0.489234 0.489652 0.48911 0.488795 0.457282 0.46708 0.474989 0.48044 0.484398 0.486998 0.488488 0.488937 0.488159 0.488065 0.45474 0.465363 0.473523 0.479381 0.483475 0.486268 0.487818 0.488311 0.487292 0.487472 0.452034 0.463569 0.472003 0.478309 0.482581 0.485584 0.487222 0.487774 0.48652 0.48702 0.449298 0.461741 0.470454 0.477217 0.481709 0.484935 0.486696 0.487323 0.485844 0.486742 0.446033 0.459609 0.468757 0.476045 0.480838 0.484312 0.486243 0.486963 0.485284 0.486583 0.440174 0.455243 0.465528 0.473496 0.479069 0.483038 0.485432 0.486499 0.485369 0.486738 0.443864 0.455215 0.464799 0.472724 0.478256 0.482587 0.485273 0.486682 0.486769 0.487362 0.446268 0.455409 0.464903 0.472601 0.478062 0.482733 0.485682 0.487431 0.488138 0.488026 0.449007 0.456882 0.466063 0.473707 0.479276 0.484328 0.487536 0.489371 0.489933 0.489843 0.449014 0.456789 0.465866 0.473502 0.479213 0.484619 0.488292 0.490707 0.491802 0.491693 0.452595 0.460021 0.468709 0.476477 0.482613 0.488532 0.492644 0.494969 0.495278 0.495408 0.451599 0.459463 0.467999 0.475861 0.48218 0.488397 0.493193 0.496688 0.49771 0.501358 0.454645 0.462585 0.471061 0.479292 0.486732 0.494379 0.500437 0.504438 0.506171 0.516124 0.453948 0.462187 0.470326 0.478534 0.485844 0.49367 0.501487 0.507458 0.509631 0.54296 0.455312 0.463609 0.471916 0.480567 0.489211 0.498944 0.50994 0.521749 0.54032 0.602064 0.430689 0.43518 0.436873 0.441271 0.440694 0.445892 0.444219 0.448299 0.44711 0.448805 0.427415 0.431888 0.433596 0.438218 0.437674 0.443076 0.441335 0.445624 0.444279 0.446019 0.424945 0.429433 0.431549 0.43594 0.435615 0.440671 0.439024 0.443153 0.441734 0.443406 0.422151 0.426837 0.429357 0.433647 0.433571 0.438312 0.436855 0.440718 0.439327 0.440892 0.419127 0.423976 0.426751 0.431038 0.431206 0.435766 0.434533 0.438184 0.436879 0.438366 0.416047 0.420995 0.42393 0.428207 0.428614 0.433045 0.432038 0.435539 0.434344 0.435796 0.412945 0.417957 0.42101 0.425267 0.425908 0.430225 0.429439 0.432821 0.431753 0.433195 0.40984 0.414884 0.418015 0.422261 0.423116 0.427342 0.426771 0.430053 0.429129 0.430573 0.40676 0.411802 0.41495 0.419197 0.420229 0.424398 0.42403 0.427237 0.426469 0.427917 0.403721 0.408735 0.411835 0.416089 0.417243 0.421392 0.421206 0.424366 0.42376 0.425212 0.346775 0.351094 0.353095 0.353857 0.353837 0.353542 0.353199 0.352789 0.351916 0.349715 0.343322 0.348484 0.350293 0.35054 0.349882 0.348887 0.347753 0.346418 0.344464 0.341788 0.339573 0.345602 0.347226 0.347047 0.345887 0.344311 0.342497 0.34042 0.337751 0.334741 0.335543 0.342413 0.343873 0.343405 0.341919 0.339917 0.33756 0.334883 0.331625 0.328257 0.331277 0.338918 0.340278 0.339705 0.338089 0.335817 0.333053 0.329884 0.326125 0.322353 0.326883 0.335179 0.336572 0.336109 0.334544 0.332144 0.329091 0.325523 0.321341 0.317117 0.322545 0.331329 0.332971 0.332829 0.331461 0.329043 0.325804 0.321917 0.317392 0.3127 0.318507 0.327585 0.329746 0.330102 0.329026 0.326669 0.323318 0.319191 0.314393 0.309268 0.31504 0.324237 0.327183 0.328158 0.327419 0.325164 0.32175 0.317443 0.31243 0.306953 0.312369 0.321603 0.325544 0.327199 0.326796 0.324649 0.321192 0.316742 0.311554 0.30582 0.310634 0.31998 0.325056 0.327388 0.327281 0.325218 0.321715 0.317142 0.311804 0.305873 0.310291 0.319792 0.325957 0.328863 0.328968 0.32694 0.323373 0.318685 0.313219 0.307121 0.311516 0.32124 0.328353 0.331687 0.3319 0.329845 0.326184 0.321382 0.315824 0.309629 0.314505 0.324481 0.332321 0.33589 0.336092 0.333934 0.330133 0.325203 0.319602 0.313421 0.319425 0.329586 0.337875 0.341458 0.341519 0.33918 0.335186 0.330133 0.324508 0.318314 0.326363 0.336535 0.344974 0.348335 0.348111 0.345513 0.341317 0.336125 0.330408 0.324017 0.335299 0.345247 0.353507 0.356413 0.355791 0.352869 0.348437 0.34306 0.337114 0.330332 0.346122 0.355598 0.363268 0.365553 0.364442 0.361162 0.356464 0.350784 0.344353 0.337107 0.358675 0.367253 0.374034 0.375567 0.373934 0.370321 0.365372 0.359264 0.352134 0.344755 0.372647 0.379831 0.385546 0.386233 0.384085 0.380234 0.375179 0.368829 0.361382 0.3542 0.38756 0.393068 0.397515 0.39729 0.394637 0.390618 0.385635 0.379464 0.372452 0.367824 0.403042 0.406616 0.409634 0.408465 0.40531 0.401102 0.396127 0.390221 0.38412 0.380837 0.418527 0.420061 0.421583 0.419487 0.415873 0.411524 0.406644 0.401138 0.395807 0.393025 0.4335 0.433008 0.43305 0.430081 0.426059 0.421614 0.416896 0.41185 0.407181 0.404741 0.447494 0.445088 0.443749 0.440005 0.435649 0.43117 0.426663 0.422059 0.417903 0.415604 0.460101 0.455988 0.453434 0.449048 0.444457 0.440017 0.435778 0.431646 0.428001 0.425959 0.470993 0.465456 0.461909 0.457043 0.452327 0.448005 0.444086 0.44046 0.437361 0.435608 0.479932 0.473315 0.469032 0.463868 0.459149 0.455025 0.451473 0.448379 0.44585 0.444408 0.486775 0.479457 0.474723 0.469452 0.464854 0.461006 0.457864 0.455313 0.453357 0.452241 0.491473 0.483845 0.478951 0.473771 0.469417 0.46592 0.463221 0.461213 0.45982 0.459042 0.494066 0.486507 0.481742 0.476841 0.472852 0.469777 0.46755 0.466075 0.465225 0.464804 0.494698 0.487527 0.483157 0.478719 0.475207 0.472618 0.470885 0.46993 0.469599 0.469552 0.493515 0.487027 0.483299 0.479491 0.476557 0.474511 0.473293 0.472841 0.472997 0.473336 0.490708 0.485155 0.482291 0.479263 0.476999 0.475544 0.474855 0.474887 0.475496 0.476221 0.486494 0.482079 0.480267 0.478151 0.476635 0.475812 0.475664 0.476164 0.477187 0.478287 0.481105 0.477974 0.477366 0.476272 0.47557 0.475411 0.475813 0.476766 0.47817 0.479625 0.47477 0.473016 0.473725 0.473742 0.473906 0.474436 0.475393 0.476788 0.478541 0.480324 0.467715 0.467375 0.469476 0.470667 0.471738 0.472972 0.474485 0.476314 0.47839 0.480471 0.460152 0.461213 0.464742 0.467146 0.469148 0.471093 0.473157 0.475414 0.477796 0.480141 0.452274 0.454681 0.459634 0.463267 0.466211 0.468867 0.471468 0.474157 0.47687 0.479377 0.444246 0.447913 0.454254 0.459106 0.462992 0.46635 0.46946 0.472558 0.475679 0.478059 0.436162 0.441021 0.448694 0.454733 0.459544 0.463592 0.467191 0.470625 0.474042 0.476683 0.428211 0.434135 0.443042 0.450211 0.45592 0.460642 0.464727 0.468487 0.472139 0.475077 0.42053 0.427353 0.437376 0.445601 0.452172 0.457546 0.462115 0.466211 0.470087 0.473254 0.413253 0.420735 0.431765 0.440955 0.448344 0.454341 0.459376 0.463804 0.467899 0.471282 0.40643 0.414402 0.426249 0.436319 0.444476 0.451061 0.456534 0.461273 0.465567 0.469168 0.400102 0.408494 0.420815 0.431734 0.440604 0.447738 0.453623 0.458652 0.463125 0.466931 0.394299 0.402935 0.415626 0.42724 0.436763 0.44441 0.450687 0.455998 0.460642 0.464638 0.38904 0.39775 0.41069 0.422871 0.432981 0.441109 0.447766 0.453365 0.458188 0.462365 0.384357 0.392975 0.406007 0.418637 0.429257 0.437856 0.44488 0.450773 0.455796 0.460134 0.380336 0.388673 0.401611 0.414549 0.425603 0.434627 0.442017 0.4482 0.453435 0.457891 0.376704 0.384757 0.397497 0.410618 0.422024 0.431423 0.43915 0.445602 0.451026 0.455645 0.373491 0.381237 0.393672 0.406847 0.418512 0.428226 0.436248 0.442938 0.448525 0.453266 0.370708 0.378111 0.390133 0.403233 0.415053 0.425011 0.433277 0.440169 0.445892 0.450724 0.368327 0.375362 0.386879 0.399777 0.411644 0.421765 0.430217 0.43727 0.443109 0.448023 0.366312 0.372968 0.383906 0.396487 0.408292 0.418488 0.427061 0.434233 0.440167 0.445163 0.364633 0.370909 0.381212 0.393372 0.405009 0.415188 0.423809 0.431051 0.437057 0.442136 0.363262 0.36916 0.378791 0.390443 0.401809 0.411878 0.420469 0.42772 0.433753 0.438897 0.362172 0.367698 0.376638 0.387712 0.398715 0.408578 0.417051 0.424235 0.43022 0.435363 0.361338 0.366499 0.374747 0.385191 0.395753 0.405324 0.413589 0.420626 0.42648 0.431314 0.360733 0.365537 0.373108 0.382894 0.392958 0.402165 0.41012 0.416849 0.422431 0.426521 0.360301 0.364773 0.371706 0.380832 0.390367 0.399173 0.406789 0.413181 0.418484 0.422596 0.360051 0.364196 0.370533 0.379017 0.388019 0.396422 0.403736 0.409888 0.415046 0.41926 0.35997 0.363783 0.369575 0.37745 0.385932 0.393945 0.400979 0.406934 0.411957 0.416139 0.360033 0.363509 0.368812 0.376124 0.384106 0.391728 0.398475 0.404212 0.40906 0.413125 0.360213 0.363347 0.368223 0.375023 0.382525 0.389752 0.396186 0.40167 0.406299 0.410195 0.36048 0.363272 0.367784 0.374127 0.381175 0.388002 0.394095 0.399287 0.403651 0.407324 0.3608 0.363258 0.367468 0.373412 0.380037 0.386464 0.392193 0.397055 0.40111 0.404508 0.361136 0.363275 0.367245 0.372848 0.379085 0.38512 0.390473 0.394977 0.398689 0.401772 0.361453 0.363293 0.367079 0.372391 0.378275 0.383938 0.388917 0.393053 0.396407 0.399146 ) ; boundaryField { inlet { type zeroGradient; } outlet { type fixedValue; value uniform 0; } cylinder { type zeroGradient; } top { type symmetryPlane; } bottom { type symmetryPlane; } defaultFaces { type empty; } } // ************************************************************************* //
[ "henry.rossiter@utexas.edu" ]
henry.rossiter@utexas.edu
ee2872e47138c14421b3209ed4a3e33b771b6927
21d1ee600ca19d4afa598386730967e2fa1bbf99
/step_control_v1_4.08/step_control_v1_4.08.ino
3e1ebfc822cca3b4f2cd3adbdc6eebdcf42c98aa
[]
no_license
srebosura/Arduino_Step_Motor_2M542
0e6047379e50cfb09b4110c505245787f22410fd
e4036890072edb456868e022abff3d498a3c0350
refs/heads/master
2020-06-13T20:40:22.865580
2017-04-15T09:49:42
2017-04-15T09:49:42
75,555,590
1
0
null
null
null
null
UTF-8
C++
false
false
43,598
ino
void(* resetFunc) (void) = 0; //software reset vector // include the library code: #include <LiquidCrystal.h> #include <EEPROM.h> /*-----( Declare Constants, Pin Numbers )-----*/ // set pin numbers: LiquidCrystal lcd(42, 44, 52, 50, 48, 46); const int start_buttonPin = 2; // the number of the start pushbutton pin const int stop_buttonPin = 3; // the number of the stop pushbutton pin const int select_buttonPin = 4; const int frame_sensor1 = 5; //frame detect sensor IR -frame sensor disable const int brusher_status = 6; //brusher status/error flag const int vacuum_status = 7; //vacuum pressure status/error flag const int cover_safety_status = 8; //cover safety status/error flag const int loading_enable = 9; const int loading_enable2 = 22; const int motor1_home_sensor = 19; // the number of the motor1 home sensor pin const int motor2_home_sensor = 18; // the number of the motor2 home sensor pin const int motor1_extreme_sensor = 20; // the number of the motor1 max position sensor pin const int motor2_extreme_sensor = 21; // the number of the motor2 max position sensor pin const int run_ledPin = 13; // the number of the run/monitor LED pin const int service_light = 11; //service mode and error light int piezoPin = 12; int lastButtonPushed = 0; int lastStartButtonState = HIGH; int lastStopButtonState = HIGH; int lastSelectButtonState = HIGH; long lastStartDebounceTime = 0; long lastStopDebounceTime = 0; long lastSelectDebounceTime = 0; long debounceDelay = 100; // the debounce time long holddebounceDelay = 2000; int menu_display = 0; int service_menu_display = 0; int ret; int safe; String error_msg; int ret_alarm = 0; int stop_status = 0; //user save values float EEPROM_read_pusher = 0.0f; // variable for pusher motor float EEPROM_read_Frame = 0.0f; // variable for Frame motor float EEPROM_read_pushdelay = 0.0f; // variable for pusher delay float EEPROM_pusher_FW_spd =0.00; // variable for pusher speed forward float EEPROM_pusher_BKD_spd = 0.00; // variable for pusher speed backward float EEPROM_frame_thick = 0.00; // variable for frame thick float push_delay = 0.0f; float pusher_steps = 0.0f; float Frame_steps = 0.0f; float pusher_FW_spd; float pusher_BKD_spd; float frame_thick; int EE_addr1 = 0; int EE_addr2 = 4; int EE_addr3 = 8; int EE_addr4 = 16; int EE_addr5 = 32; int EE_addr6 = 64; /* microstep driver 2M542 Pul+ goes to +5V Pul- goes to Arduino Pin 33 & 29 Dir+ goes to +5V Dir- goes to to Arduino Pin 31 & 27 Enable+ to nothing Enable- to nothing */ //motor1 pins (pusher) int m1_step = 33; int m1_dir = 31; //motor2 pins (Frame/rack) int m2_step = 29; int m2_dir = 27; /*-----( Declare Variables )-----*/ // variables will change: int read_start; //start button flag int read_stop; // stop button flag int run_status = 0; //run status flag int m1_home_status; //motor1 home status as triggered by interrupt service int m2_home_status; //motor2 home status as triggered by interrupt service int m1_extreme_pos = HIGH; int m2_extreme_pos = HIGH; float motor_speed_m1; //variable for setting motor speed, 1=1ms=1000hz int motor_speed_m2; int step_per_rev_m1 = 400; //step_per_rev is the driver's micro step settings int step_per_rev_m2 = 400; float magz_count; int load_level; //void(* resetFunc) (void) = 0; //software reset vector void setup() /*----( SETUP: RUNS ONCE )----*/ { // initialize the LED pin as an output: pinMode(run_ledPin, OUTPUT); pinMode(service_light, OUTPUT); pinMode(piezoPin, OUTPUT); pinMode(loading_enable,OUTPUT); //loading IR VCC pinMode(loading_enable2,OUTPUT); // initialize the pushbutton pin as an input: pinMode(start_buttonPin, INPUT_PULLUP); pinMode(stop_buttonPin, INPUT_PULLUP); pinMode(select_buttonPin, INPUT_PULLUP); pinMode(motor1_home_sensor, INPUT_PULLUP); pinMode(motor2_home_sensor, INPUT_PULLUP); pinMode(motor1_extreme_sensor, INPUT_PULLUP); pinMode(motor2_extreme_sensor, INPUT_PULLUP); pinMode(brusher_status, INPUT_PULLUP); pinMode(vacuum_status, INPUT_PULLUP); pinMode(cover_safety_status, INPUT_PULLUP); pinMode(frame_sensor1, INPUT_PULLUP); //active high //default settings //hold enter during power cycle if (digitalRead(start_buttonPin)==0) { delay(1000); push_delay = 0; pusher_steps = 163; Frame_steps = 150; pusher_FW_spd = 2; pusher_BKD_spd = 2.5; frame_thick = 0.2; EEPROM.put(EE_addr1,push_delay); EEPROM.put(EE_addr2,pusher_steps); EEPROM.put(EE_addr3,Frame_steps); EEPROM.put(EE_addr4,pusher_FW_spd); EEPROM.put(EE_addr5,pusher_BKD_spd); EEPROM.put(EE_addr6,frame_thick); lcd.begin(16, 2); lcd.setCursor(0,0); lcd.clear(); lcd.print("Default Loaded.."); delay(2000); } //read stored settings EEPROM.get(EE_addr1,EEPROM_read_pushdelay); push_delay = EEPROM_read_pushdelay; EEPROM.get(EE_addr2,EEPROM_read_pusher); pusher_steps = EEPROM_read_pusher; EEPROM.get(EE_addr3,EEPROM_read_Frame); Frame_steps = EEPROM_read_Frame; EEPROM.get(EE_addr4,EEPROM_pusher_FW_spd); pusher_FW_spd = EEPROM_pusher_FW_spd; EEPROM.get(EE_addr5,EEPROM_pusher_BKD_spd); pusher_BKD_spd = EEPROM_pusher_BKD_spd; EEPROM.get(EE_addr6,EEPROM_frame_thick); frame_thick = EEPROM_frame_thick; //set interrupt to activate anytime the stop button attachInterrupt(digitalPinToInterrupt(stop_buttonPin),read_sensors, FALLING); attachInterrupt(digitalPinToInterrupt(motor1_home_sensor),read_m1_home_sensor , FALLING); attachInterrupt(digitalPinToInterrupt(motor2_home_sensor),read_m2_home_sensor , FALLING); attachInterrupt(digitalPinToInterrupt(motor1_extreme_sensor),read_m1_extreme_sensor , FALLING); attachInterrupt(digitalPinToInterrupt(motor2_extreme_sensor),read_m2_extreme_sensor , FALLING); // set initial LED state digitalWrite(run_ledPin, LOW); digitalWrite(service_light, LOW); digitalWrite(loading_enable, HIGH); digitalWrite(loading_enable2,HIGH); // set stepper motor_1 output pins pinMode(m1_step, OUTPUT); pinMode(m1_dir, OUTPUT); //initial state digitalWrite(m1_step, LOW); digitalWrite(m1_dir, LOW); // set stepper motor_2 output pins pinMode(m2_step, OUTPUT); pinMode(m2_dir, OUTPUT); digitalWrite(m2_step, LOW); digitalWrite(m2_dir, LOW); //serial port for debugging and monitor Serial.begin(9600); // set up the LCD's number of columns and rows: lcd.begin(16, 2); lcd.setCursor(1,0); scroll("Auto_Feed_v1.1",15,1); tone( piezoPin, 2400, 250); noTone(piezoPin); delay(200); tone( piezoPin, 2300, 250); Serial.println("System Started....."); Serial.println("Standby Mode....."); }/*--(end setup )---*/ void loop() /*----( LOOP: RUNS CONSTANTLY )----*/ { read_buttons(); main_menu(); if (run_status == 2) { lastButtonPushed = 20; } if (run_status == 3) { lastButtonPushed = 20; } }/* --(end main loop )-- */ void read_buttons() { // read the state of the switch into a local variable: int reading; int start_buttonState=HIGH; int stop_buttonState=HIGH; int select_buttonState=HIGH; //start button reading = digitalRead(start_buttonPin); if (reading != lastStartButtonState) { lastStartDebounceTime = millis(); } if ((millis() - lastStartDebounceTime) > debounceDelay) { start_buttonState = reading; lastStartDebounceTime=millis();; } lastStartButtonState = reading; //select button reading = digitalRead(select_buttonPin); if (reading != lastSelectButtonState) { lastSelectDebounceTime = millis(); } if ((millis() - lastSelectDebounceTime) > debounceDelay) { select_buttonState = reading; lastSelectDebounceTime=millis();; } lastSelectButtonState = reading; //main menu actions if(start_buttonState==LOW && menu_display==0){ tone( piezoPin, 2000, 250); lastButtonPushed=1; }else if(select_buttonState==LOW && menu_display==0){ tone( piezoPin, 2100, 250); lastButtonPushed=3; }else if(select_buttonState==LOW && menu_display==3){ tone( piezoPin, 2100, 250); lastButtonPushed=5; }else if(select_buttonState==LOW && menu_display==5){ tone( piezoPin, 2100, 250); lastButtonPushed=8; }else if(select_buttonState==LOW && menu_display==8){ tone( piezoPin, 2100, 250); lastButtonPushed=10; }else if(select_buttonState==LOW && menu_display==10){ tone( piezoPin, 2100, 250); lastButtonPushed=0; }else if(start_buttonState==LOW && menu_display==3){ tone( piezoPin, 2100, 250); lastButtonPushed=4; }else if(start_buttonState==LOW && menu_display==5){ tone( piezoPin, 2100, 250); lastButtonPushed=6; }else if(start_buttonState==LOW && menu_display==8){ tone( piezoPin, 2100, 250); lastButtonPushed=9; }else if(start_buttonState==LOW && menu_display==10){ tone( piezoPin, 2100, 250); lastButtonPushed=11; }else if(start_buttonState==LOW && menu_display==12){ tone( piezoPin, 2100, 250); lastButtonPushed=1; }else if(select_buttonState==LOW && menu_display==11){ tone( piezoPin, 2100, 250); lastButtonPushed=0; //service menu actions }else if(start_buttonState==LOW && service_menu_display==0){ tone( piezoPin, 2100, 250); lastButtonPushed=1; }else if(select_buttonState==LOW && service_menu_display==0){ tone( piezoPin, 2100, 250); lastButtonPushed=2; }else if(select_buttonState==LOW && service_menu_display==2){ tone( piezoPin, 2100, 250); lastButtonPushed=4; }else if(start_buttonState==LOW && service_menu_display==2){ tone( piezoPin, 2100, 250); lastButtonPushed=3; }else if(start_buttonState==LOW && service_menu_display==3){ tone( piezoPin, 2200, 250); lastButtonPushed=2; }else if(start_buttonState==LOW && service_menu_display==4){ tone( piezoPin, 2100, 250); lastButtonPushed=5; }else if(start_buttonState==LOW && service_menu_display==5){ tone( piezoPin, 2200, 250); lastButtonPushed=4; }else if(start_buttonState==LOW && service_menu_display==6){ tone( piezoPin, 2100, 250); lastButtonPushed=7; }else if(start_buttonState==LOW && service_menu_display==7){ tone( piezoPin, 2300, 250); lastButtonPushed=6; }else if(select_buttonState==LOW && service_menu_display==4){ tone( piezoPin, 2100, 250); lastButtonPushed=6; }else if(select_buttonState==LOW && service_menu_display==6){ tone( piezoPin, 2100, 250); lastButtonPushed=8; }else if(start_buttonState==LOW && service_menu_display==8){ tone( piezoPin, 2100, 250); lastButtonPushed=9; }else if(select_buttonState==LOW && service_menu_display==8){ tone( piezoPin, 2100, 250); lastButtonPushed=10; }else if(start_buttonState==LOW && service_menu_display==10){ tone( piezoPin, 2100, 250); lastButtonPushed=11; }else if(select_buttonState==LOW && service_menu_display==10){ tone( piezoPin, 2100, 250); lastButtonPushed=12; }else if(start_buttonState==LOW && service_menu_display==12){ tone( piezoPin, 2100, 250); lastButtonPushed=13; }else if(select_buttonState==LOW && service_menu_display==12){ tone( piezoPin, 2100, 250); lastButtonPushed=14; }else if(start_buttonState==LOW && service_menu_display==14){ tone( piezoPin, 2100, 250); lastButtonPushed=15; }else if(select_buttonState==LOW && service_menu_display==14){ tone( piezoPin, 2100, 250); lastButtonPushed=16; }else if(select_buttonState==LOW && service_menu_display==16){ tone( piezoPin, 2100, 250); lastButtonPushed=18; }else if(start_buttonState==LOW && service_menu_display==16){ tone( piezoPin, 2100, 250); lastButtonPushed=17; }else if(start_buttonState==LOW && service_menu_display==17){ tone( piezoPin, 2100, 250); lastButtonPushed=16; }else if(select_buttonState==LOW && service_menu_display==18){ tone( piezoPin, 2100, 250); lastButtonPushed=20; }else if(start_buttonState==LOW && service_menu_display==18){ tone( piezoPin, 2100, 250); lastButtonPushed=19; }else if(start_buttonState==LOW && service_menu_display==19){ tone( piezoPin, 2100, 250); lastButtonPushed=18; }else if(select_buttonState==LOW && service_menu_display==20){ tone( piezoPin, 2100, 250); lastButtonPushed=22; }else if(start_buttonState==LOW && service_menu_display==20){ tone( piezoPin, 2100, 250); lastButtonPushed=21; }else if(start_buttonState==LOW && service_menu_display==21){ tone( piezoPin, 2100, 250); lastButtonPushed=20; }else if(select_buttonState==LOW && service_menu_display==22){ tone( piezoPin, 2100, 250); lastButtonPushed=0; }else if(start_buttonState==LOW && service_menu_display==22){ tone( piezoPin, 2100, 250); lastButtonPushed=23; } } void main_menu() { switch (lastButtonPushed) { case 0: lcd.setCursor(0,0); lcd.print("Enter to Start :"); startup_display(); menu_display = 0; break; case 1: safe = check_home(); if (safe == 1) { error_msg = "<Cover is Open >"; run_status = 2; lastButtonPushed = 20; break; } run_status = 1; digitalWrite(run_ledPin, HIGH); Serial.print("run_status = "); Serial.println(run_status); lcd.clear(); display_status_lcd(0,0,"Run Status = ",run_status); delay(1000); Serial.println("Sequence start!"); ret = auto_mode(Frame_steps); //set the number of feeds if (ret == 1) { //lcd.clear(); run_status = 0; display_status_lcd(0,0,"Run Status = ",run_status); display_lcd(0,1,"Halt !"); Serial.println("Halt!"); break; } if (ret == 2) { //lcd.clear(); error_msg = "M1 Ref/POS Error"; run_status = 2; lastButtonPushed = 20; break; } if (ret == 3) { error_msg = "<Brusher Error> "; run_status = 2; lastButtonPushed = 20; break; } if (ret == 4) { error_msg = "< Vacuum Error >"; run_status = 2; lastButtonPushed = 20; break; } if (ret == 5) { error_msg = "<Cover is Open >"; run_status = 2; lastButtonPushed = 20; break; } if (ret == 6) { run_status = 2; lastButtonPushed = 20; break; } safe = check_home(); if (safe == 1) { error_msg = "<Cover is Open >"; run_status = 2; lastButtonPushed = 20; break; } run_status = 0; display_status_lcd(0,0,"Run Status = ",run_status); display_lcd(0,1,"<Empty Frame>"); Serial.println("Frame is Empty"); digitalWrite(run_ledPin, LOW); lastButtonPushed=12; delay(2000); break; case 3: lcd.setCursor(0,0); lcd.print("Select or Enter:"); lcd.setCursor(0,1); lcd.print(" Load Frame "); menu_display = 3; break; case 4: load(); menu_display = 3; lastButtonPushed=0; break; case 5: lcd.setCursor(0,0); lcd.print("Select or Enter:"); lcd.setCursor(0,1); lcd.print(" Home Position "); //go to home position menu_display = 5; break; case 6: unload(); menu_display = 5; lastButtonPushed=0; break; case 7: // turn start LED off and stepper motor1: digitalWrite(run_ledPin, LOW); Serial.print("run_status = "); Serial.println("Stop"); lcd.setCursor(0,0); lcd.print("<STOP to RESET> "); lcd.setCursor(0,1); lcd.print("Stopped........."); menu_display = 7; break; case 8: lcd.setCursor(0,0); lcd.print("Select or Enter:"); lcd.setCursor(0,1); lcd.print("< Service Menu >"); menu_display = 8; break; case 9: menu_display = 9; lastButtonPushed=0; service_menu(); lastButtonPushed=0; break; case 10: lcd.setCursor(0,0); lcd.print("Select or Enter:"); lcd.setCursor(0,1); lcd.print("< Service Mode >"); menu_display = 10; break ; case 11: digitalWrite(run_ledPin, LOW); digitalWrite(service_light, HIGH); Serial.println("Service Mode....."); scroll(" OUT OF SERVICE ",13,2); display_lcd(0,0,"STOP / RESET "); display_lcd(0,1,"To Restart ....."); digitalWrite(service_light, LOW); tone( piezoPin, 2100, 250); delay(200); noTone(piezoPin); delay(200); digitalWrite(service_light, HIGH); tone( piezoPin, 2100, 250); delay(200); noTone(piezoPin); delay(200); digitalWrite(service_light, LOW); tone( piezoPin, 2000, 250); delay(200); tone( piezoPin, 2100, 250); digitalWrite(service_light, HIGH); delay(200); noTone(piezoPin); delay(200); tone( piezoPin, 2100, 250); digitalWrite(service_light, LOW); delay(200); noTone(piezoPin); delay(200); tone( piezoPin, 2000, 250); menu_display = 11; break ; case 12: digitalWrite(run_ledPin, LOW); scroll(" <<< RELOAD >>> ",13,1); display_lcd(0,0,"Frames Empty!"); display_lcd(0,1,"<<< RELOAD >>>"); digitalWrite(run_ledPin, HIGH); tone( piezoPin, 2100, 250); delay(200); noTone(piezoPin); delay(200); digitalWrite(run_ledPin, LOW); tone( piezoPin, 2100, 250); delay(200); noTone(piezoPin); delay(200); digitalWrite(run_ledPin, HIGH); tone( piezoPin, 2000, 250); delay(200); tone( piezoPin, 2100, 250); digitalWrite(run_ledPin, LOW); delay(200); noTone(piezoPin); delay(200); tone( piezoPin, 2100, 250); digitalWrite(run_ledPin, HIGH ); delay(200); noTone(piezoPin); delay(200); tone( piezoPin, 2000, 250); menu_display = 12; break ; case 20: digitalWrite(run_ledPin, LOW); digitalWrite(service_light, HIGH); Serial.println(error_msg); scroll(" <<< ERROR >>> ",13,2); display_lcd(0,0,error_msg); display_lcd(0,1," <<< ERROR >>> "); digitalWrite(service_light, LOW); tone( piezoPin, 2100, 250); delay(200); noTone(piezoPin); delay(200); digitalWrite(service_light, HIGH); tone( piezoPin, 2100, 250); delay(200); noTone(piezoPin); delay(200); digitalWrite(service_light, LOW); tone( piezoPin, 2000, 250); delay(200); tone( piezoPin, 2100, 250); digitalWrite(service_light, HIGH); delay(200); noTone(piezoPin); delay(200); tone( piezoPin, 2100, 250); digitalWrite(service_light, LOW); delay(200); noTone(piezoPin); delay(200); tone( piezoPin, 2000, 250); menu_display = 13; break ; } } void service_menu() { while (menu_display == 9) { read_buttons(); switch (lastButtonPushed) { case 0: delay(60); lcd.setCursor(0,0); lcd.print("Select or Enter:"); lcd.setCursor(0,1); lcd.print(" <Manual Feed> "); service_menu_display = 0; break; case 1: manual_feed(); lastButtonPushed=0; break; case 2: lcd.setCursor(0,0); lcd.print("Select or Enter:"); lcd.setCursor(0,1); lcd.print("<Set Feed Delay>"); service_menu_display = 2; break; case 3: service_menu_display = 3; set_feed_delay(); EEPROM.get(EE_addr1,EEPROM_read_pushdelay); push_delay = EEPROM_read_pushdelay; lastButtonPushed=2; break; case 4: lcd.setCursor(0,0); lcd.print("Select or Enter:"); lcd.setCursor(0,1); lcd.print("Set Pusher Steps"); service_menu_display = 4; break; case 5: service_menu_display = 5; set_pusher_steps(); EEPROM.get(EE_addr2,EEPROM_read_pusher); pusher_steps = EEPROM_read_pusher; lastButtonPushed=4; break; case 6: lcd.setCursor(0,0); lcd.print("Select or Enter:"); lcd.setCursor(0,1); lcd.print("SetFrameCapacity"); service_menu_display = 6; break; case 7: service_menu_display = 7; set_Frame_cap(); EEPROM.get(EE_addr3,EEPROM_read_Frame); Frame_steps = EEPROM_read_Frame; lastButtonPushed=6; break; case 8: lcd.setCursor(0,0); lcd.print("Select or Enter:"); lcd.setCursor(0,1); lcd.print("Move Pusher FWD "); service_menu_display = 8; break; case 9: pusher_forward(); lastButtonPushed=8; break; case 10: lcd.setCursor(0,0); lcd.print("Select or Enter:"); lcd.setCursor(0,1); lcd.print("Move Pusher BKD "); service_menu_display = 10; break; case 11: pusher_backward(); lastButtonPushed=10; break; case 12: lcd.setCursor(0,0); lcd.print("Select or Enter:"); lcd.setCursor(0,1); lcd.print("Move Frame Up "); service_menu_display = 12; break; case 13: Frame_forward(); lastButtonPushed=12; break; case 14: lcd.setCursor(0,0); lcd.print("Select or Enter:"); lcd.setCursor(0,1); lcd.print("Move Frame Down"); service_menu_display = 14; break; case 15: Frame_backward(); lastButtonPushed=14; break; case 16: lcd.setCursor(0,0); lcd.print("Select or Enter:"); lcd.setCursor(0,1); lcd.print("Set FW Push Spd "); service_menu_display = 16; break; case 17: service_menu_display = 17; set_pusher_FW_speed(); EEPROM.get(EE_addr4,EEPROM_pusher_FW_spd); pusher_FW_spd = EEPROM_pusher_FW_spd; lastButtonPushed=16; break; case 18: lcd.setCursor(0,0); lcd.print("Select or Enter:"); lcd.setCursor(0,1); lcd.print("Set BKD Push Spd"); service_menu_display = 18; break; case 19: service_menu_display = 19; set_pusher_BKD_speed(); EEPROM.get(EE_addr5,EEPROM_pusher_BKD_spd); pusher_BKD_spd = EEPROM_pusher_BKD_spd; lastButtonPushed=18; break; case 20: lcd.setCursor(0,0); lcd.print("Select or Enter:"); lcd.setCursor(0,1); lcd.print("Set Frame thick "); service_menu_display = 20; break; case 21: service_menu_display = 21; set_frame_thick(); EEPROM.get(EE_addr6,EEPROM_frame_thick); frame_thick = EEPROM_frame_thick; lastButtonPushed=20; break; case 22: lcd.setCursor(0,0); lcd.print("Select or Enter:"); lcd.setCursor(0,1); lcd.print("EXIT ServiceMenu"); service_menu_display = 22; break; case 23: menu_display = 0; break; } } } void read_sensors() { //Interrupt Service Routine, read the state of the stop switch into a local variable: int read_stop = digitalRead(stop_buttonPin); Serial.println("Stop Interrupt called "); int read_vac_sens = digitalRead(vacuum_status); int read_brusher_stat = digitalRead(brusher_status); // int read_safety_stat = digitalRead(cover_safety_status); tone( piezoPin, 2300, 250); if (read_stop == LOW && run_status == 0) { Serial.println("Reset 0"); resetFunc(); } if (read_stop == LOW && run_status == 1 && stop_status == 2) { Serial.println("Reset 0"); resetFunc(); } if (read_stop == LOW && run_status == 2) { Serial.println("Reset 2"); lcd.clear(); resetFunc(); } if (read_stop == LOW && read_vac_sens == 0) { Serial.println("Vacuum Error"); tone( piezoPin, 2000, 250); error_msg = "< Vacuum Error >"; //run_status = 2; //lastButtonPushed = 20; ret_alarm = 1; exit; } if (read_stop == LOW && read_brusher_stat == 0) { Serial.println("<Brusher Error> "); tone( piezoPin, 2000, 250); error_msg = "<Brusher Error> "; //run_status = 2; // lastButtonPushed = 20; ret_alarm = 1; exit; } //if (read_stop == LOW && read_safety_stat == 0) { // Serial.println("<Cover is Open >"); // tone( piezoPin, 2000, 250); // error_msg = "<Cover is Open >"; // run_status = 2; // lastButtonPushed = 20; // ret_alarm = 1; // exit; // } tone( piezoPin, 2000, 250); Serial.println("Stop Button activated! "); lcd.clear(); display_lcd(0,0,"STOP Activated!!"); display_lcd(0,1,"Ending Sequence"); digitalWrite(run_ledPin, LOW); Serial.print("run_status = "); Serial.println("Stop"); lastButtonPushed=7; stop_status = stop_status + 1; //run_status = 0; delay(150); Serial.println(stop_status); Serial.println(run_status); } void read_m1_home_sensor() { Serial.println("ISR for m1_home_sensor activated!"); m1_home_status = LOW; delay(100); } void read_m2_home_sensor() { Serial.println("ISR for m2_home_sensor activated!"); m2_home_status = LOW; delay(100); } void read_m1_extreme_sensor() { Serial.println("ERROR:ISR for m1_extreme_sensor activated!"); m1_extreme_pos = LOW; delay(100); } void read_m2_extreme_sensor() { Serial.println("ERROR:ISR for m2_extreme_sensor activated!"); m2_extreme_pos = LOW; delay(100); } void run_step_m1(int dir1, long rev1) { //dir1 set direction of m1 //rev1 set the number of revolutions for m1 //step_per_rev is the driver's micro step settings //start stepper motor1 Serial.print("Revs_m1 = ");Serial.println(rev1); digitalWrite(m1_dir, dir1); for (int x = 0; x <= rev1 * step_per_rev_m1; x++) { digitalWrite(m1_step, HIGH); time_delay1(motor_speed_m1); digitalWrite(m1_step, LOW); time_delay1(motor_speed_m1); if (m1_extreme_pos == LOW) { //detachInterrupt(3); error_msg = "M1 in ExtremePOS"; run_status=2; lastButtonPushed = 20; break; } if (digitalRead(cover_safety_status) == LOW) { error_msg = "<Cover is Open!>"; run_status = 2; lastButtonPushed = 20; ret_alarm = 1; } if (ret_alarm == 1) { run_status = 3; //lastButtonPushed = 20; break; } } } void run_step_m2(int dir2, float rev2) { //dir2 set direction of m2 //rev2 set the number of revolutions for m2 //step_per_rev is the driver's micro step settings //start stepper motor2 cw: Serial.print("Revs_m2 = ");Serial.println(rev2); digitalWrite(m2_dir, dir2); for (int z = 0; z <= rev2 * step_per_rev_m2; z++) { digitalWrite(m2_step, HIGH); time_delay2(motor_speed_m2); digitalWrite(m2_step, LOW); time_delay2(motor_speed_m2); if (m2_extreme_pos == LOW) { //detachInterrupt(2); error_msg = "M2 in ExtremePOS"; run_status=2; lastButtonPushed = 20; main_menu(); } } } void time_delay1(float del) { for (int count = 0; count <=del; count++) { delayMicroseconds(100); } } void time_delay2(int del) { for (int count = 0; count <=del; count++) { delayMicroseconds(500); } } void set_push_delay(int del) { for (int count = 0; count <=del; count++) { delay(1000); } } void set_m1_home() { Serial.print("m1_home_status = "); Serial.println(m1_home_status); Serial.println("Setting m1 to home position....."); display_lcd(0,1," Set M1 to home "); motor_speed_m1 = 2.5; while (m1_home_status == HIGH) { run_step_m1(1,1); if (m1_extreme_pos == LOW) { error_msg = "M1 in ExtremePOS"; run_status=2; lastButtonPushed = 20; break; } if (digitalRead(cover_safety_status) == LOW) { error_msg = "<Cover is Open!>"; run_status = 2; lastButtonPushed = 20; break; } } Serial.print("m1_home_sensor = "); Serial.println(m1_home_status); Serial.println("m1 in home position....."); } void set_m2_home() { Serial.print("m2_home_status = "); Serial.println(m2_home_status); Serial.println("Setting m2 to home position....."); display_lcd(0,1," Set M2 to home "); motor_speed_m2 = 1.75; while (m2_home_status == HIGH) { run_step_m2(0,frame_thick); if (m2_extreme_pos == LOW) { error_msg = "M2 in ExtremePOS"; run_status=2; lastButtonPushed = 20; break; } } Serial.print("m2_home_sensor = "); Serial.println(m2_home_status); Serial.println("m2 in home position....."); } int auto_mode (int cycle) { stop_status = 0; // reset stop button flag if (digitalRead(cover_safety_status) == LOW) { run_status = 2; return 5; } int read_frame; Serial.print("Total Cycle = ");Serial.println(cycle); for (int y = 0; y <cycle; y++) { Serial.print("Cycle no = ");Serial.println(y+1); display_status_lcd(0,1,"Cycle No = ",(y+1)); motor_speed_m2 = 1.75; run_step_m2(1,frame_thick); run_step_m2(1,frame_thick); read_frame = digitalRead(frame_sensor1); //read_frame = 0; << to disable use this delay (250); //debounce delay to make sure noise is not read if (read_frame == 0 && digitalRead(vacuum_status) == LOW) { run_status = 2; return 4; } if (read_frame == 0) { //frame sensor active high set_push_delay(push_delay); delay(500); //turn on solenoid motor_speed_m2 = 1.75; run_step_m2(0,frame_thick); run_step_m2(0,frame_thick); run_step_m2(0,frame_thick); run_step_m2(0,frame_thick); run_step_m2(0,frame_thick); run_step_m2(0,frame_thick); run_step_m2(0,frame_thick); run_step_m2(0,frame_thick); delay(500); motor_speed_m1 = pusher_FW_spd; //user save through service menu run_step_m1(0,pusher_steps); delay (1500); motor_speed_m1 = pusher_BKD_spd; //user save through service menu run_step_m1(1,pusher_steps); delay (500); } if (read_frame == 1) { //no frame activated Serial.print("Frame not detected ...."); display_lcd(0,1,"Frame missing..."); delay (500); } //m1_home_status = digitalRead(motor1_home_sensor); //delay (50); if (digitalRead(motor1_home_sensor) == HIGH) { run_status = 2; return 2; } if (digitalRead(brusher_status) == LOW) { run_status = 2; return 3; } if (ret_alarm == 1) { return 6; } if (stop_status == 1) { lastButtonPushed = 7; return 1; } tone( piezoPin, 2000, 250); } return 0; } int check_home() { if (digitalRead(cover_safety_status) == LOW) { error_msg = "<Cover is Open!>"; run_status = 2; lastButtonPushed = 20; return 1; } display_lcd(0,0,"<Check Home POS>"); int read_home_status; read_home_status = digitalRead(motor2_home_sensor); delay(100); m2_home_status = read_home_status ; set_m2_home(); //m2_home_status = LOW;//reset m1 home status flag for debug, this will be activated by sensor read_home_status = digitalRead(motor1_home_sensor); delay(100); m1_home_status = read_home_status ; set_m1_home(); //m1_home_status = LOW;//reset m1 home status flag for debug, this will be activated by sensor return 0; } void check_home_magazine() { display_lcd(0,0, "<CHeck Home POS>"); int read_home_status; read_home_status = digitalRead(motor2_home_sensor); delay(100); m2_home_status = read_home_status; set_m2_home(); } void unload() { run_status = 0; check_home(); //Serial.println("Unloading the Frame....."); display_lcd(0,1,"Go Home Position"); //motor_speed_m2 = 1; //run_step_m2(1,Frame_steps/2); //Serial.print("..m2_unload_position"); delay(1000); } void load() { run_status = 0; magz_count = 94; load_level = 3; Serial.println("Loading the Frame....."); check_home(); delay(1000); motor_speed_m1 = 1.75; run_step_m1(0,150); delay(1000); digitalWrite(loading_enable, LOW); digitalWrite(loading_enable2,HIGH); Serial.println("Loading Sensor Enable"); lcd.clear(); lcd.setCursor(0, 1); lcd.print("Loading Frame...."); magz_count=magz_count-(94*0.5); //orig 0.25 motor_speed_m2 = 1; load_level=load_level-1; run_step_m2(1,magz_count/2); digitalWrite(loading_enable2,LOW); delay(1000); Serial.println("Loading Sensor Disable"); lcd.clear(); lcd.setCursor(0, 0); lcd.print(" Hit ENT to Load"); lcd.setCursor(0, 1); lcd.print(load_level); while (load_level != 0) { //read_buttons(); if (digitalRead(start_buttonPin)== 0) { delay(150); load_level = load_level-1; tone( piezoPin, 2000, 150); lcd.setCursor(0, 1); lcd.print("Loading Frames...."); run_step_m2(0, (Frame_steps*0.135)/2); lcd.clear(); lcd.setCursor(0, 0); lcd.print("Hit ENT to Load"); lcd.setCursor(0, 1); lcd.print(" LOAD LEVEL = "); lcd.print(load_level); } lcd.setCursor(0, 1); lcd.print(" LOAD LEVEL = "); lcd.print(load_level); } check_home_magazine(); tone( piezoPin, 2000, 150); lcd.clear(); lcd.setCursor(0, 1); lcd.print("LOADING POSITION"); delay(2000); digitalWrite(loading_enable,HIGH); } void manual_feed() { check_home(); run_status=0; Serial.println("Manual Feeding.."); display_lcd(0,1,"Manual Feeding.."); motor_speed_m2 = 1; run_step_m2(1,frame_thick); run_step_m2(1,frame_thick); delay (1000); motor_speed_m1 = pusher_FW_spd; run_step_m1(0,pusher_steps); delay (500); motor_speed_m1 = pusher_BKD_spd; run_step_m1(1,pusher_steps); delay (500); } void pusher_forward() { if (digitalRead(motor1_extreme_sensor) == LOW) { display_lcd(0,1,"M1 Max Position "); delay(2000); service_menu_display = 8; return; } Serial.println("Pusher Forward.."); display_lcd(0,1,"Pusher Forward.."); motor_speed_m1 = 2; run_step_m1(0,1); delay (100); } void pusher_backward() { if (digitalRead(motor1_home_sensor) == LOW) { display_lcd(0,1,"M1 Min Position "); delay(2000); service_menu_display = 10; return; } Serial.println("Pusher Backward "); display_lcd(0,1,"Pusher Backward "); motor_speed_m1 = 2; run_step_m1(1,1); delay (100); } void Frame_forward() { if (digitalRead(motor2_extreme_sensor) == LOW) { display_lcd(0,1,"M2 Max Position "); delay(2000); service_menu_display = 12; return; } Serial.println("Frame Backward "); display_lcd(0,1,"Frame Upward..."); motor_speed_m2 = 1; run_step_m2(1,frame_thick); run_step_m2(1,frame_thick);//new add delay (250); } void Frame_backward() { if (digitalRead(motor2_home_sensor) == LOW) { display_lcd(0,1,"M2 Min Position "); delay(2000); service_menu_display = 14; return; } Serial.println("Frame Backward "); display_lcd(0,1,"Frame Downward..."); motor_speed_m2 = 1; run_step_m2(0,frame_thick); run_step_m2(0,frame_thick); delay (250); } void set_feed_delay() { lcd.clear(); lcd.setCursor(0, 0); lcd.print("HIT ENT to SAVE"); lcd.setCursor(0, 1); lcd.print("FEED Delay ="); lcd.print(EEPROM_read_pushdelay,0); push_delay = EEPROM_read_pushdelay; delay(2000); while (lastButtonPushed==3) { read_buttons(); if (digitalRead(select_buttonPin)== 0) { delay(150); push_delay = push_delay+1.0; tone( piezoPin, 2000, 150); if (push_delay > 99) { push_delay = 0; lcd.clear(); lcd.setCursor(0, 0); lcd.print("HIT ENT to SAVE"); lcd.setCursor(0, 1); lcd.print("FEED Delay ="); lcd.print(push_delay,0); } } lcd.setCursor(0, 1); lcd.print("FEED Delay ="); lcd.print(push_delay,0); } EEPROM.put(EE_addr1, push_delay); lcd.clear(); display_lcd(0,0,"Settings Saved! "); delay(2000); } void set_pusher_steps() { lcd.clear(); lcd.setCursor(0, 0); lcd.print("HIT ENT to SAVE"); lcd.setCursor(0, 1); lcd.print("PUSHER Steps="); lcd.print(EEPROM_read_pusher,0); pusher_steps = EEPROM_read_pusher; delay(2000); while (lastButtonPushed==5) { read_buttons(); if (digitalRead(select_buttonPin)== 0) { delay(150); pusher_steps = pusher_steps+1.0; tone( piezoPin, 2000, 150); if (pusher_steps > 165) { pusher_steps = 150; lcd.clear(); lcd.setCursor(0, 0); lcd.print("HIT ENT to SAVE"); lcd.setCursor(0, 1); lcd.print("PUSHER Steps="); lcd.print(pusher_steps,0); } } lcd.setCursor(0, 1); lcd.print("PUSHER Steps="); lcd.print(pusher_steps,0); } EEPROM.put(EE_addr2, pusher_steps); lcd.clear(); display_lcd(0,0,"Settings Saved! "); delay(2000); } void set_Frame_cap() { lcd.clear(); lcd.setCursor(0, 0); lcd.print("HIT ENT to SAVE"); lcd.setCursor(0, 1); lcd.print("Frame Cap ="); lcd.print(EEPROM_read_Frame,0); Frame_steps = EEPROM_read_Frame; delay(2000); while (lastButtonPushed==7) { read_buttons(); if (digitalRead(select_buttonPin)== 0) { delay(150); Frame_steps = Frame_steps+1.0; tone( piezoPin, 2000, 150); if (Frame_steps > 120) { Frame_steps = 80; lcd.clear(); lcd.setCursor(0, 0); lcd.print("HIT ENT to SAVE"); lcd.setCursor(0, 1); lcd.print("Frame Cap ="); lcd.print(Frame_steps,0); } } lcd.setCursor(0, 1); lcd.print("Frame Cap ="); lcd.print(Frame_steps,0); } EEPROM.put(EE_addr3, Frame_steps); lcd.clear(); display_lcd(0,0,"Settings Saved! "); delay(2000); } void set_pusher_FW_speed() { lcd.clear(); lcd.setCursor(0, 0); lcd.print("HIT ENT to SAVE"); lcd.setCursor(0, 1); lcd.print("FW Push Spd="); lcd.print(EEPROM_pusher_FW_spd,2); pusher_FW_spd = EEPROM_pusher_FW_spd; delay(2000); while (lastButtonPushed==17) { read_buttons(); if (digitalRead(select_buttonPin)== 0) { delay(150); pusher_FW_spd = pusher_FW_spd+0.1; tone( piezoPin, 2000, 150); if (pusher_FW_spd > 3.00) { pusher_FW_spd = 2; lcd.clear(); lcd.setCursor(0, 0); lcd.print("HIT ENT to SAVE"); lcd.setCursor(0, 1); lcd.print("FW Push Spd="); lcd.print(pusher_FW_spd,2); } } lcd.setCursor(0, 1); lcd.print("FW Push Spd="); lcd.print(pusher_FW_spd,2); } EEPROM.put(EE_addr4, pusher_FW_spd); lcd.clear(); display_lcd(0,0,"Settings Saved! "); delay(2000); } void set_pusher_BKD_speed() { lcd.clear(); lcd.setCursor(0, 0); lcd.print("HIT ENT to SAVE"); lcd.setCursor(0, 1); lcd.print("BKD PushSpd="); lcd.print(EEPROM_pusher_BKD_spd,2); pusher_BKD_spd = EEPROM_pusher_BKD_spd; delay(2000); while (lastButtonPushed==19) { read_buttons(); if (digitalRead(select_buttonPin)== 0) { delay(150); pusher_BKD_spd = pusher_BKD_spd+0.1; tone( piezoPin, 2000, 150); if (pusher_BKD_spd > 3.00) { pusher_BKD_spd = 2; lcd.clear(); lcd.setCursor(0, 0); lcd.print("HIT ENT to SAVE"); lcd.setCursor(0, 1); lcd.print("BKD PushSpd="); lcd.print(pusher_BKD_spd,2); } } lcd.setCursor(0, 1); lcd.print("BKD PushSpd="); lcd.print(pusher_BKD_spd,2); } EEPROM.put(EE_addr5, pusher_BKD_spd); lcd.clear(); display_lcd(0,0,"Settings Saved! "); delay(2000); } void set_frame_thick() { lcd.clear(); lcd.setCursor(0, 0); lcd.print("HIT ENT to SAVE"); lcd.setCursor(0, 1); lcd.print("Frame thick="); lcd.print(EEPROM_frame_thick,2); frame_thick = EEPROM_frame_thick; delay(2000); while (lastButtonPushed==21) { read_buttons(); if (digitalRead(select_buttonPin)== 0) { delay(150); frame_thick = frame_thick+0.01; tone( piezoPin, 2000, 150); if (frame_thick > 0.50) { frame_thick = 0.01; lcd.clear(); lcd.setCursor(0, 0); lcd.print("HIT ENT to SAVE"); lcd.setCursor(0, 1); lcd.print("Frame thick="); lcd.print(frame_thick,2); } } lcd.setCursor(0, 1); lcd.print("Frame thick="); lcd.print(frame_thick,2); } EEPROM.put(EE_addr6, frame_thick); lcd.clear(); display_lcd(0,0,"Settings Saved! "); delay(2000); } void display_lcd(int col, int row, String msg) { lcd.setCursor(col,row); lcd.print(msg); } void display_status_lcd(int col, int row, String msg, int stat) { lcd.setCursor(col,row); lcd.print(msg); lcd.setCursor(col+13,row); lcd.print(stat); } void scroll (String msg, int pos, int repeat) { for (int rep = 0; rep < repeat; rep++) { lcd.clear(); lcd.begin(16, 2); lcd.print(msg); delay(100); // scroll 13 positions (string length) to the left // to move it offscreen left: for (int positionCounter = 0; positionCounter < pos; positionCounter++) { // scroll one position left: lcd.scrollDisplayLeft(); // wait a bit: read_buttons(); delay(100); } // scroll 13 positions (string length + display length) to the right // to move it offscreen right: for (int positionCounter = 0; positionCounter < pos; positionCounter++) { // scroll one position right: lcd.scrollDisplayRight(); // wait a bit: read_buttons(); delay(100); } // delay at the end of the full loop: delay(100); read_buttons(); } } void startup_display() { lcd.setCursor(0,1); lcd.print(" Standby Mode "); //Serial.println("Standby Mode....."); } /* ( THE END ) */
[ "sdr.obs@gmail.com" ]
sdr.obs@gmail.com
a83fc11c6b0dbc325569cd96013ef33803235eec
c61c856258294fed5eb2a8b17c28d94db6f86fae
/lazy.hpp
5ec38ff78c5ad158f29c876072e7d94a9937cb42
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
hmito/hmLib
18b5cd5493e29168b5dc8ca488ed425caae42a8b
3d10a18cc9b4dbba52b5060208263bbb5bb29c4b
refs/heads/master
2023-08-16T22:47:45.550228
2022-05-10T03:01:21
2022-05-10T03:01:21
29,452,438
0
1
null
null
null
null
UTF-8
C++
false
false
5,035
hpp
#ifndef HMLIB_LAZY_INC #define HMLIB_LAZY_INC 100 # #include<utility> #include<tuple> #include<functional> #include<boost/variant.hpp> #include"tuple.hpp" namespace hmLib { template<typename return_type_, typename... arg_type_> struct lazy { private: using this_type = lazy<return_type_, arg_type_...>; using return_type = return_type_; using eval_func = std::function<return_type(arg_type_...)>; using arg_tuple = std::tuple<arg_type_...>; using eval_type = std::pair<eval_func, arg_tuple>; using variant = boost::variant<return_type, eval_type>; private: mutable variant Var; public: lazy() = default; explicit lazy(return_type val):Var(val) {} this_type& operator=(return_type val) { Var = val; } template<typename eval_func_> lazy(eval_func_ Eval_, arg_type_... Args_):Var(eval_type(std::move(Eval_), arg_tuple(Args_...))) {} void reset(return_type val) { Var = val; } template<typename eval_func_> void reset(eval_func_ Eval_, arg_type_... Args_) { Var = eval_type(std::move(Eval_), arg_tuple(Args_...)); } public: operator return_type&()& { return get(); } operator const return_type&()const& { return get(); } operator return_type&&()&& { return static_cast<this_type&&>(*this).get(); } return_type& get()& { if(eval_type* p = boost::get<eval_type>(&Var)) { Var = tuple_apply(p->first, p->second); } return *boost::get<return_type>(&Var); } const return_type& get()const& { if(eval_type* p = boost::get<eval_type>(&Var)) { Var = tuple_apply(p->first, p->second); } return *boost::get<const return_type>(&Var); } return_type&& get()&& { if(eval_type* p = boost::get<eval_type>(&Var)) { Var = tuple_apply(p->first, p->second); } return std::move(*boost::get<return_type>(&Var)); } bool is_evaluated()const { if(boost::get<const eval_type>(&Var)) { return false; } return true; } eval_type get_evaluator()const& { eval_type* p = boost::get<eval_type>(&Var); hmLib_assert(p, hmLib::access_exceptions::invalid_access, "lazy has been already evaluated."); return *p; } eval_type get_evaluator()&& { eval_type* p = boost::get<eval_type>(&Var); hmLib_assert(p, hmLib::access_exceptions::invalid_access, "lazy has been already evaluated."); return std::move(*p); } }; template<typename return_type_> struct lazy<return_type_> { private: using this_type = lazy<return_type_>; using return_type = return_type_; using eval_func = std::function<return_type()>; using eval_type = eval_func; using variant = boost::variant<return_type, eval_type>; private: mutable variant Var; public: lazy() = default; explicit lazy(return_type val):Var(val) {} this_type& operator=(return_type val) { Var = val; } template<typename eval_func_> explicit lazy(eval_func_ Eval_):Var(eval_type(std::move(Eval_))) {} void reset(return_type val) { Var = val; } template<typename eval_func_> void reset(eval_func_ Eval_) { Var = eval_type(std::move(Eval_)); } public: operator return_type&()& { return get(); } operator const return_type&()const& { return get(); } operator return_type&&()&& { return static_cast<this_type&&>(*this).get(); } return_type& get()& { if(eval_type* p = boost::get<eval_type>(&Var)) { Var = (*p)(); } return *boost::get<return_type>(&Var); } const return_type& get()const& { if(eval_type* p = boost::get<eval_type>(&Var)) { Var = (*p)(); } return *boost::get<const return_type>(&Var); } return_type&& get()&& { if(eval_type* p = boost::get<eval_type>(&Var)) { Var = (*p)(); } return std::move(*boost::get<return_type>(&Var)); } bool is_evaluated()const { if(boost::get<const eval_type>(&Var)) { return false; } return true; } eval_type get_evaluator()const& { eval_type* p = boost::get<eval_type>(&Var); hmLib_assert(p, hmLib::access_exceptions::invalid_access, "lazy has been already evaluated."); return *p; } eval_type get_evaluator()&& { eval_type* p = boost::get<eval_type>(&Var); hmLib_assert(p, hmLib::access_exceptions::invalid_access, "lazy has been already evaluated."); return std::move(*p); } }; template<typename return_type, typename eval_func, typename... arg_type> auto make_lazy(eval_func&& Eval, arg_type&&... Args) { return lazy<return_type, typename std::decay<arg_type>::type...>(std::forward<eval_func>(Eval),std::forward<arg_type>(Args)...); } template<typename eval_func_> struct lazy_function { private: using eval_func = eval_func_; private: eval_func Fn; public: lazy_function() = delete; lazy_function(const eval_func& Fn_):Fn(Fn_) {} lazy_function(eval_func&& Fn_):Fn(std::move(Fn_)) {} template<typename... arg_type> auto operator()(arg_type... Args) { return make_lazy<decltype(Fn(Args...))>(Fn, Args...); } }; template<typename fn> auto make_lazy_function(fn&& Fn) { return lazy_function<typename std::decay<fn>::type>(std::forward<fn>(Fn)); } } # #endif
[ "hmito@outlook.com" ]
hmito@outlook.com
8fb14bcf4d82773361eadfe3ee8b287c98ef73db
36c31b485a5906ab514c964491b8f001a70a67f5
/Codeforces/CF 1500 - 1599/CF1582/CF1582C.cpp
8b8bf22954366e32798a8831f4f476f164613713
[]
no_license
SMiles02/CompetitiveProgramming
77926918d5512824900384639955b31b0d0a5841
035040538c7e2102a88a2e3587e1ca984a2d9568
refs/heads/master
2023-08-18T22:14:09.997704
2023-08-13T20:30:42
2023-08-13T20:30:42
277,504,801
25
5
null
2022-11-01T01:34:30
2020-07-06T09:54:44
C++
UTF-8
C++
false
false
1,446
cpp
//#pragma GCC optimize("Ofast,unroll-loops") //#pragma GCC target("avx,avx2,sse,sse2") #include <bits/stdc++.h> #define ll long long #define sz(x) (int)(x).size() using namespace std; //mt19937 rng(chrono::steady_clock::now().time_since_epoch().count()); //uniform_int_distribution<int>(1000,10000)(rng) ll binpow(ll a, ll b) { ll res = 1; while (b > 0) { if (b & 1) res = res * a; a = a * a; b >>= 1; } return res; } ll gcd(ll a,ll b) { if (b==0) return a; return gcd(b,a%b); } string to_upper(string a) { for (int i=0;i<(int)a.size();++i) if (a[i]>='a' && a[i]<='z') a[i]-='a'-'A'; return a; } string to_lower(string a) { for (int i=0;i<(int)a.size();++i) if (a[i]>='A' && a[i]<='Z') a[i]+='a'-'A'; return a; } int n,ans; string s; void check(char c) { int l=0,r=n-1,cur=0; while (l<r) { if (s[l]==s[r]) { ++l; --r; continue; } else if (s[l]==c) ++l; else if (s[r]==c) --r; else return; ++cur; } ans=min(ans,cur); } void solve() { ans=1e9; cin>>n; cin>>s; for (char c='a';c<='z';++c) check(c); if (ans==1e9) ans=-1; cout<<ans<<"\n"; } int main() { ios_base::sync_with_stdio(0); cin.tie(0); int t; cin>>t; while (t--) solve(); return 0; }
[ "mahajan.suneet2002@gmail.com" ]
mahajan.suneet2002@gmail.com
9e7b88395941f7db12c3cd02be85ea9990bd2146
639c0730efaa23583ea50c2830026788c3b7f0de
/vkf/Instance.h
ffa5f1ffad8cc5652a25d9eef889b6fbb2ebfa46
[]
no_license
Chris443/Vulkan
73feed3c41bd29ed154d360302fe120d37c7c672
20109b5e7426f5938b8d59930c946049d65c7fec
refs/heads/master
2020-04-21T10:00:18.440872
2019-02-06T20:40:18
2019-02-06T20:40:18
169,472,197
0
0
null
null
null
null
UTF-8
C++
false
false
1,043
h
#pragma once #include "common.h" namespace vkf { /** * \brief Class to create and encapsulate the Vulkan Instance with corresponding layers and extensions */ class Instance { public: /** * \brief Function to create the Vulkan instance handle * \param layers The Instance Level Layers, which should be supported by the Instance * \param extensions The Instance Level Extensions, which should be supported by the Instance * \param applicationName Name of the application * \param engineName Name of the engine * \return A Vulkan Enum to describe the creation process of the Instance */ VkResult createInstance(std::vector<std::string>& layers, std::vector<std::string>& extensions, std::string applicationName, std::string engineName); /** * \brief Function to destroy the Vulkan Instance Handle */ void destroyInstance(); /** * \return The Vulkan Instance Handle */ VkInstance getInstance() const { return instance; }; private: /** * \brief Vulkan Instance Handle */ VkInstance instance; }; }
[ "Christiankati@gmx.net" ]
Christiankati@gmx.net
263c51d2b2d512464a0d64d210746b1f5e612612
c097c09c748cb8294d83d4763d744957501cd67c
/ProyectoHMVCFarmacia/Principal.cpp
17f0073568b3386906e01cc2c120579b5ea64ba7
[]
no_license
PeterGabrielVE/CPlusPlus
afd9af5c4b5507fe0eb16793bea76f4ba76dc247
b82a3df577570cc1e8deac2aa14c7baf494dc158
refs/heads/master
2021-05-11T04:03:03.054773
2018-04-01T02:50:01
2018-04-01T02:50:01
117,926,636
0
0
null
null
null
null
UTF-8
C++
false
false
2,277
cpp
/* * * * EJERCICIO #8 GUIA DE EJERCICIO * Author: Pedro Gabriel Leal Cada vez que se atiende la compra de un cliente, se recopilan los siguientes datos: c�dula, nombre del cliente y por cada producto comprado: nombre, tipo (medicina o miscel�neos), PVP y cantidad comprada. Actualmente la farmacia les ofrece a sus clientes los siguientes descuentos: en los productos miscel�neos, un porcentaje de descuento de 7% sobre el PVP y en las medicinas un descuento del 40% sobre el PVP. La farmacia necesita entregarle a cada cliente la siguiente informaci�n: C�dula, Nombre, Direcci�n, Monto Bruto, Monto total descuento, Monto IVA (12% del monto total de los micelaneos menos el descuento de los mismos) y Monto Neto. Nota: Las medicinas no cancelan IVA. En el principal se crea un objeto de la clase Controlador Oberve que por la farmacia no nos piden ninguan salida, eso garantiza que no haya menu... porq solo habra un solo metodo en el controaldor ; ProcesarCompraClientes/ Analisis Datos comunes: -nombre del producto -tipo producto -precio -cantidad Datos Por Medicina no hay Datos Por Miscelaneos datos propios: no hay Consideraciones: 1)Comunes: monto compra= cantidad*pvp 2)Consideraciones de la herencia 2.1) Por Medicina - Descuento del 40% sobre el monto comprado 2.2) Por Miscelaneos - Descunto del 7% sobre el monto comprado Analisis de la clase MCliente: -Monto bruto = monto acumulado de medicinas + monto acumulado de miscelaneos -Total descuentos = monto acumulado de descto por medicina + monto acumulado de descto por micelaneos -Monto IVA =12% del monto total de los miscelaneos menos el descuento de Miscelaneos -Monto neto = Mon tototal Bruto- Monto total Descuentos + Monto Iva; salidas: Por la clase asociada con la herencia; es decir; por producto (Medicina o miscelaneos) ->no hay salida Por la clase Mediana(MCliente) -> C�dula, Nombre, Monto Bruto, Monto total descuento, Monto IVA (12% del monto total de los miscelaneos menos el descuento de los mismos) Monto Neto. */ #include "Controlador.h" int main(){ Controlador c; c.ProcesarCompraClientes(); return 0; }
[ "gaboleal123@gmail.com" ]
gaboleal123@gmail.com
367d6cb389a278a35af763898563c8f82a6efbe2
1942a0d16bd48962e72aa21fad8d034fa9521a6c
/aws-cpp-sdk-ec2/include/aws/ec2/model/DescribeAvailabilityZonesRequest.h
3c7a9b9ca74031a2e8385ea677396df1979232ed
[ "Apache-2.0", "JSON", "MIT" ]
permissive
yecol/aws-sdk-cpp
1aff09a21cfe618e272c2c06d358cfa0fb07cecf
0b1ea31e593d23b5db49ee39d0a11e5b98ab991e
refs/heads/master
2021-01-20T02:53:53.557861
2018-02-11T11:14:58
2018-02-11T11:14:58
83,822,910
0
1
null
2017-03-03T17:17:00
2017-03-03T17:17:00
null
UTF-8
C++
false
false
9,652
h
/* * Copyright 2010-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ #pragma once #include <aws/ec2/EC2_EXPORTS.h> #include <aws/ec2/EC2Request.h> #include <aws/core/utils/memory/stl/AWSVector.h> #include <aws/core/utils/memory/stl/AWSString.h> #include <aws/ec2/model/Filter.h> namespace Aws { namespace EC2 { namespace Model { /** * <p>Contains the parameters for DescribeAvailabilityZones.</p><p><h3>See * Also:</h3> <a * href="http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeAvailabilityZonesRequest">AWS * API Reference</a></p> */ class AWS_EC2_API DescribeAvailabilityZonesRequest : public EC2Request { public: DescribeAvailabilityZonesRequest(); Aws::String SerializePayload() const override; /** * <p>Checks whether you have the required permissions for the action, without * actually making the request, and provides an error response. If you have the * required permissions, the error response is <code>DryRunOperation</code>. * Otherwise, it is <code>UnauthorizedOperation</code>.</p> */ inline bool GetDryRun() const{ return m_dryRun; } /** * <p>Checks whether you have the required permissions for the action, without * actually making the request, and provides an error response. If you have the * required permissions, the error response is <code>DryRunOperation</code>. * Otherwise, it is <code>UnauthorizedOperation</code>.</p> */ inline void SetDryRun(bool value) { m_dryRunHasBeenSet = true; m_dryRun = value; } /** * <p>Checks whether you have the required permissions for the action, without * actually making the request, and provides an error response. If you have the * required permissions, the error response is <code>DryRunOperation</code>. * Otherwise, it is <code>UnauthorizedOperation</code>.</p> */ inline DescribeAvailabilityZonesRequest& WithDryRun(bool value) { SetDryRun(value); return *this;} /** * <p>The names of one or more Availability Zones.</p> */ inline const Aws::Vector<Aws::String>& GetZoneNames() const{ return m_zoneNames; } /** * <p>The names of one or more Availability Zones.</p> */ inline void SetZoneNames(const Aws::Vector<Aws::String>& value) { m_zoneNamesHasBeenSet = true; m_zoneNames = value; } /** * <p>The names of one or more Availability Zones.</p> */ inline void SetZoneNames(Aws::Vector<Aws::String>&& value) { m_zoneNamesHasBeenSet = true; m_zoneNames = value; } /** * <p>The names of one or more Availability Zones.</p> */ inline DescribeAvailabilityZonesRequest& WithZoneNames(const Aws::Vector<Aws::String>& value) { SetZoneNames(value); return *this;} /** * <p>The names of one or more Availability Zones.</p> */ inline DescribeAvailabilityZonesRequest& WithZoneNames(Aws::Vector<Aws::String>&& value) { SetZoneNames(value); return *this;} /** * <p>The names of one or more Availability Zones.</p> */ inline DescribeAvailabilityZonesRequest& AddZoneNames(const Aws::String& value) { m_zoneNamesHasBeenSet = true; m_zoneNames.push_back(value); return *this; } /** * <p>The names of one or more Availability Zones.</p> */ inline DescribeAvailabilityZonesRequest& AddZoneNames(Aws::String&& value) { m_zoneNamesHasBeenSet = true; m_zoneNames.push_back(value); return *this; } /** * <p>The names of one or more Availability Zones.</p> */ inline DescribeAvailabilityZonesRequest& AddZoneNames(const char* value) { m_zoneNamesHasBeenSet = true; m_zoneNames.push_back(value); return *this; } /** * <p>One or more filters.</p> <ul> <li> <p> <code>message</code> - Information * about the Availability Zone.</p> </li> <li> <p> <code>region-name</code> - The * name of the region for the Availability Zone (for example, * <code>us-east-1</code>).</p> </li> <li> <p> <code>state</code> - The state of * the Availability Zone (<code>available</code> | <code>information</code> | * <code>impaired</code> | <code>unavailable</code>).</p> </li> <li> <p> * <code>zone-name</code> - The name of the Availability Zone (for example, * <code>us-east-1a</code>).</p> </li> </ul> */ inline const Aws::Vector<Filter>& GetFilters() const{ return m_filters; } /** * <p>One or more filters.</p> <ul> <li> <p> <code>message</code> - Information * about the Availability Zone.</p> </li> <li> <p> <code>region-name</code> - The * name of the region for the Availability Zone (for example, * <code>us-east-1</code>).</p> </li> <li> <p> <code>state</code> - The state of * the Availability Zone (<code>available</code> | <code>information</code> | * <code>impaired</code> | <code>unavailable</code>).</p> </li> <li> <p> * <code>zone-name</code> - The name of the Availability Zone (for example, * <code>us-east-1a</code>).</p> </li> </ul> */ inline void SetFilters(const Aws::Vector<Filter>& value) { m_filtersHasBeenSet = true; m_filters = value; } /** * <p>One or more filters.</p> <ul> <li> <p> <code>message</code> - Information * about the Availability Zone.</p> </li> <li> <p> <code>region-name</code> - The * name of the region for the Availability Zone (for example, * <code>us-east-1</code>).</p> </li> <li> <p> <code>state</code> - The state of * the Availability Zone (<code>available</code> | <code>information</code> | * <code>impaired</code> | <code>unavailable</code>).</p> </li> <li> <p> * <code>zone-name</code> - The name of the Availability Zone (for example, * <code>us-east-1a</code>).</p> </li> </ul> */ inline void SetFilters(Aws::Vector<Filter>&& value) { m_filtersHasBeenSet = true; m_filters = value; } /** * <p>One or more filters.</p> <ul> <li> <p> <code>message</code> - Information * about the Availability Zone.</p> </li> <li> <p> <code>region-name</code> - The * name of the region for the Availability Zone (for example, * <code>us-east-1</code>).</p> </li> <li> <p> <code>state</code> - The state of * the Availability Zone (<code>available</code> | <code>information</code> | * <code>impaired</code> | <code>unavailable</code>).</p> </li> <li> <p> * <code>zone-name</code> - The name of the Availability Zone (for example, * <code>us-east-1a</code>).</p> </li> </ul> */ inline DescribeAvailabilityZonesRequest& WithFilters(const Aws::Vector<Filter>& value) { SetFilters(value); return *this;} /** * <p>One or more filters.</p> <ul> <li> <p> <code>message</code> - Information * about the Availability Zone.</p> </li> <li> <p> <code>region-name</code> - The * name of the region for the Availability Zone (for example, * <code>us-east-1</code>).</p> </li> <li> <p> <code>state</code> - The state of * the Availability Zone (<code>available</code> | <code>information</code> | * <code>impaired</code> | <code>unavailable</code>).</p> </li> <li> <p> * <code>zone-name</code> - The name of the Availability Zone (for example, * <code>us-east-1a</code>).</p> </li> </ul> */ inline DescribeAvailabilityZonesRequest& WithFilters(Aws::Vector<Filter>&& value) { SetFilters(value); return *this;} /** * <p>One or more filters.</p> <ul> <li> <p> <code>message</code> - Information * about the Availability Zone.</p> </li> <li> <p> <code>region-name</code> - The * name of the region for the Availability Zone (for example, * <code>us-east-1</code>).</p> </li> <li> <p> <code>state</code> - The state of * the Availability Zone (<code>available</code> | <code>information</code> | * <code>impaired</code> | <code>unavailable</code>).</p> </li> <li> <p> * <code>zone-name</code> - The name of the Availability Zone (for example, * <code>us-east-1a</code>).</p> </li> </ul> */ inline DescribeAvailabilityZonesRequest& AddFilters(const Filter& value) { m_filtersHasBeenSet = true; m_filters.push_back(value); return *this; } /** * <p>One or more filters.</p> <ul> <li> <p> <code>message</code> - Information * about the Availability Zone.</p> </li> <li> <p> <code>region-name</code> - The * name of the region for the Availability Zone (for example, * <code>us-east-1</code>).</p> </li> <li> <p> <code>state</code> - The state of * the Availability Zone (<code>available</code> | <code>information</code> | * <code>impaired</code> | <code>unavailable</code>).</p> </li> <li> <p> * <code>zone-name</code> - The name of the Availability Zone (for example, * <code>us-east-1a</code>).</p> </li> </ul> */ inline DescribeAvailabilityZonesRequest& AddFilters(Filter&& value) { m_filtersHasBeenSet = true; m_filters.push_back(value); return *this; } private: bool m_dryRun; bool m_dryRunHasBeenSet; Aws::Vector<Aws::String> m_zoneNames; bool m_zoneNamesHasBeenSet; Aws::Vector<Filter> m_filters; bool m_filtersHasBeenSet; }; } // namespace Model } // namespace EC2 } // namespace Aws
[ "henso@amazon.com" ]
henso@amazon.com
23d0bf12cdb0541715137966a032a3a5a8186857
057f2783821562579dea238c1073d0ba0839b402
/OCR/OCR/.localhistory/OCR/1479311375$PreProcessing.h
6d4fe2d314f851acb764f888d53e07e419204880
[]
no_license
KrzysztofKozubek/Projects
6cafb2585796c907e8a818da4b51c97197ccbd11
66ef23fbc8a6e6cf3b6ef837b390d7f2113a9847
refs/heads/master
2023-02-07T12:24:49.155221
2022-10-08T18:39:58
2022-10-08T18:39:58
163,520,516
0
0
null
2023-02-04T17:46:12
2018-12-29T15:18:18
null
UTF-8
C++
false
false
6,038
h
#pragma once /* library OpenCV */ #include <opencv2/imgproc/imgproc.hpp> #include <opencv2/core/core.hpp> #include <opencv2/highgui/highgui.hpp> /* library VS */ #include <iostream> #include <fstream> #include <stdlib.h> #include <stdio.h> /* My Class */ #include "dirent.h" using namespace cv; using namespace std; class CPreProcessing { public: CPreProcessing(); ~CPreProcessing(); static int sumRow(Mat image, int row, int NUMBER_MARGIN_MISSTAKE) { int sum = 0; for (int y = row; y < image.rows && y < row + NUMBER_MARGIN_MISSTAKE; y++) { for (int x = 0; x < image.cols; x++) { sum += image.at<uchar>(y, x); } } return sum; } static int sumColumn(Mat image, int col, int NUMBER_MARGIN_MISSTAKE) { int sum = 0; for (int x = col; x < image.cols && x < col + NUMBER_MARGIN_MISSTAKE; x++) { for (int y = 0; y < image.rows; y++) { sum += image.at<uchar>(y, x); } } return sum; } static double advRow(Mat image, int row, int NUMBER_MARGIN_MISSTAKE) { return (sumRow(image, row, NUMBER_MARGIN_MISSTAKE) / (image.rows)); } static double advCol(Mat image, int col, int NUMBER_MARGIN_MISSTAKE) { return (sumColumn(image, col, NUMBER_MARGIN_MISSTAKE) / (image.cols)); } static int getSkipLValue(Mat image) { int skip = 0; int margin = 300; int result = 0; CPreProcessing::dilate(image, 2, 2); CPreProcessing::toBinary(image, 200, 0, 0, 0, 0); int sumControl = 0; for (int x = 20; x < image.cols / 2; x++) { sumControl = 0; for (int y = (image.rows / 2) - margin; y < (image.rows / 2) + margin; y++) { if (image.at<uchar>(y, x) > 0) sumControl++; } result = x; if (sumControl > (margin / 5)) { x = image.cols; } } for (int i = 1; i < 8 && result - i > 0; i++) result -= i; return result; } static int getSkipTValue(Mat image) { int skip = 0; int margin = 300; int result = 0; CPreProcessing::dilate(image, 2, 2); CPreProcessing::toBinary(image, 200, 0, 0, 0, 0); int sumControl = 0; for (int y = 1; y < image.rows / 2; y++) { sumControl = 0; for (int x = (image.cols / 2) - margin; x < (image.cols / 2) + margin; x++) { if (image.at<uchar>(y, x) > 0) sumControl++; } result = y; if (sumControl >(margin / 5)) { y = image.cols; } } for (int i = 1; i < 8 && result - i > 0; i++) result -= i; return result; } static void rotate(Mat& image, double angle) { Mat tmp = image.clone(); Point2f src_center(image.cols / 2.0F, image.rows / 2.0F); Mat rot_mat = getRotationMatrix2D(src_center, angle, 1.0); warpAffine(tmp, image, rot_mat, image.size()); } static void changeContrasOrBrightness(Mat& image, int alpha, int beta) { Mat showImage = Mat::zeros(image.size(), image.type()); for (int y = 0; y < image.rows; y++) { for (int x = 0; x < image.cols; x++) { for (int c = 0; c < 3; c++) { image.at<Vec3b>(y, x)[c] = saturate_cast<uchar>(alpha*(image.at<Vec3b>(y, x)[c]) + beta); } } } } static void dilate(Mat& image, int type, int size) { Mat element = getStructuringElement(type, Size(2 * size + 1, 2 * size + 1), Point(size, size)); cv::dilate(image.clone(), image, element); } static void erode(Mat& image, int type, int size) { Mat element = getStructuringElement(type, Size(2 * size + 1, 2 * size + 1), Point(size, size)); cv::erode(image.clone(), image, element); } static void cutImage(Mat& image, int cutLeft = 20, int cutTop = 5, int cutRight = 2, int cutBottom = 5) { const int rows = image.rows; const int cols = image.cols; cutLeft < 0 ? cutLeft = 0 : cutLeft = cutLeft; cutTop < 0 ? cutTop = 0 : cutTop = cutTop; cutRight < 0 ? cutRight = 0 : cutRight = cutRight; cutBottom < 0 ? cutBottom = 0 : cutBottom = cutBottom; image = image(Rect(cutLeft, cutTop, cols - cutLeft - cutRight, rows - cutTop - cutBottom)); } static void toBinary(Mat& image, int margin, int skipL = 50, int skipT = 50, int skipR = 50, int skipB = 50) { int rows = image.rows; int cols = image.cols; for (int y = skipT; y < rows - skipB; y++) { for (int x = skipL; x < cols - skipR; x++) { if (image.at<uchar>(y, x) < margin) image.at<uchar>(y, x) = 255; else image.at<uchar>(y, x) = 0; } } } static void removeBlackBackground(Mat& image) { int margin = 5; //up int up = 0; while (margin > advRow(image, up, 1) && image.rows / 4 > up) up++; //bottom int bottom = 0; while (margin > advRow(image, image.rows - bottom - 1, 1) && image.rows / 4 > up) bottom++; cutImage(image, 0, up, 0, bottom); //right int right = 0; while (margin > advCol(image, image.cols - right - 1, 1) && image.cols / 4 > right) right++; //left int left = 0; while (margin > advCol(image, left, 1) && image.cols / 4 > left) left++; cutImage(image, left, 0, right, 0); } static void getCenterWeightImage(Mat& image) { Mat affine_matrix = Mat::eye(2, 3, 0); // affine_matrix[0][2]: *(((float*)(affine_matrix.data)) + 2) = getXCenterWeight(image); // affine_matrix [1][2]: *(((float*)(affine_matrix.data)) + 5) = getYCenterWeight(image); // Apply transformation warpAffine(img, result_img, affine_matrix, img.size()); imshow("Image", img); imshow("Result", result_img); } static double getXCenterWeight(Mat& image) { Moments m = moments(image); return m.m10 / m.m00; } static double getYCenterWeight(Mat& image) { Moments m = moments(image); return m.m01 / m.m00; } static void autoRotate(Mat& image, int skip) { Mat tmp = image.clone(); Mat tmpC; erode(tmp, 0, 1); int y = skip; int x = tmp.cols / 2; while (!(y < image.rows && image.at<uchar>(y, x) > 0 && image.at<uchar>(y, x + 1) > 0 && image.at<uchar>(y + 1, x) > 0)) { y++; } double begin = -1, end = 1, precision = 0.2; unsigned long sum = 0; double v = begin, tmpSum = 0; for (double a = begin; a <= end; a += precision) { tmpC = tmp.clone(); rotate(tmpC, a); tmpSum = sumRow(tmpC, y, 5); if (tmpSum > sum) { sum = tmpSum; v = a; } } } };
[ "krzysztof.kozubek135@gmail.com" ]
krzysztof.kozubek135@gmail.com
230a03d518fe169f2fe7fe925a384ce41e117ee5
0dca3325c194509a48d0c4056909175d6c29f7bc
/sae/include/alibabacloud/sae/model/DescribeNamespacesRequest.h
750c13577aef1a4c7f10053cf23be165355101b0
[ "Apache-2.0" ]
permissive
dingshiyu/aliyun-openapi-cpp-sdk
3eebd9149c2e6a2b835aba9d746ef9e6bef9ad62
4edd799a79f9b94330d5705bb0789105b6d0bb44
refs/heads/master
2023-07-31T10:11:20.446221
2021-09-26T10:08:42
2021-09-26T10:08:42
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,395
h
/* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef ALIBABACLOUD_SAE_MODEL_DESCRIBENAMESPACESREQUEST_H_ #define ALIBABACLOUD_SAE_MODEL_DESCRIBENAMESPACESREQUEST_H_ #include <string> #include <vector> #include <alibabacloud/core/RoaServiceRequest.h> #include <alibabacloud/sae/SaeExport.h> namespace AlibabaCloud { namespace Sae { namespace Model { class ALIBABACLOUD_SAE_EXPORT DescribeNamespacesRequest : public RoaServiceRequest { public: DescribeNamespacesRequest(); ~DescribeNamespacesRequest(); int getPageSize()const; void setPageSize(int pageSize); int getCurrentPage()const; void setCurrentPage(int currentPage); private: int pageSize_; int currentPage_; }; } } } #endif // !ALIBABACLOUD_SAE_MODEL_DESCRIBENAMESPACESREQUEST_H_
[ "sdk-team@alibabacloud.com" ]
sdk-team@alibabacloud.com
265304ad22dd240967442039b081f510df363422
de29bcc3c8d7c5e2ec90a31b2ad8ba3106e9d3a1
/47_majority-number-ii/majority-number-ii.cpp
9f3a91a1576e7c2fec535cc0d9c4af64b2dd822e
[ "MIT" ]
permissive
litaotju/lintcode
a16cead891e7bded1bbe54c5d8384fc59cfd35ae
d614bfd33d5a772325f62f83edbc56e07bbdab6c
refs/heads/master
2020-04-03T10:04:57.582151
2016-07-30T01:21:18
2016-07-30T01:21:18
64,519,403
2
0
null
null
null
null
UTF-8
C++
false
false
848
cpp
/* @Copyright:LintCode @Author: taoleetju @Problem: http://www.lintcode.com/problem/majority-number-ii @Language: C++ @Datetime: 16-06-06 03:12 */ class Solution { public: /** * @param nums: A list of integers * @return: The majority number occurs more than 1/3. */ int majorityNumber(vector<int> nums) { if(nums.empty()) return 0; int major; int length = nums.size(); sort(nums.begin(), nums.end()); int start = 0; int cnt = 0; for(int i =0; i<length; i++){ if(nums[i] == nums[start]){ if(++cnt * 3 > length){ return nums[i]; } }else{ start = i; cnt = 1; } } return -1; } };
[ "litaotju@live.cn" ]
litaotju@live.cn
690e8e98824120adc29a66c099cb075f3702d371
b495d715dc9fe3a2ac6bec5da44d6e83fec6c142
/diversity.cpp
60fe43ceba54a265f7fa929ef7c68f20b9cf6df1
[]
no_license
shobhitr97/Codes
f68be601c7b974c335722cdb8dc7f06e6c007e83
8d4deb2bb7f27e6f9af0190d5e558ff20f64a495
refs/heads/master
2020-04-15T13:35:59.973444
2018-02-06T18:24:33
2018-02-06T18:24:33
58,259,950
0
0
null
null
null
null
UTF-8
C++
false
false
992
cpp
#include<iostream> #include<vector> #include<algorithm> #include<utility> #include<stdio.h> #include<set> #include<map> #include<cmath> #include<queue> #include<stack> using namespace std; typedef long long int ll; typedef vector<int> vi; typedef vector<ll> vll; typedef pair<int, int> ii; typedef vector<ii> vii; typedef pair<int, ii> iii; typedef vector<iii> viii; typedef set<int> si; #define pb push_back #define mp make_pair #define fori(a, b) for(int i=a ; i<b ; i++ ) #define forn(i, a, b) for(int i=a ; i<b ; i++ ) #define forin(a, b) for(int i=a ; i>=b ; i-- ) #define fornn(i, a, b) for(int i=a ; i>=b ; i-- ) #define fi first #define se second #define INF 1000000007 int main(){ string s; int k, len; cin>>s; cin>>k; int arr[26], cnt; len=s.length(); if(k>len){ cout<<"impossible\n"; return 0; } fori(0, 26) arr[i]=0; fori(0, len){ arr[s[i]-'a']++; } cnt=0; fori(0, 26){ if(arr[i]) cnt++; } if(cnt>=k) cout<<"0\n"; else cout<<(k-cnt)<<"\n"; return 0; }
[ "shobhitr97@gmail.com" ]
shobhitr97@gmail.com
ada260ac43b884809c181c89d15d176c41c6e08c
033c8459a6caa24c0dcaba455dcf907a5771d2e8
/construction/image_viewer/mainwindow.h
6f97ed97b486ed0b83ba2fe7f3b91f877cef643f
[ "Apache-2.0" ]
permissive
bradfordelliott/qtwidgets
7d1c53dbc95d7ebfbc49c0f5227b391bfbcea31a
53406a0ff51c4b9b307af89b3e8821a3af8730fe
refs/heads/master
2020-12-24T13:28:45.091060
2015-04-14T13:01:06
2015-04-14T13:01:06
33,931,721
0
0
null
null
null
null
UTF-8
C++
false
false
343
h
#ifndef MAINWINDOW_H #define MAINWINDOW_H #include <QMainWindow> namespace Ui { class MainWindow; } class MainWindow : public QMainWindow { Q_OBJECT public: explicit MainWindow(QWidget *parent = 0); ~MainWindow(); private slots: void on_show_clicked(); private: Ui::MainWindow *ui; }; #endif // MAINWINDOW_H
[ "brad_e@hotmail.com" ]
brad_e@hotmail.com
76d1db44743cb17c77f1c4440c47e0c0b82cf702
b9e07e67952952626f72227064696ae80cb331bf
/src/ForestPrediction.cpp
52c796e29f9b304cd37c0eeb2aa114fa61d3954f
[]
no_license
cutrain/random-forest
8a0e0d60ded947a6cb3c8b5c4faa315f3fa024a6
e50bbb32a3489cd19637c25c47f31493ec028908
refs/heads/master
2023-04-16T08:54:44.076770
2021-05-03T05:52:49
2021-05-03T05:52:49
350,593,297
0
0
null
null
null
null
UTF-8
C++
false
false
32
cpp
#include "ForestPrediction.h"
[ "zhuhuichenecho@outlook.com" ]
zhuhuichenecho@outlook.com
997e8f452363ded03e26d1735a071279d8bffa25
f1f24d86d2ddd7a7b265ff53a8e3b7154a29176d
/rome/examples/argus/helloWorld/include/tabs/HWTFrench.h
6fb7c563caf42fdd75052fdf245f03f274a49cd1
[]
no_license
cjpl/rome
0409725419291c48cc58dd46268dc20174f73040
d23af1df807144e96e6df630e4ead1169c24ebe3
refs/heads/master
2021-01-16T20:25:22.140962
2013-07-17T09:14:59
2013-07-17T09:14:59
3,942,387
1
1
null
null
null
null
UTF-8
C++
false
false
1,655
h
// Author: Ryu Sawada #ifndef HWTFrench_H #define HWTFrench_H //////////////////////////////////////////////////////////////////////////////// // // // HWTFrench // // // // // //////////////////////////////////////////////////////////////////////////////// /* This header was generated by ROMEBuilder. Manual changes above the * * following line will be lost next time ROMEBuilder is executed. */ /////////////////////////////////////----/////////////////////////////////////// #include "include/generated/HWTFrench_Base.h" #include <TCanvas.h> #include <TRootEmbeddedCanvas.h> #include <TGLayout.h> #include <TLatex.h> class HWFrench; class HWTFrench : public HWTFrench_Base { protected: TGVerticalFrame *fVert; TRootEmbeddedCanvas *fCanvas; TLatex *fText; private: HWTFrench(const HWTFrench &c); // not implemented HWTFrench &operator=(const HWTFrench &c); // not implemented public: HWTFrench(HWWindow *window):HWTFrench_Base(window) ,fVert(0) ,fCanvas(0) ,fText(0) { } virtual ~HWTFrench() { delete fVert; delete fCanvas; delete fText; } void Init(); void EndInit(); void MenuClicked(TGPopupMenu *menu,Long_t param); void TabSelected(); void TabUnSelected(); void EventHandler(); ClassDef(HWTFrench,1) }; #endif // HWTFrench_H
[ "sawada@306b0a18-5003-0410-92f3-cc1c673a7936" ]
sawada@306b0a18-5003-0410-92f3-cc1c673a7936
89656ee72687e87cc06cb3830d698f5444cc6566
0e0a2f0e165467fb68be4deecafc374fa4b91273
/src/NCClientDummy.cpp
4dd570a61deee10396ec3c63725f94346c168be2
[]
no_license
dwkimm01/nclone
b65cc8531752b5a860bc1785a77aff54084badda
ad6b0a2c886db3a424c3c5d284266ee6989d7106
refs/heads/master
2021-01-15T13:00:07.718753
2013-11-18T05:26:55
2013-11-18T05:26:55
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,748
cpp
/* * NCClientDummy.cpp * * Created on: Aug 25, 2013 * Author: dwkimm01 */ #include "NCClientDummy.h" #include "NCColor.h" namespace ncpp { namespace ncclientdummy { NCClientDummy::NCClientDummy ( const std::string &name , std::function<void(ncclientif::NCClientIf*, const String&, const NCString&, bool)> msgReceivedCB ) : p_name(name) , p_buddyAtHost("Dummy@localhost") , p_msgReceivedCB(msgReceivedCB) { p_msgReceivedCB(this, p_buddyAtHost, NCString("Initialized", nccolor::NCColor::CHAT_NORMAL), true); } NCClientDummy::~NCClientDummy() {} ncclientif::NCClientIf::String NCClientDummy::getName() { return p_name; } void NCClientDummy::connect() {} void NCClientDummy::disconnect() {} void NCClientDummy::sendTyping(const String &who, const String &msg, bool done) {} void NCClientDummy::msgSend(const String &who, const String &msg) { p_msgReceivedCB(this, p_buddyAtHost, NCString(std::string("Echo: ") + msg, nccolor::NCColor::CHAT_NORMAL), true); } void NCClientDummy::addBuddy(const String &who, const String &group) {} void NCClientDummy::removeBuddy(const String &who, const String &group) {} void NCClientDummy::setAway(const String &state, const String &msg) {} void NCClientDummy::connectionProgress(const String &text, const int step, const int count) {} void NCClientDummy::connected() {} void NCClientDummy::disconnected() {} void NCClientDummy::connectionNotice(const String &text) {} void NCClientDummy::disconnectNotice(const String &text, const int reason) {} void NCClientDummy::contactTyping() {} void NCClientDummy::msgReceived(const String &who, const String &msg) {} void NCClientDummy::debugLog(const String &level, const String &logLine) {} } // namespace ncclientdummy } // namespace ncpp
[ "davidwkimmel@gmail.com" ]
davidwkimmel@gmail.com
7375a76cef717fc49cf2d7b34daf677b0bace9da
9ea5112eefde79e52775a944e358ae2aad16f4d7
/example/Whishbone/ESL/MasterAgent.h
e07a3f36e705201fdf7148969ec38ddf80b93187
[ "MIT" ]
permissive
ludwig247/SCAM
95d444dbfa881bafadf1af4f32a71087a007d67f
0b5a8f1c57593da40e85d0b8ce6a6cf5616379ca
refs/heads/master
2020-03-11T19:33:49.394065
2019-01-28T11:27:06
2019-01-28T11:27:06
130,211,291
3
0
null
null
null
null
UTF-8
C++
false
false
3,585
h
// // Created by tobias on 09.03.17. // #ifndef PROJECT_MASTERAGENT_H #define PROJECT_MASTERAGENT_H #include "systemc.h" #include "../../Interfaces/Interfaces.h" #include "Compound_Bus.h" #include "../../SingleMasterMultiSlave/ESL/Compound.h" struct MasterAgent : public sc_module { //Sections enum Sections { IDLE, READ, WRITE, WAITING, DONE }; Sections section; Sections nextsection; //CLK master_in<bool> clk; bool clk_pulse; //Communication between Master and Agent blocking_in<bus_req_t> master_to_agent; blocking_out <bus_resp_t> agent_to_master; //Communication on BUS shared_in<slave_signals> bus_to_agent; shared_out<master_signals> agent_to_bus; //Variables bus_req_t agent_to_bus_req; bus_resp_t agent_to_bus_resp; master_signals wb_out; slave_signals wb_in; //Constructor SC_HAS_PROCESS(MasterAgent); MasterAgent(sc_module_name name) : section(IDLE), nextsection(IDLE){ SC_THREAD(fsm); } void fsm() { while (true) { section = nextsection; if (section == IDLE) { // std::cout << this->name() << " - IDLE" << std::endl; this->master_to_agent->read(agent_to_bus_req); if(agent_to_bus_req.trans_type == SINGLE_READ){ nextsection = READ; } else nextsection = WRITE; } if (section == READ) { // std::cout << this->name() << " - READ" << std::endl; wb_out.addr = agent_to_bus_req.addr; wb_out.data = 0; wb_out.we = false; wb_out.cyc = true; wb_out.stb = true; agent_to_bus->set(wb_out); nextsection = WAITING; } if (section == WRITE) { // std::cout << this->name() << " - WRITE " << std::endl; wb_out.addr = agent_to_bus_req.addr; wb_out.data = agent_to_bus_req.data; wb_out.we = true; wb_out.cyc = true; wb_out.stb = true; agent_to_bus->set(wb_out); nextsection = WAITING; } if (section == WAITING) { // std::cout << this->name() << " - WAIT " << std::endl; clk->read(clk_pulse); bus_to_agent->get(wb_in); if(wb_in.ack == true){ agent_to_bus_resp.ack = OK; if(agent_to_bus_req.trans_type == SINGLE_READ ) { agent_to_bus_resp.data = wb_in.data; } if(wb_in.err == true) { agent_to_bus_resp.ack = ERR; } wb_out.addr = 0; wb_out.data = 0; wb_out.we = false; wb_out.cyc = false; wb_out.stb = false; agent_to_bus->set(wb_out); nextsection = DONE; } } if(section == DONE){ // std::cout << this->name() << " - DONE " << std::endl; clk->read(clk_pulse); bus_to_agent->get(wb_in); if(wb_in.ack == false){ agent_to_master->write(agent_to_bus_resp); nextsection = IDLE; } } wait(SC_ZERO_TIME); } } }; #endif //PROJECT_MASTERAGENT_H
[ "ludwig@eit.uni-kl.de" ]
ludwig@eit.uni-kl.de
bf91ad5f5520a0500e51711b69c054b2368f8b33
bb7b61c6579e9ec6af7c4fe5c9338f3489d48f96
/zhbit_19_最短路/POJ 2387.cpp
e6dddb47b2c6d488c28698444fd3dd9751f08f00
[]
no_license
Bei-Luo/zhbit
084a5d00e6bd48e213d2e2e426a3e571b694c2c1
63b619fc2d670e1e8497d074367e4a9367091c90
refs/heads/master
2020-06-21T04:42:04.386641
2019-07-24T12:54:15
2019-07-24T12:54:15
197,346,596
0
0
null
null
null
null
UTF-8
C++
false
false
1,013
cpp
#include <iostream> #include <cstdio> #include <algorithm> #include <string> #include <string.h> #include <vector> #include <set> #include <queue> #include <map> #include <stack> #include <sstream> #include <utility> using namespace std; const int INF = 0x3f3f3f3f; int id[1200][1200]; int dis[1200]; bool vis[1200]; int N, T; int main() { while (cin >> T >> N&&T+N) { memset(id, INF, sizeof(id)); memset(dis, INF, sizeof(dis)); memset(vis, false, sizeof(vis)); for (int i = 0; i < T; ++i) { int a, b, c; cin >> a >> b >> c; if (id[a][b] > c) { id[a][b] = c; id[b][a] = c; } } dis[1] = 0; for (int i = 1; i <= N; ++i) { int minx = INF; int minmark; for (int j = 1; j <= N; ++j) { if (dis[j] <= minx && !vis[j]) { minx = dis[j]; minmark = j; } } vis[minmark] = true; for (int j = 1; j <= N; ++j) { if (!vis[j] && dis[j] > dis[minmark] + id[minmark][j]) dis[j] = dis[minmark] + id[minmark][j]; } } cout << dis[N] << endl; } }
[ "ma651158055@gmail.com" ]
ma651158055@gmail.com
c9c62f0eca9477cff39b2f1d42140f00e3214784
c1ed724117e99f42a5b2a8f74a92e697e1ae6b5c
/boj/17140.cpp
deb94a23356eb7d32d1ff46508ac153abec600cc
[]
no_license
Hee-Jae/Algorithm
73d45913494541d4f38baa2e32259c4e9f50ab0b
a159380ff2a4f7ead2fb625618169b9b32335a17
refs/heads/master
2023-08-15T14:29:55.414276
2021-10-02T08:27:16
2021-10-02T08:27:16
401,086,191
0
0
null
null
null
null
UTF-8
C++
false
false
2,901
cpp
#include <iostream> #include <vector> #include <algorithm> #include <queue> #define pb push_back #define mp make_pair #define st first #define nd second #define lli long long int using namespace std; int A[103][103]={}, freq[101]={}; queue<int> q; vector<pair<int, int> > v; int main(){ ios::sync_with_stdio(0); cin.tie(0); int r,c,k, cnt=0, row=3, col=3, num,fr; int maxi, maxj, vsize; cin >> r >> c >> k; for(int i=1; i<=3; i++) for(int j=1; j<=3; j++) cin >> A[i][j]; if(A[r][c] == k){ cout << 0; return 0; } while(cnt<=100){ if(row>=col){ maxi = 0; maxj = 0; for(int i=1; i<=row; i++){ for(int j=1; j<=col; j++){ if(A[i][j] == 0) continue; if(freq[A[i][j]] == 0) q.push(A[i][j]); freq[A[i][j]]++; } // cout << "qsize : " << q.size() << "\n"; while(!q.empty()){ num = q.front(); fr = freq[num]; v.pb(mp(fr,num)); q.pop(); freq[num] = 0; } // cout << "vsize : " << v.size() << "\n"; sort(v.begin(), v.end()); for(int j=1; j<=100; j++){ A[i][j] = 0; } vsize = v.size(); if(vsize > 50) vsize = 50; for(int j=1; j<=vsize; j++){ A[i][j*2-1] = v[j-1].nd; A[i][j*2] = v[j-1].st; } if(vsize*2 > maxj) maxj = vsize*2; // cout << "vsize : " << v.size() << "\n"; v.clear(); // cout << "vsize : " << v.size() << "\n"; } col = maxj; // for(int i=1; i<=row; i++){ // for(int j=1; j<=col; j++){ // cout << A[i][j] << " "; // } // cout << "\n"; // } // break; } else{ maxi = 0; maxj = 0; for(int i=1; i<=col; i++){ for(int j=1; j<=row; j++){ if(A[j][i] == 0) continue; if(freq[A[j][i]] == 0) q.push(A[j][i]); freq[A[j][i]]++; } while(!q.empty()){ num = q.front(); fr = freq[num]; v.pb(mp(fr,num)); q.pop(); freq[num] = 0; } sort(v.begin(), v.end()); for(int j=1; j<=100; j++){ A[j][i] = 0; } vsize = v.size(); if(vsize > 50) vsize = 50; for(int j=1; j<=vsize; j++){ A[j*2-1][i] = v[j-1].nd; A[j*2][i] = v[j-1].st; } if(vsize*2 > maxi) maxi = vsize*2; v.clear(); } row = maxi; } cnt++; if(A[r][c] == k){ // for(int i=1; i<=row; i++){ // for(int j=1; j<=col; j++){ // cout << A[i][j] << " "; // } // cout << "\n"; // } break; } // for(int i=1; i<=row; i++){ // for(int j=1; j<=col; j++){ // cout << A[i][j] << " "; // } // cout << "\n"; // } } if(cnt > 100) cout << -1; else cout << cnt; }
[ "jhj967878@naver.com" ]
jhj967878@naver.com
8ce7ad960c8a9e9fb450c1102bfacb7ce68b34e5
c17799fde9e3718106f39f37006a118eb8ce5562
/gamefield.h
3043fee2abe977868fc6812b981b9e8fe6cd6626
[]
no_license
KarenMarkosyan/Snake
d11a39a8b376cd122356ce9a63ba94139fe634ad
4a81acb1319253dc7caaac1ed03c1a56a90a6e9c
refs/heads/master
2020-12-24T13:28:27.789729
2015-07-29T19:36:11
2015-07-29T19:36:11
39,369,464
0
0
null
null
null
null
UTF-8
C++
false
false
1,026
h
#ifndef GAMEFIELD_H #define GAMEFIELD_H #include <QWidget> #include <QRect> #include <QDesktopWidget> #include <QMessageBox> namespace Ui { class gameField; } /*! * \brief The gameField class - класс окна игры */ class gameField : public QWidget { Q_OBJECT public: /*! * \brief gameField - создает игры по переданным конфигурациям * \param w - ширина поля * \param h - высота поля * \param s - скорость игры * \param f - заданные препядствия * \param parent - родительский виджет */ explicit gameField(int w, int h, int s, bool **f = 0, QWidget *parent = 0); ~gameField(); private: Ui::gameField *ui; private slots: /*! * \brief closeEvent - перехватчик закрытия окна * \param e - событие закрытия */ void closeEvent(QCloseEvent *e); void mess(QString s); }; #endif // GAMEFIELD_H
[ "priboy34@mail.ru" ]
priboy34@mail.ru
ea34f16c6c5464c2b0c463f6eb6b15e7b91cdaf1
c9611802b6cbd4b109cf0ed95d439396549526d7
/engine/Viewport.h
fff05bd4094893d867a1e2293b45510a014d2de9
[ "Apache-2.0" ]
permissive
tamirgrBGU/EngineForAnimationCourse
d572cedaa2a0ec94534d0fa64739fb384b6a7e6d
749c0498480eccba5dbf6160451404788e16ba18
refs/heads/master
2023-01-14T04:53:19.341252
2022-10-31T12:30:05
2022-10-31T12:30:05
218,048,090
3
33
Apache-2.0
2023-01-03T14:05:19
2019-10-28T13:03:30
C++
UTF-8
C++
false
false
598
h
#pragma once #include <memory> namespace cg3d { class Scene; class Camera; class Visitor; class Viewport : public std::enable_shared_from_this<Viewport> { public: int x, y, width, height; std::shared_ptr<Scene> scene; std::shared_ptr<Camera> camera; std::shared_ptr<Visitor> visitor; // default visitor for drawing Viewport(int x, int y, int width, int height) : x(x), y(y), width(width), height(height) {} void Bind() const; bool IsInside(int _x, int _y) const; void Resize(int oldWidth, int oldHeight, int newWidth, int newHeight); }; } // namespace cg3d
[ "tamirgr@post.bgu.ac.il" ]
tamirgr@post.bgu.ac.il
12e618b13cdf6259c757c6d2c2604ae2aa1a1e93
ded10c52a4602174205b3ad5609319c7691fd9bf
/example5.cpp
1e1eee005162a914160e5315100ff14efb102a40
[]
no_license
Khachuy911/c-language
6faf4eda6b3ff7be6a64185be7473dd9e695f437
ede335608e2a4f5eeb0ec260a0852cb75a5f29d6
refs/heads/master
2023-08-14T21:23:05.507297
2021-09-17T10:17:44
2021-09-17T10:17:44
407,494,110
1
0
null
null
null
null
UTF-8
C++
false
false
548
cpp
#include<stdio.h> int main(){ int luaChon,n; printf("nhap vao thang: "); scanf("%d",&luaChon); switch(luaChon){ case 1 : case 3 : case 7 : case 8 : case 5 : case 10: case 12: printf("thang %d co 31 ngay!",luaChon);break; case 4 : case 6 : case 9 : case 11: printf("thang %d co 30 ngay!",luaChon);break; case 2 :{ printf("nhap nam: "); scanf("%d",&n); if(n%4==0) printf("thang 2 co 29 ngay!"); else printf("thang 2 co 28 ngay!"); break; } default : printf("nhap lai!"); } return 0 ; }
[ "khachuy469@gmail.com" ]
khachuy469@gmail.com
ae32e57c578c5aaddae41c1e162b6881033c7c53
550f984765638953b402592cc6c057151e3256be
/tagger.h
30dbb86dd5610d38f6c32c20449a1b14e1390de1
[]
no_license
BlanceXR/music-tagger
adcb23742d371583ce74a0edd6c94ede3a25e216
bdc92fe4d3efc12fd29aa72a2b8810fdbbe41f81
refs/heads/master
2021-01-15T10:42:56.597803
2013-04-22T13:39:25
2013-04-22T13:39:25
8,130,957
2
1
null
null
null
null
UTF-8
C++
false
false
745
h
#ifndef TAGGER_H #define TAGGER_H #include <string> #include <taglib.h> using namespace std; class tagger { private: static string music_path; static string xml_path; public: tagger(); static int get_xml(); static int fix( string &path ); static int extract_music_xml( string &xmlpath , string &artist , int &duration , string &title , string &mbid ); static int get_more_info( string &mbid ); static string get_title(string &path); static string get_artist(string &path); static string get_album(string &path); static string get_comment(string &path); static string get_genre(string &path); static int get_year(string &path); static int get_track(string &path); }; #endif // TAGGER_H
[ "luzhew@gmail.com" ]
luzhew@gmail.com
555c1232818ad0b3b62e9c8c909381dca6ccf48c
9ff69f2638fe679b9fbb3ac682d356b59c50b068
/code archive/GJ/g007.cpp
5b3b09668d287ba4e5fb261f94e7b49ebd5e3e6d
[ "MIT" ]
permissive
brianbbsu/program
7f7c3d4aacea32ada7f74cf5caffa9931be280c4
c4505f2b8c0b91010e157db914a63c49638516bc
refs/heads/master
2021-05-23T04:53:49.618057
2020-04-18T15:21:10
2020-04-18T15:21:10
81,056,684
4
1
null
null
null
null
UTF-8
C++
false
false
2,055
cpp
//{ #include<iostream> #include<iomanip> #include<cstdio> #include<cstring> #include<string> #include<set> #include<map> #include<vector> #include<algorithm> #include<sstream> #include<cmath> using namespace std; typedef long long ll; typedef double lf; typedef pair<ll,ll> ii; #define REP(i,n) for(ll i=0;i<n;i++) #define REP1(i,n) for(ll i=1;i<=n;i++) #define FILL(i,n) memset(i,n,sizeof i) #define X first #define Y second #define SZ(_a) (int)_a.size() #define ALL(_a) _a.begin(),_a.end() #define pb push_back #ifdef brian #define debug(...) do{\ fprintf(stderr,"%s - %d (%s) = ",__PRETTY_FUNCTION__,__LINE__,#__VA_ARGS__);\ _do(__VA_ARGS__);\ }while(0) template<typename T>void _do(T &&_x){cerr<<_x<<endl;} template<typename T,typename ...S> void _do(T &&_x,S &&..._t){cerr<<_x<<" ,";_do(_t...);} template<typename _a,typename _b> ostream& operator << (ostream &_s,const pair<_a,_b> &_p){return _s<<"("<<_p.X<<","<<_p.Y<<")";} template<typename It> ostream& _OUTC(ostream &_s,It _ita,It _itb) { _s<<"{"; for(It _it=_ita;_it!=_itb;_it++) { _s<<(_it==_ita?"":",")<<*_it; } _s<<"}"; return _s; } template<typename _a> ostream &operator << (ostream &_s,vector<_a> &_c){return _OUTC(_s,ALL(_c));} template<typename _a> ostream &operator << (ostream &_s,set<_a> &_c){return _OUTC(_s,ALL(_c));} template<typename _a,typename _b> ostream &operator << (ostream &_s,map<_a,_b> &_c){return _OUTC(_s,ALL(_c));} template<typename _t> void pary(_t _a,_t _b){_OUTC(cerr,_a,_b);cerr<<endl;} #define IOS() #else #define debug(...) #define pary(...) #define endl '\n' #define IOS() ios_base::sync_with_stdio(0);cin.tie(0); #endif // brian //} const ll MAXn=1e5+5,MAXlg=__lg(MAXn)+2; const ll MOD=1000000007; const ll INF=ll(1e15); ll ct[50]; int main() { IOS(); ll n; while(cin>>n&&n) { FILL(ct,0); REP(i,n) { ll k; cin>>k; REP(j,k) { ll t; cin>>t; ct[t]++; } } cout<<*min_element(ct+1,ct+42)<<endl; } }
[ "brianbb.su@gmail.com" ]
brianbb.su@gmail.com
9a00d503c1023aefa434931f438d2eda98242ac1
a7b78ab632b77d1ed6b7e1fa46c33eda7a523961
/src/frovedis/ml/dnn/tiny_dnn/core/kernels/lstm_cell_op_internal.h
c693966907a36a6e2c83d666d3be7eda4ecee489
[ "BSD-3-Clause", "BSD-2-Clause" ]
permissive
frovedis/frovedis
80b830da4f3374891f3646a2298d71a3f42a1b2d
875ae298dfa84ee9815f53db5bf7a8b76a379a6f
refs/heads/master
2023-05-12T20:06:44.165117
2023-04-29T08:30:36
2023-04-29T08:30:36
138,103,263
68
13
BSD-2-Clause
2018-12-20T10:46:53
2018-06-21T01:17:51
C++
UTF-8
C++
false
false
12,549
h
/* Copyright (c) 2013, Taiga Nomi and the respective contributors All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. */ #pragma once #include "tiny_dnn/core/params/lstm_cell_params.h" namespace tiny_dnn { namespace kernels { inline void lstm_cell_op_internal(const tensor_t &x, const tensor_t &h_prev, const tensor_t &c_prev, const vec_t &W_x2i, const vec_t &W_x2f, const vec_t &W_x2c, const vec_t &W_x2o, const vec_t &W_h2i, const vec_t &W_h2f, const vec_t &W_h2c, const vec_t &W_h2o, const vec_t &b_2i, const vec_t &b_2f, const vec_t &b_2c, const vec_t &b_2o, tensor_t &out_data, tensor_t &h_next, tensor_t &c_next, tensor_t &i, tensor_t &f, tensor_t &z, tensor_t &c, const core::lstm_cell_params &params, const bool layer_parallelize) { for_(layer_parallelize, 0u, x.size(), [&](const blocked_range &r) { const size_t in_size = params.in_size_; const size_t out_size = params.out_size_; auto tanh = params.tanh_; auto sigmoid = params.sigmoid_; const bool has_bias = params.has_bias_; for (size_t sample = r.begin(); sample < r.end(); sample++) { vec_t &i_ = i[sample]; vec_t &f_ = f[sample]; vec_t &z_ = z[sample]; vec_t &c_ = c[sample]; const vec_t &x_ = x[sample]; const vec_t &h_prev_ = h_prev[sample]; const vec_t &c_prev_ = c_prev[sample]; vec_t &o_ = out_data[sample]; vec_t &h_next_ = h_next[sample]; vec_t &c_next_ = c_next[sample]; for (size_t o = 0; o < out_size; o++) { float_t i_tmp = 0; float_t f_tmp = 0; float_t z_tmp = 0; float_t o_tmp = 0; for (size_t i = 0; i < in_size; i++) { i_tmp += W_x2i[i * out_size + o] * x_[i]; f_tmp += W_x2f[i * out_size + o] * x_[i]; z_tmp += W_x2c[i * out_size + o] * x_[i]; o_tmp += W_x2o[i * out_size + o] * x_[i]; } for (size_t o_2 = 0; o_2 < out_size; o_2++) { i_tmp += W_h2i[o_2 * out_size + o] * h_prev_[o_2]; f_tmp += W_h2f[o_2 * out_size + o] * h_prev_[o_2]; z_tmp += W_h2c[o_2 * out_size + o] * h_prev_[o_2]; o_tmp += W_h2o[o_2 * out_size + o] * h_prev_[o_2]; } if (has_bias) { i_tmp += b_2i[o]; f_tmp += b_2f[o]; z_tmp += b_2c[o]; o_tmp += b_2o[o]; } i_[o] = i_tmp; f_[o] = f_tmp; z_[o] = z_tmp; o_[o] = o_tmp; } sigmoid->forward_activation(i_, i_); sigmoid->forward_activation(f_, f_); sigmoid->forward_activation(o_, o_); tanh->forward_activation(z_, z_); for (size_t o = 0; o < out_size; o++) { c_next_[o] = f_[o] * c_prev_[o] + i_[o] * z_[o]; } tanh->forward_activation(c_next_, c_); for (size_t o = 0; o < out_size; o++) { h_next_[o] = o_[o] * c_[o]; } } }, 0u); // for_i } inline void lstm_cell_op_internal(const tensor_t &x, const tensor_t &h_prev, const tensor_t &c_prev, const vec_t &W_x2i, const vec_t &W_x2f, const vec_t &W_x2c, const vec_t &W_x2o, const vec_t &W_h2i, const vec_t &W_h2f, const vec_t &W_h2c, const vec_t &W_h2o, tensor_t &dW_x2i, tensor_t &dW_x2f, tensor_t &dW_x2c, tensor_t &dW_x2o, tensor_t &dW_h2i, tensor_t &dW_h2f, tensor_t &dW_h2c, tensor_t &dW_h2o, tensor_t &db_2i, tensor_t &db_2f, tensor_t &db_2c, tensor_t &db_2o, const tensor_t d_o, const tensor_t d_h_next, const tensor_t d_c_next, tensor_t &d_x_prev, tensor_t &d_h_prev, tensor_t &d_c_prev, const tensor_t o, const tensor_t i, const tensor_t f, const tensor_t z, const tensor_t c, const core::lstm_cell_params &params, const bool layer_parallelize) { for_( layer_parallelize, 0u, x.size(), [&](const blocked_range &r) { const size_t in_size = params.in_size_; const size_t out_size = params.out_size_; auto tanh = params.tanh_; auto sigmoid = params.sigmoid_; const bool has_bias = params.has_bias_; for (size_t sample = r.begin(); sample < r.end(); sample++) { const vec_t &d_h_next_ = d_h_next[sample]; const vec_t &d_o_ = d_o[sample]; const vec_t &x_ = x[sample]; const vec_t &h_prev_ = h_prev[sample]; const vec_t &c_prev_ = c_prev[sample]; const vec_t &o_ = o[sample]; const vec_t &i_ = i[sample]; const vec_t &c_ = c[sample]; const vec_t &f_ = f[sample]; const vec_t &z_ = z[sample]; vec_t &dW_x2i_ = dW_x2i[sample]; vec_t &dW_h2i_ = dW_h2i[sample]; vec_t &dW_x2f_ = dW_x2f[sample]; vec_t &dW_h2f_ = dW_h2f[sample]; vec_t &dW_x2c_ = dW_x2c[sample]; vec_t &dW_h2c_ = dW_h2c[sample]; vec_t &dW_x2o_ = dW_x2o[sample]; vec_t &dW_h2o_ = dW_h2o[sample]; vec_t &db_2i_ = db_2i[sample]; vec_t &db_2f_ = db_2f[sample]; vec_t &db_2c_ = db_2c[sample]; vec_t &db_2o_ = db_2o[sample]; vec_t aux1(out_size); vec_t aux2(out_size); /** propagate deltas from o(t) to the inputs **/ vec_t &d_x_prev_ = d_x_prev[sample]; vec_t &d_h_prev_ = d_h_prev[sample]; // aux1 = do(t) + dh(t) / do(t) for (size_t o = 0; o < out_size; o++) { aux1[o] = d_o_[o] + d_h_next_[o] * c_[o]; // dh - + -> do } sigmoid->backward_activation(o_, o_, aux1, aux1); // dW2o for (size_t i = 0; i < in_size; i++) { vectorize::muladd(&aux1[0], x_[i], out_size, &dW_x2o_[i * out_size]); } for (size_t o = 0; o < out_size; o++) { vectorize::muladd(&aux1[0], h_prev_[o], out_size, &dW_h2o_[o * out_size]); } if (has_bias) { for (size_t o = 0; o < out_size; o++) { db_2o_[o] = aux1[o]; } } // dh->dx for (size_t i = 0; i < in_size; i++) { d_x_prev_[i] += vectorize::dot(&W_x2o[i * out_size], &aux1[0], out_size); } // dh(t)->dh(t-1) for (size_t o = 0; o < out_size; o++) { d_h_prev_[o] += vectorize::dot(&W_h2o[o * out_size], &aux1[0], out_size); } /** propagate deltas from h(t) to c(t) **/ // aux1 = d/dc o(t)tanh(c(t)) for (size_t o = 0; o < out_size; o++) { aux1[o] = d_h_next_[o] * o_[o]; } // aux1 = dc(t) + dh(t) / dc(t) tanh->backward_activation(c_, c_, aux1, aux1); /** propagate deltas from c(t) to i(t) & inputs [x | h | c](t-1) **/ const vec_t &d_c_next_ = d_c_next[sample]; vec_t &d_c_prev_ = d_c_prev[sample]; for (size_t o = 0; o < out_size; o++) { aux1[o] += d_c_next_[o]; // error coming from c(t) aux2[o] = aux1[o] * z_[o]; d_c_prev_[o] = aux1[o] * f_[o]; // dc(t-1) } // i to input; aux2 = di sigmoid->backward_activation(i_, i_, aux2, aux2); // dW2i for (size_t i = 0; i < in_size; i++) { vectorize::muladd(&aux2[0], x_[i], out_size, &dW_x2i_[i * out_size]); } for (size_t o = 0; o < out_size; o++) { vectorize::muladd(&aux2[0], h_prev_[o], out_size, &dW_h2i_[o * out_size]); } if (has_bias) { for (size_t o = 0; o < out_size; o++) { db_2i_[o] = aux2[o]; } } // di->dx input for (size_t i = 0; i < in_size; i++) { d_x_prev_[i] += vectorize::dot(&W_x2i[i * out_size], &aux2[0], out_size); } // di->dh(t-1) for (size_t o = 0; o < out_size; o++) { d_h_prev_[o] += vectorize::dot(&W_h2i[o * out_size], &aux2[0], out_size); } // aux2 can be reused from here /** propagate deltas from c(t) to z & inputs **/ for (size_t o = 0; o < out_size; o++) { aux2[o] = aux1[o] * i_[o]; } // z to input; aux2 = dz tanh->backward_activation(z_, z_, aux2, aux2); // dW2c for (size_t i = 0; i < in_size; i++) { vectorize::muladd(&aux2[0], x_[i], out_size, &dW_x2c_[i * out_size]); } for (size_t o = 0; o < out_size; o++) { vectorize::muladd(&aux2[0], h_prev_[o], out_size, &dW_h2c_[o * out_size]); } if (has_bias) { for (size_t o = 0; o < out_size; o++) { db_2c_[o] = aux2[o]; } } // dz->dx input for (size_t i = 0; i < in_size; i++) { d_x_prev_[i] += vectorize::dot(&W_x2c[i * out_size], &aux2[0], out_size); } // dz->dh(t-1) for (size_t o = 0; o < out_size; o++) { d_h_prev_[o] += vectorize::dot(&W_h2c[o * out_size], &aux2[0], out_size); } // Note:: an aux3 can be used to merge these two blocks to reduce // the "for" overhead at the expense of memory. // aux2 can be reused from here /** propagate deltas from f(t) to inputs **/ for (size_t o = 0; o < out_size; o++) { aux2[o] = aux1[o] * c_prev_[o]; } sigmoid->backward_activation(f_, f_, aux2, aux2); // dW2f for (size_t i = 0; i < in_size; i++) { vectorize::muladd(&aux2[0], x_[i], out_size, &dW_x2f_[i * out_size]); } for (size_t o = 0; o < out_size; o++) { vectorize::muladd(&aux2[0], h_prev_[o], out_size, &dW_h2f_[o * out_size]); } if (has_bias) { for (size_t o = 0; o < out_size; o++) { db_2f_[o] = aux2[o]; } } // d -> input for (size_t i = 0; i < in_size; i++) { d_x_prev_[i] += vectorize::dot(&W_x2f[i * out_size], &aux2[0], out_size); } for (size_t o = 0; o < out_size; o++) { d_h_prev_[o] += vectorize::dot(&W_h2f[o * out_size], &aux2[0], out_size); } } }, 0u); // for_i } } // namespace kernels } // namespace tiny_dnn
[ "t-araki@dc.jp.nec.com" ]
t-araki@dc.jp.nec.com
27dcdef83219ff26b695984ded9447224f537576
859e43a8b92c18f94ca43b443740f67b1edda239
/openvino-samples/object_detection_sample_ssd/main.cpp
32e41e78c1e0b6fa90a77ef7ff008a09df84f33f
[ "Apache-2.0" ]
permissive
linxie47/Sandbox
cf256297f4cf0f939ac3328b18387d43961c9d08
e75af525937c3ffb69c7c3b85b7f8603ba5b7dfb
refs/heads/master
2020-04-23T15:13:28.324255
2019-10-15T09:16:29
2019-10-15T09:16:29
171,257,752
2
4
Apache-2.0
2019-07-04T07:33:00
2019-02-18T09:52:35
C++
UTF-8
C++
false
false
18,152
cpp
// Copyright (C) 2018-2019 Intel Corporation // SPDX-License-Identifier: Apache-2.0 // #include <gflags/gflags.h> #include <functional> #include <iostream> #include <fstream> #include <random> #include <string> #include <memory> #include <vector> #include <time.h> #include <limits> #include <chrono> #include <algorithm> #include <format_reader_ptr.h> #include <inference_engine.hpp> #include <ext_list.hpp> #include <samples/common.hpp> #include <samples/slog.hpp> #include <samples/args_helper.hpp> #include "object_detection_sample_ssd.h" using namespace InferenceEngine; ConsoleErrorListener error_listener; bool ParseAndCheckCommandLine(int argc, char *argv[]) { // ---------------------------Parsing and validation of input args-------------------------------------- gflags::ParseCommandLineNonHelpFlags(&argc, &argv, true); if (FLAGS_h) { showUsage(); return false; } slog::info << "Parsing input parameters" << slog::endl; if (FLAGS_ni < 1) { throw std::logic_error("Parameter -ni should be greater than 0 (default: 1)"); } if (FLAGS_i.empty()) { throw std::logic_error("Parameter -i is not set"); } if (FLAGS_m.empty()) { throw std::logic_error("Parameter -m is not set"); } return true; } /** * \brief The entry point for the Inference Engine object_detection sample application * \file object_detection_sample_ssd/main.cpp * \example object_detection_sample_ssd/main.cpp */ int main(int argc, char *argv[]) { try { /** This sample covers certain topology and cannot be generalized for any object detection one **/ slog::info << "InferenceEngine: " << GetInferenceEngineVersion() << "\n"; // --------------------------- 1. Parsing and validation of input args --------------------------------- if (!ParseAndCheckCommandLine(argc, argv)) { return 0; } // ----------------------------------------------------------------------------------------------------- // --------------------------- 2. Read input ----------------------------------------------------------- /** This vector stores paths to the processed images **/ std::vector<std::string> images; parseInputFilesArguments(images); if (images.empty()) throw std::logic_error("No suitable images were found"); // ----------------------------------------------------------------------------------------------------- // --------------------------- 3. Load Plugin for inference engine ------------------------------------- slog::info << "Loading plugin" << slog::endl; InferencePlugin plugin = PluginDispatcher({ FLAGS_pp }).getPluginByDevice(FLAGS_d); if (FLAGS_p_msg) { static_cast<InferenceEngine::InferenceEnginePluginPtr>(plugin)->SetLogCallback(error_listener); } /*If CPU device, load default library with extensions that comes with the product*/ if (FLAGS_d.find("CPU") != std::string::npos) { /** * cpu_extensions library is compiled from "extension" folder containing * custom MKLDNNPlugin layer implementations. These layers are not supported * by mkldnn, but they can be useful for inferring custom topologies. **/ plugin.AddExtension(std::make_shared<Extensions::Cpu::CpuExtensions>()); } if (!FLAGS_l.empty()) { // CPU(MKLDNN) extensions are loaded as a shared library and passed as a pointer to base extension IExtensionPtr extension_ptr = make_so_pointer<IExtension>(FLAGS_l); plugin.AddExtension(extension_ptr); slog::info << "CPU Extension loaded: " << FLAGS_l << slog::endl; } if (!FLAGS_c.empty()) { // clDNN Extensions are loaded from an .xml description and OpenCL kernel files plugin.SetConfig({ { PluginConfigParams::KEY_CONFIG_FILE, FLAGS_c } }); slog::info << "GPU Extension loaded: " << FLAGS_c << slog::endl; } /** Setting plugin parameter for per layer metrics **/ if (FLAGS_pc) { plugin.SetConfig({ { PluginConfigParams::KEY_PERF_COUNT, PluginConfigParams::YES } }); } /** Printing plugin version **/ printPluginVersion(plugin, std::cout); // ----------------------------------------------------------------------------------------------------- // --------------------------- 4. Read IR Generated by ModelOptimizer (.xml and .bin files) ------------ std::string binFileName = fileNameNoExt(FLAGS_m) + ".bin"; slog::info << "Loading network files:" "\n\t" << FLAGS_m << "\n\t" << binFileName << slog::endl; CNNNetReader networkReader; /** Read network model **/ networkReader.ReadNetwork(FLAGS_m); /** Extract model name and load weights **/ networkReader.ReadWeights(binFileName); CNNNetwork network = networkReader.getNetwork(); // ----------------------------------------------------------------------------------------------------- // --------------------------- 5. Prepare input blobs -------------------------------------------------- slog::info << "Preparing input blobs" << slog::endl; /** Taking information about all topology inputs **/ InputsDataMap inputsInfo(network.getInputsInfo()); /** SSD network has one input and one output **/ if (inputsInfo.size() != 1 && inputsInfo.size() != 2) throw std::logic_error("Sample supports topologies only with 1 or 2 inputs"); /** * Some networks have SSD-like output format (ending with DetectionOutput layer), but * having 2 inputs as Faster-RCNN: one for image and one for "image info". * * Although object_datection_sample_ssd's main task is to support clean SSD, it could score * the networks with two inputs as well. For such networks imInfoInputName will contain the "second" input name. */ std::string imageInputName, imInfoInputName; InputInfo::Ptr inputInfo = nullptr; SizeVector inputImageDims; /** Stores input image **/ /** Iterating over all input blobs **/ for (auto & item : inputsInfo) { /** Working with first input tensor that stores image **/ if (item.second->getInputData()->getTensorDesc().getDims().size() == 4) { imageInputName = item.first; inputInfo = item.second; slog::info << "Batch size is " << std::to_string(networkReader.getNetwork().getBatchSize()) << slog::endl; /** Creating first input blob **/ Precision inputPrecision = Precision::U8; item.second->setPrecision(inputPrecision); } else if (item.second->getInputData()->getTensorDesc().getDims().size() == 2) { imInfoInputName = item.first; Precision inputPrecision = Precision::FP32; item.second->setPrecision(inputPrecision); if ((item.second->getTensorDesc().getDims()[1] != 3 && item.second->getTensorDesc().getDims()[1] != 6)) { throw std::logic_error("Invalid input info. Should be 3 or 6 values length"); } } } if (inputInfo == nullptr) { inputInfo = inputsInfo.begin()->second; } // ----------------------------------------------------------------------------------------------------- // --------------------------- 6. Prepare output blobs ------------------------------------------------- slog::info << "Preparing output blobs" << slog::endl; OutputsDataMap outputsInfo(network.getOutputsInfo()); std::string outputName; DataPtr outputInfo; for (const auto& out : outputsInfo) { if (out.second->creatorLayer.lock()->type == "DetectionOutput") { outputName = out.first; outputInfo = out.second; } } if (outputInfo == nullptr) { throw std::logic_error("Can't find a DetectionOutput layer in the topology"); } const SizeVector outputDims = outputInfo->getTensorDesc().getDims(); const int maxProposalCount = outputDims[2]; const int objectSize = outputDims[3]; if (objectSize != 7) { throw std::logic_error("Output item should have 7 as a last dimension"); } if (outputDims.size() != 4) { throw std::logic_error("Incorrect output dimensions for SSD model"); } /** Set the precision of output data provided by the user, should be called before load of the network to the plugin **/ outputInfo->setPrecision(Precision::FP32); // ----------------------------------------------------------------------------------------------------- // --------------------------- 7. Loading model to the plugin ------------------------------------------ slog::info << "Loading model to the plugin" << slog::endl; ExecutableNetwork executable_network = plugin.LoadNetwork(network, {}); // ----------------------------------------------------------------------------------------------------- // --------------------------- 8. Create infer request ------------------------------------------------- InferRequest infer_request = executable_network.CreateInferRequest(); // ----------------------------------------------------------------------------------------------------- // --------------------------- 9. Prepare input -------------------------------------------------------- /** Collect images data ptrs **/ std::vector<std::shared_ptr<unsigned char>> imagesData, originalImagesData; std::vector<size_t> imageWidths, imageHeights; for (auto & i : images) { FormatReader::ReaderPtr reader(i.c_str()); if (reader.get() == nullptr) { slog::warn << "Image " + i + " cannot be read!" << slog::endl; continue; } /** Store image data **/ std::shared_ptr<unsigned char> originalData(reader->getData()); std::shared_ptr<unsigned char> data(reader->getData(inputInfo->getTensorDesc().getDims()[3], inputInfo->getTensorDesc().getDims()[2])); if (data.get() != nullptr) { originalImagesData.push_back(originalData); imagesData.push_back(data); imageWidths.push_back(reader->width()); imageHeights.push_back(reader->height()); } } if (imagesData.empty()) throw std::logic_error("Valid input images were not found!"); size_t batchSize = network.getBatchSize(); slog::info << "Batch size is " << std::to_string(batchSize) << slog::endl; if (batchSize != imagesData.size()) { slog::warn << "Number of images " + std::to_string(imagesData.size()) + \ " doesn't match batch size " + std::to_string(batchSize) << slog::endl; batchSize = std::min(batchSize, imagesData.size()); slog::warn << "Number of images to be processed is "<< std::to_string(batchSize) << slog::endl; } /** Creating input blob **/ Blob::Ptr imageInput = infer_request.GetBlob(imageInputName); /** Filling input tensor with images. First b channel, then g and r channels **/ size_t num_channels = imageInput->getTensorDesc().getDims()[1]; size_t image_size = imageInput->getTensorDesc().getDims()[3] * imageInput->getTensorDesc().getDims()[2]; unsigned char* data = static_cast<unsigned char*>(imageInput->buffer()); /** Iterate over all input images **/ for (size_t image_id = 0; image_id < std::min(imagesData.size(), batchSize); ++image_id) { /** Iterate over all pixel in image (b,g,r) **/ for (size_t pid = 0; pid < image_size; pid++) { /** Iterate over all channels **/ for (size_t ch = 0; ch < num_channels; ++ch) { /** [images stride + channels stride + pixel id ] all in bytes **/ data[image_id * image_size * num_channels + ch * image_size + pid] = imagesData.at(image_id).get()[pid*num_channels + ch]; } } } if (imInfoInputName != "") { Blob::Ptr input2 = infer_request.GetBlob(imInfoInputName); auto imInfoDim = inputsInfo.find(imInfoInputName)->second->getTensorDesc().getDims()[1]; /** Fill input tensor with values **/ float *p = input2->buffer().as<PrecisionTrait<Precision::FP32>::value_type*>(); for (size_t image_id = 0; image_id < std::min(imagesData.size(), batchSize); ++image_id) { p[image_id * imInfoDim + 0] = static_cast<float>(inputsInfo[imageInputName]->getTensorDesc().getDims()[2]); p[image_id * imInfoDim + 1] = static_cast<float>(inputsInfo[imageInputName]->getTensorDesc().getDims()[3]); for (size_t k = 2; k < imInfoDim; k++) { p[image_id * imInfoDim + k] = 1.0f; // all scale factors are set to 1.0 } } } // ----------------------------------------------------------------------------------------------------- // --------------------------- 10. Do inference --------------------------------------------------------- slog::info << "Start inference (" << FLAGS_ni << " iterations)" << slog::endl; typedef std::chrono::high_resolution_clock Time; typedef std::chrono::duration<double, std::ratio<1, 1000>> ms; typedef std::chrono::duration<float> fsec; double total = 0.0; /** Start inference & calc performance **/ for (size_t iter = 0; iter < FLAGS_ni; ++iter) { auto t0 = Time::now(); infer_request.Infer(); auto t1 = Time::now(); fsec fs = t1 - t0; ms d = std::chrono::duration_cast<ms>(fs); total += d.count(); } // ----------------------------------------------------------------------------------------------------- // --------------------------- 11. Process output ------------------------------------------------------- slog::info << "Processing output blobs" << slog::endl; const Blob::Ptr output_blob = infer_request.GetBlob(outputName); const float* detection = static_cast<PrecisionTrait<Precision::FP32>::value_type*>(output_blob->buffer()); std::vector<std::vector<int> > boxes(batchSize); std::vector<std::vector<int> > classes(batchSize); /* Each detection has image_id that denotes processed image */ for (int curProposal = 0; curProposal < maxProposalCount; curProposal++) { auto image_id = static_cast<int>(detection[curProposal * objectSize + 0]); if (image_id < 0) { break; } float confidence = detection[curProposal * objectSize + 2]; auto label = static_cast<int>(detection[curProposal * objectSize + 1]); auto xmin = static_cast<int>(detection[curProposal * objectSize + 3] * imageWidths[image_id]); auto ymin = static_cast<int>(detection[curProposal * objectSize + 4] * imageHeights[image_id]); auto xmax = static_cast<int>(detection[curProposal * objectSize + 5] * imageWidths[image_id]); auto ymax = static_cast<int>(detection[curProposal * objectSize + 6] * imageHeights[image_id]); std::cout << "[" << curProposal << "," << label << "] element, prob = " << confidence << " (" << xmin << "," << ymin << ")-(" << xmax << "," << ymax << ")" << " batch id : " << image_id; if (confidence > 0.5) { /** Drawing only objects with >50% probability **/ classes[image_id].push_back(label); boxes[image_id].push_back(xmin); boxes[image_id].push_back(ymin); boxes[image_id].push_back(xmax - xmin); boxes[image_id].push_back(ymax - ymin); std::cout << " WILL BE PRINTED!"; } std::cout << std::endl; } for (size_t batch_id = 0; batch_id < batchSize; ++batch_id) { addRectangles(originalImagesData[batch_id].get(), imageHeights[batch_id], imageWidths[batch_id], boxes[batch_id], classes[batch_id], BBOX_THICKNESS); const std::string image_path = "out_" + std::to_string(batch_id) + ".bmp"; if (writeOutputBmp(image_path, originalImagesData[batch_id].get(), imageHeights[batch_id], imageWidths[batch_id])) { slog::info << "Image " + image_path + " created!" << slog::endl; } else { throw std::logic_error(std::string("Can't create a file: ") + image_path); } } // ----------------------------------------------------------------------------------------------------- std::cout << std::endl << "total inference time: " << total << std::endl; std::cout << "Average running time of one iteration: " << total / static_cast<double>(FLAGS_ni) << " ms" << std::endl; std::cout << std::endl << "Throughput: " << 1000 * static_cast<double>(FLAGS_ni) * batchSize / total << " FPS" << std::endl; std::cout << std::endl; /** Show performance results **/ if (FLAGS_pc) { printPerformanceCounts(infer_request, std::cout); } } catch (const std::exception& error) { slog::err << error.what() << slog::endl; return 1; } catch (...) { slog::err << "Unknown/internal exception happened." << slog::endl; return 1; } slog::info << "Execution successful" << slog::endl; return 0; }
[ "lin.xie@intel.com" ]
lin.xie@intel.com
fd199e77ef1f5d727e0d6cd19e56144c10c6f563
f5dc059a4311bc542af480aa8e8784965d78c6e7
/scimath/Functionals/Sinusoid1D2.tcc
656ce3d2a3baec5c3195c16981670a707ccd56c7
[]
no_license
astro-informatics/casacore-1.7.0_patched
ec166dc4a13a34ed433dd799393e407d077a8599
8a7cbf4aa79937fba132cf36fea98f448cc230ea
refs/heads/master
2021-01-17T05:26:35.733411
2015-03-24T11:08:55
2015-03-24T11:08:55
32,793,738
2
0
null
null
null
null
UTF-8
C++
false
false
3,630
tcc
//# Sinusoid1D2.cc: specialized Sinusoid1D class for AutoDiff //# Copyright (C) 1997,1998,2001,2002 //# Associated Universities, Inc. Washington DC, USA. //# //# This library is free software; you can redistribute it and/or modify it //# under the terms of the GNU Library General Public License as published by //# the Free Software Foundation; either version 2 of the License, or (at your //# option) any later version. //# //# This library is distributed in the hope that it will be useful, but WITHOUT //# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or //# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public //# License for more details. //# //# You should have received a copy of the GNU Library General Public License //# along with this library; if not, write to the Free Software Foundation, //# Inc., 675 Massachusetts Ave, Cambridge, MA 02139, USA. //# //# Correspondence concerning AIPS++ should be addressed as follows: //# Internet email: aips2-request@nrao.edu. //# Postal address: AIPS++ Project Office //# National Radio Astronomy Observatory //# 520 Edgemont Road //# Charlottesville, VA 22903-2475 USA //# //# $Id: Sinusoid1D2.tcc 20253 2008-02-23 15:15:00Z gervandiepen $ //# Includes #include <scimath/Functionals/Sinusoid1D.h> #include <casa/BasicSL/Constants.h> #include <casa/BasicMath/Math.h> namespace casa { //# NAMESPACE CASA - BEGIN //# Constructors //# Operators template<class T> AutoDiff<T> Sinusoid1D<AutoDiff<T> >:: eval(typename Function<AutoDiff<T> >::FunctionArg x) const { AutoDiff<T> tmp; if (this->param_p[Sinusoid1DParam<AutoDiff<T> >::AMPLITUDE].nDerivatives() > 0) tmp = this->param_p[Sinusoid1DParam<AutoDiff<T> >::AMPLITUDE]; else if (this->param_p[Sinusoid1DParam<AutoDiff<T> >::PERIOD].nDerivatives() > 0) tmp = this->param_p[Sinusoid1DParam<AutoDiff<T> >::PERIOD]; else if (this->param_p[Sinusoid1DParam<AutoDiff<T> >::X0].nDerivatives() > 0) tmp = this->param_p[Sinusoid1DParam<AutoDiff<T> >::X0]; typename AutoDiff<T>::value_type arg = static_cast<typename AutoDiff<T>::value_type>(C::_2pi) * (x[0] - this->param_p[Sinusoid1DParam<AutoDiff<T> >::X0].value())/this->param_p[Sinusoid1DParam<AutoDiff<T> >::PERIOD].value(); typename AutoDiff<T>::value_type cosarg = cos(arg); typename AutoDiff<T>::value_type sinarg = sin(arg); // Function value tmp.value() = this->param_p[Sinusoid1DParam<AutoDiff<T> >::AMPLITUDE].value() * cosarg; // get derivatives (assuming either all or none) if (tmp.nDerivatives()>0) { for (uInt j = 0; j < tmp.nDerivatives(); j++) tmp.deriv(j) = 0.0; // derivative wrt amplitude typename AutoDiff<T>::value_type dev = cosarg; if (this->param_p.mask(Sinusoid1DParam<AutoDiff<T> >::AMPLITUDE)) tmp.deriv(Sinusoid1DParam<AutoDiff<T> >::AMPLITUDE) = dev; // derivative wrt period dev = this->param_p[Sinusoid1DParam<AutoDiff<T> >::AMPLITUDE].value() * arg * sinarg / this->param_p[Sinusoid1DParam<AutoDiff<T> >::PERIOD].value(); if (this->param_p.mask(Sinusoid1DParam<AutoDiff<T> >::PERIOD)) tmp.deriv(Sinusoid1DParam<AutoDiff<T> >::PERIOD) = dev; // derivative wrt x0 dev = this->param_p[Sinusoid1DParam<AutoDiff<T> >::AMPLITUDE].value() * static_cast<typename AutoDiff<T>::value_type>(C::_2pi) * sinarg / this->param_p[Sinusoid1DParam<AutoDiff<T> >::PERIOD].value(); if (this->param_p.mask(Sinusoid1DParam<AutoDiff<T> >::X0)) tmp.deriv(Sinusoid1DParam<AutoDiff<T> >::X0) = dev; } return tmp; } //# Member functions } //# NAMESPACE CASA - END
[ "jason.mcewen@ucl.ac.uk" ]
jason.mcewen@ucl.ac.uk
b99fc600118b5fc2a781b31534115386d985a720
692b0ef75324889a5d3f9260852c3f4cc8e5b319
/Class examples/Gaddis_7thEd_Chap2_Prob14/main.cpp
bf5fd7e21ef1053f863f3e0477a9b6bf2d331d88
[]
no_license
PDcsc5/pd2503230
0e35a750980a66a97a97ff1860d9549d04e95992
c71540b5768ba73a0abdc495baf5562023b26eea
refs/heads/master
2021-01-25T06:01:03.963331
2014-07-31T10:44:12
2014-07-31T10:44:12
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,267
cpp
/* * File: main.cpp * Author: Dr. Mark E. lehr * Created on June 25, 2014, 6:05 PM */ //System Libraries #include <iostream> using namespace std; //User Libraries //Global Constants //Execution Begins Here int main(int argc, char** argv) { //Declare Variables const char NSIZE=25;//Includes the null terminator char name[NSIZE];//Character array (i.e. character string) const int ASIZE=60;//Includes the null terminator char address[ASIZE];//Character array (i.e. character string) char city[15],state[3],zip[6]; char tlphone[14]; //Input the data cout<<"Input your Name"<<endl; cout<<"Format FN MI LN"<<endl; cin.getline(name,NSIZE); cout<<endl<<"Input your address"<<endl; cout<<"Number, Street, Apt, POBox"<<endl; cin.getline(address,ASIZE); cout<<endl<<"Input city,state,zip"<<endl; cout<<"Format as city XX DDDDD"<<endl; cin>>city>>state>>zip; cout<<endl<<"Telephone number (DDD)DDD-DDDD"<<endl; cin>>tlphone; //Output the data cout<<"Name: "<<name<<endl; cout<<"Address: "<<address<<endl; cout<<"City,State,ZIP "<<city<<" "<<state<<" "<<zip<<endl; cout<<"Telephone # "<<tlphone<<endl; //Exit stage right! return 0; }
[ "pdelacruz5@student.rcc.edu" ]
pdelacruz5@student.rcc.edu
6403834805cb756d28e5ec469024426752d0731a
050c8a810d34fe125aecae582f9adfd0625356c6
/cf1242/C.cpp
34736d716e01e1ae1014e5c313dc3dca9255213c
[]
no_license
georgerapeanu/c-sources
adff7a268121ae8c314e846726267109ba1c62e6
af95d3ce726325dcd18b3d94fe99969006b8e138
refs/heads/master
2022-12-24T22:57:39.526205
2022-12-21T16:05:01
2022-12-21T16:05:01
144,864,608
11
0
null
null
null
null
UTF-8
C++
false
false
2,498
cpp
#include <bits/stdc++.h> using namespace std; map<int,int> prov; vector<int> box[20]; int k; vector<pair<int,int> > pos[1 << 15]; long long sum[20]; bool dp[1 << 15]; pair<int,int> ans[20]; int main() { scanf("%d",&k); long long target = 0; for(int i = 1; i <= k; i++) { int n; scanf("%d",&n); for(int j = 1; j <= n; j++) { int x; scanf("%d",&x); prov[x] = i; box[i].push_back(x); target += x; sum[i] += x; } } if(target % k != 0) { printf("No"); return 0; } target /= k; for(int i = 1; i <= k; i++) { for(auto it:box[i]) { int conf = (1 << (i - 1)); int curr = i; int elem = it; vector<pair<int,int> > op; bool ok = true; while(true) { long long nxt_elem = target - (sum[curr] - elem); if(nxt_elem > 1e9 || nxt_elem < -1e9) { ok = false; break; } if(nxt_elem == it) { op.push_back({nxt_elem,curr}); break; } if(prov.count(nxt_elem) == 0 || ((conf >> (prov[nxt_elem] - 1)) & 1) == true) { ok = false; break; } op.push_back({nxt_elem,curr}); curr = prov[nxt_elem]; conf ^= (1 << (curr - 1)); elem = nxt_elem; } if(ok) { pos[conf] = op; dp[conf] = true; } } } for(int conf = 0; conf < (1 << k); conf++) { if(dp[conf]) { continue; } for(int conf2 = conf; conf2; conf2 = ((conf2 - 1) & conf)) { if(dp[conf2] && dp[conf ^ conf2]) { dp[conf] = true; for(auto it:pos[conf2]) { pos[conf].push_back(it); } for(auto it:pos[conf ^ conf2]) { pos[conf].push_back(it); } break; } } } if(dp[(1 << k) -1] == false) { printf("No\n"); return 0; } printf("Yes\n"); for(auto it:pos[(1 << k) - 1]) { ans[prov[it.first]] = it; } for(int i = 1; i <= k; i++) { printf("%d %d\n",ans[i].first,ans[i].second); } return 0; }
[ "alexandrurapeanu@yahoo.com" ]
alexandrurapeanu@yahoo.com
84459606d529eeb161c3b5c1812ef2d8ff07a27c
a170200a61471fd4f137c6bc01f02b4480330b4f
/include/FileClasses/Shpfile.h
ff094076f0dc6c3ccf629c2f47a18c6a921661df
[]
no_license
philippkeller/dunelegacy
f79be735144a9c2aba64525a82c3bc5ab77ee3b6
bfa48aa3b70010fe520dc11df6d22748243f9b47
refs/heads/master
2021-07-10T13:38:03.157896
2020-10-11T11:48:57
2020-10-11T11:48:57
74,042,533
14
7
null
null
null
null
UTF-8
C++
false
false
2,358
h
/* * This file is part of Dune Legacy. * * Dune Legacy 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. * * Dune Legacy 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 Dune Legacy. If not, see <http://www.gnu.org/licenses/>. */ #ifndef SHPFILE_H #define SHPFILE_H #include <SDL.h> #include <SDL_rwops.h> #include <stdarg.h> #include <vector> #include "Animation.h" #define TILE_NORMAL 0x00010000 #define TILE_FLIPH 0x00100000 #define TILE_FLIPV 0x01000000 #define TILE_ROTATE 0x10000000 #define TILE_GETINDEX(x) (x & 0x0000FFFF) #define TILE_GETTYPE(x) (x & 0xFFFF0000) /// A class for loading a *.SHP-File. /** This class can read shp-Files and return the contained pictures as a SDL_Surface. */ class Shpfile { private: // Internal structure used for an index of contained files struct ShpfileEntry { Uint32 startOffset; Uint32 endOffset; }; public: Shpfile(SDL_RWops* rwop, int freesrc); Shpfile(const Shpfile& o) = delete; virtual ~Shpfile(); SDL_Surface* getPicture(Uint32 indexOfFile); SDL_Surface* getPictureArray(unsigned int tilesX, unsigned int tilesY, ...); Animation* getAnimation(unsigned int startindex, unsigned int endindex, bool bDoublePic=true, bool bSetColorKey=true, bool bLoopRewindBackwards=false); /// Returns the number of contained pictures /** Returns the number of pictures in this SHP-File. \return Number of pictures in this SHP-File. */ inline int getNumFiles() const { return (int) shpfileEntries.size(); }; private: void readIndex(); void shpCorrectLF(unsigned char *in, unsigned char *out, int size); void applyPalOffsets(unsigned char *offsets, unsigned char *data,unsigned int length); std::vector<ShpfileEntry> shpfileEntries; unsigned char* pFiledata; Uint32 shpFilesize; }; #endif //SHPFILE_H
[ "richard.schaller@gmx.de" ]
richard.schaller@gmx.de
4955036e37c502f9e3c4bdcd2cc9122eaf9db4d7
8f012b25a15745555c30f4b55aa30a5b16d2cdb9
/source/src/Trivent.cc
8a4e75bb84161e8d3d8635275643d173158efe73
[]
no_license
AHCALMonitoring/Trivent
10ab773b19cdce884c4f48ac55815051bf8f4e7b
f45bfeb9a97a4eda55f67b9d064ede69c6b93fc8
refs/heads/master
2021-01-17T11:42:41.540154
2016-04-25T09:49:51
2016-04-25T09:49:51
54,559,649
0
0
null
2016-04-25T09:49:51
2016-03-23T12:54:25
CMake
UTF-8
C++
false
false
9,871
cc
/// \file Trivent.cc /* * * Trivent.cc source template automatically generated by a class generator * Creation date : ven. mars 18 2016 * * This file is part of Trivent libraries. * * Trivent 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. * based upon these libraries are permitted. Any copy of these libraries * must include this copyright notice. * * Trivent 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 Trivent. If not, see <http://www.gnu.org/licenses/>. * * @author Remi Ete * @copyright CNRS , IPNL */ // -- trivent headers #include "Trivent.h" #include "Event.h" // -- std headers #include <limits> #include <iostream> #include <iterator> namespace trivent { Trivent::Parameters::Parameters() : m_timeWindow(2), m_minPeakSize(10), m_minElements(0), m_maxElements(std::numeric_limits<uint32_t>::max()) { /* nop */ } //------------------------------------------------------------------------------------------------- Trivent::Trivent() : m_initialized(false), m_timeWindow(2), m_minPeakSize(10) { /* nop */ } //------------------------------------------------------------------------------------------------- Trivent::~Trivent() { /* nop */ } //------------------------------------------------------------------------------------------------- void Trivent::init(const Trivent::Parameters &parameters) { if(m_initialized) return; m_timeWindow = parameters.m_timeWindow; m_minPeakSize = parameters.m_minPeakSize; m_minElements = parameters.m_minElements; m_maxElements = parameters.m_maxElements; m_maskCollectionNames = parameters.m_maskCollectionNames; m_initialized = true; } //------------------------------------------------------------------------------------------------- void Trivent::addListener(TriventListener *pListener) { if(NULL == pListener) return; m_listeners.insert(pListener); } //------------------------------------------------------------------------------------------------- void Trivent::removeListener(TriventListener *pListener) { if(NULL == pListener) return; m_listeners.erase(pListener); } //------------------------------------------------------------------------------------------------- void Trivent::processEvent(const Event &inputEvent) { // check for initialization if( ! m_initialized ) return; // if no listeners, no need to process if( m_listeners.empty() ) return; UnitSet allUnits; std::vector<std::string> collectionNames = inputEvent.getCollectionNames(); for(std::vector<std::string>::iterator colIter = collectionNames.begin(), colEndIter = collectionNames.end() ; colEndIter != colIter ; ++colIter) { if( m_maskCollectionNames.find(*colIter) != m_maskCollectionNames.end() ) continue; inputEvent.getUnits(*colIter, allUnits); } if( allUnits.empty() ) return; this->notifyStartProcessing(&inputEvent); if( allUnits.size() < m_minElements || allUnits.size() > m_maxElements ) { std::string unitStr = allUnits.size() < m_minElements ? "Not enough " : "Too much "; std::cout << unitStr << "to process an event ! Skipping event !" << std::endl; return; } TimeSpectrum timeSpectrum; // get time spectrum from basic units this->getTimeSpectrum(allUnits, timeSpectrum); // find initial time bin TimeSpectrum::const_iterator initialBinIter = timeSpectrum.end(); this->getInitialTimeBin(timeSpectrum, initialBinIter); if( initialBinIter == timeSpectrum.end() ) { std::cout << "[Trivent] No initial time spectrum bn found ! Skipping event !" << std::endl; return; } TimeSpectrum::const_iterator spectrumBin = initialBinIter; TimeSpectrum::const_iterator beginIter = timeSpectrum.begin(); unsigned int iteration = 0; // navigate along the time spectrum and find time peaks while( 1 ) { std::cout << "[Trivent] Time spectrum iteration no " << iteration << std::endl; iteration++; // look for next time peak this->findNextSpectrumPeak(timeSpectrum, spectrumBin); if( spectrumBin == timeSpectrum.end() ) break; // build an event around the time peak Event outputEvent; this->buildEvent(outputEvent, timeSpectrum, spectrumBin); outputEvent.setUserEvent( inputEvent.getUserEvent() ); outputEvent.setTimeStamp( spectrumBin->first ); // notify listeners that an event has been reconstructed this->notifyReconstructedEvent(outputEvent); // seek the time spectrum iterator to next possible time peak this->seekBinForNextEvent(timeSpectrum, spectrumBin); // clean the event without deleting trivent units outputEvent.clear(false); if( spectrumBin == timeSpectrum.end() ) break; } } //------------------------------------------------------------------------------------------------- void Trivent::notifyStartProcessing(const Event *const pInputEvent) { for(TriventListenerSet::iterator iter = m_listeners.begin(), endIter = m_listeners.end() ; endIter != iter ; ++iter) (*iter)->startProcessingInputEvent(pInputEvent); } //------------------------------------------------------------------------------------------------- void Trivent::getTimeSpectrum(const UnitSet &inputUnits, Trivent::TimeSpectrum &timeSpectrum) { for(UnitSet::const_iterator iter = inputUnits.begin(), endIter = inputUnits.end() ; endIter != iter ; ++iter) { uint64_t time = (*iter)->getTime(); timeSpectrum[time].insert(*iter); } } //------------------------------------------------------------------------------------------------- void Trivent::getInitialTimeBin(const Trivent::TimeSpectrum &timeSpectrum, Trivent::TimeSpectrum::const_iterator &initialBinIter) { initialBinIter = timeSpectrum.end(); for(TimeSpectrum::const_iterator iter = timeSpectrum.begin(), endIter = timeSpectrum.end() ; endIter != iter ; ++iter) { if(iter->first >= m_timeWindow) { initialBinIter = iter; break; } } } //------------------------------------------------------------------------------------------------- void Trivent::findNextSpectrumPeak(const Trivent::TimeSpectrum &timeSpectrum, Trivent::TimeSpectrum::const_iterator &spectrumBin) { if( spectrumBin == timeSpectrum.end() ) return; Trivent::TimeSpectrum::const_iterator initialPeakBin = spectrumBin; Trivent::TimeSpectrum::const_iterator nextPeakBin = initialPeakBin; while( 1 ) { if(nextPeakBin == timeSpectrum.end()) break; if( nextPeakBin->second.size() < m_minPeakSize ) { nextPeakBin++; continue; } uint64_t currentTime = nextPeakBin->first; Trivent::TimeSpectrum::const_iterator navigationIter = nextPeakBin; navigationIter++; bool peakFound = true; while( 1 ) { if( navigationIter == timeSpectrum.end()) { peakFound = false; break; } if( navigationIter->first - currentTime < m_timeWindow && navigationIter->second.size() >= m_minPeakSize ) { peakFound = false; break; } if( navigationIter->first - currentTime > m_timeWindow ) break; navigationIter++; } if( ! peakFound ) { nextPeakBin++; continue; } else break; } spectrumBin = nextPeakBin; } //------------------------------------------------------------------------------------------------- void Trivent::buildEvent(Event &outputEvent, const TimeSpectrum &timeSpectrum, const TimeSpectrum::const_iterator &spectrumBin) { Trivent::TimeSpectrum::const_iterator navigationBin = spectrumBin; // look in previous bins within time window if( navigationBin != timeSpectrum.begin() ) { navigationBin --; while( 1 ) { // outside time window ? if( spectrumBin->first - navigationBin->first > m_timeWindow ) break; this->addUnitsToEvent(outputEvent, navigationBin); if( navigationBin == timeSpectrum.begin() ) break; else navigationBin --; } } navigationBin = spectrumBin; navigationBin ++; // look in next bins within time window if( navigationBin != timeSpectrum.end() ) { while( 1 ) { if( navigationBin == timeSpectrum.begin() ) break; // outside time window ? if( navigationBin->first - spectrumBin->first > m_timeWindow ) break; this->addUnitsToEvent(outputEvent, navigationBin); navigationBin ++; } } // populate with current peak bin this->addUnitsToEvent(outputEvent, spectrumBin); } //------------------------------------------------------------------------------------------------- void Trivent::addUnitsToEvent(Event &outputEvent, const TimeSpectrum::const_iterator &spectrumBin) { for(UnitSet::const_iterator iter = spectrumBin->second.begin(), endIter = spectrumBin->second.end() ; endIter != iter ; ++iter) outputEvent.addUnit( (*iter)->getCollectionName(), *iter ); } //------------------------------------------------------------------------------------------------- void Trivent::seekBinForNextEvent(const TimeSpectrum &timeSpectrum, TimeSpectrum::const_iterator &spectrumBin) { if(spectrumBin == timeSpectrum.end()) return; uint64_t currentTime = spectrumBin->first; spectrumBin ++; while( spectrumBin != timeSpectrum.end() && currentTime + m_timeWindow < spectrumBin->first ) spectrumBin ++; } //------------------------------------------------------------------------------------------------- void Trivent::notifyReconstructedEvent(const Event &outputEvent) { for(TriventListenerSet::iterator iter = m_listeners.begin(), endIter = m_listeners.end() ; endIter != iter ; ++iter) (*iter)->processReconstructedEvent(&outputEvent); } }
[ "remi.ete@gmail.com" ]
remi.ete@gmail.com
7228e6046d5aac612597a01353d99df0c6338326
7f3e95e825b894a8d015b5905592757a0040220f
/2015/inc/AcDbAssocArrayPolarParameters.h
59815b1bd2178d5d5cd329509589947b9486de46
[ "MIT" ]
permissive
AliClouds/ObjectARXCore
b06e2d4bb59df2b45e56ec76d3abb843c7131009
ce09e150aa7d87675ca15c9416497c0487e3d4d4
refs/heads/master
2021-05-28T05:19:12.593781
2014-05-08T01:23:33
2014-05-08T01:23:33
null
0
0
null
null
null
null
UTF-8
C++
false
false
15,149
h
////////////////////////////////////////////////////////////////////////////// // // Copyright 2014 Autodesk, Inc. All rights reserved. // // Use of this software is subject to the terms of the Autodesk license // agreement provided at the time of installation or download, or which // otherwise accompanies this software in either electronic or hard copy form. // ////////////////////////////////////////////////////////////////////////////// // // CREATED BY: Mei Jiayin March 2010 // // DESCRIPTION: // ////////////////////////////////////////////////////////////////////////////// #pragma once #include "AcDbAssocArrayCommonParameters.h" class AcDbImpAssocArrayPolarParameters; /// <summary> /// AcDbAssocArrayPolarParameters class provides interface to manipulate /// polar array parameters. /// </summary> /// class ACDB_PORT AcDbAssocArrayPolarParameters : public AcDbAssocArrayCommonParameters { public: ACRX_DECLARE_MEMBERS(AcDbAssocArrayPolarParameters); /// <summary> Constructor.</summary> /// <param name="angle"> The input angle formed by any two adjacent items and /// the center of polar array. The value should be between 0-360 degrees. </param> /// <param name="rowSpacing"> The input spacing between adjacent rows. </param> /// <param name="levelSpacing"> The input spacing between adjacent levels. </param> /// <param name="itemCount"> The input number of items. </param> /// <param name="rowCount"> The input number of rows. </param> /// <param name="levelCount"> The input number of levels. </param> /// <param name="rowElevation"> The input elevation between adjacent rows. </param> /// AcDbAssocArrayPolarParameters(double angle = 15, double rowSpacing = 1, double levelSpacing = 1, int itemCount = 1, int rowCount = 1, int levelCount = 1, double rowElevation = 1); /// <summary> Default destructor.</summary> /// virtual ~AcDbAssocArrayPolarParameters(void); /// <summary> /// Following list of enums can be used as input to method /// getGripPointAt(unsigned int, AcDbArrayGripAppData* &) to get specific /// type of grip. System internally uses these enums for grip operations on /// path array. /// </summary> /// enum GripModes { /// <summary> /// Moves the polar array. /// </summary> /// kCenterPointGrip = 1 << 0, /// <summary> /// Changes radius of the polar array. /// </summary> /// kStretchRadiusGrip = 1 << 1, /// <summary> /// Changes number of rows. /// </summary> /// kRowCountGrip = 1 << 2, /// <summary> /// Changes distance between rows. /// </summary> /// kRowSpacingGrip = 1 << 3, /// <summary> /// Changes distance between rows by distributing the move uniformly /// across all the rows. /// </summary> /// kUniformRowSpacingGrip = 1 << 4, /// <summary> /// Changes number of levels. /// </summary> /// kLevelCountGrip = 1 << 5, /// <summary> /// Changes distance between levels. /// </summary> /// kLevelSpacingGrip = 1 << 6, /// <summary> /// Changes distance between levels by distributing the move uniformly /// across all the levels. /// </summary> /// kUniformLevelSpacingGrip = 1 << 7, /// <summary> /// Changes number of items. /// </summary> /// kItemCountGrip = 1 << 8, /// <summary> /// Changes angle between items. /// </summary> /// kAngleBetweenItemsGrip = 1 << 9, /// <summary> /// Changes the fill angle of Polar array. /// </summary> /// kFillAngleGrip = 1 << 10, }; /// <summary> /// Specifies the direction of the arc which array items depend on. /// </summary> /// enum Direction { kClockwise, kCounterClockwise, }; /// <summary> /// Gets the item count of the polar array. /// If there is no expression for a particular param, /// expression string and the evaluatorId are empty strings. /// </summary> /// <param name="expression"> The returned expression. </param> /// <param name="evaluatorId"> The returned evaluatorId. </param> /// <returns> Returns item count. </returns> /// int itemCount(AcString& expression, AcString& evaluatorId) const; inline int itemCount() const { AcString expression, evaluatorId; return itemCount(expression, evaluatorId); } inline int itemCount(AcString& expression) const { AcString evaluatorId; return itemCount(expression, evaluatorId); } /// <summary> /// Gets the angle between items of the polar array. /// The value is between (0-360] degrees. /// If there is no expression for a particular param, /// expression string and the evaluatorId are empty strings. /// </summary> /// <param name="expression"> The returned expression. </param> /// <param name="evaluatorId"> The returned evaluatorId. </param> /// <returns> Returns angle between items. </returns> /// double angleBetweenItems(AcString& expression , AcString& evaluatorId) const; inline double angleBetweenItems() const { AcString expression, evaluatorId; return angleBetweenItems(expression, evaluatorId); } inline double angleBetweenItems(AcString& expression) const { AcString evaluatorId; return angleBetweenItems(expression, evaluatorId); } /// <summary> /// Gets angle between first and last item in array. /// The value is between (0-360] degrees. /// If there is no expression for a particular param, /// expression string and the evaluatorId are empty strings. /// </summary> /// <param name="expression"> The returned expression. </param> /// <param name="evaluatorId"> The returned evaluatorId. </param> /// <returns> Returns angle between first and last item. </returns> /// double fillAngle(AcString& expression, AcString& evaluatorId) const; inline double fillAngle() const { AcString expression, evaluatorId; return fillAngle(expression, evaluatorId); } inline double fillAngle(AcString& expression) const { AcString evaluatorId; return fillAngle(expression, evaluatorId); } /// <summary> /// Gets the angle for the first item in array. /// The value should be between 0-360 degrees. /// If there is no expression for a particular param, /// expression string and the evaluatorId are empty strings. /// </summary> /// <param name="expression"> The returned expression. </param> /// <param name="evaluatorId"> The returned evaluatorId. </param> /// <returns> Returns angle between first and last item. </returns> /// double startAngle(AcString& expression, AcString& evaluatorId) const; /// <summary> /// Gets the direction of arc. /// </summary> /// <returns> Returns the direction of arc. </returns> /// Direction direction() const; /// <summary> /// Gets the retate rotate items option. /// </summary> /// <returns> Returns whether to rotate items. </returns> /// bool rotateItems() const; /// <summary> /// Gets the radius of the polar array. /// If there is no expression for a particular param, /// expression string and the evaluatorId are empty strings. /// </summary> /// <param name="expression"> The returned expression. </param> /// <param name="evaluatorId"> The returned evaluatorId. </param> /// <returns> Returns the radius. </returns> /// double radius(AcString& expression, AcString& evaluatorId) const; inline double radius() const { AcString expression, evaluatorId; return radius(expression, evaluatorId); } inline double radius(AcString& expression) const { AcString evaluatorId; return radius(expression, evaluatorId); } /// <summary> /// Sets the item count of the polar array. /// If there is no expression for the parameter, the expression string and /// the evaluatorId must be empty strings. /// </summary> /// <param name="nItems"> The item count to set. </param> /// <param name="expression"> The expression to set. </param> /// <param name="evaluatorId"> The evaluatorId to set. </param> /// <param name="errorMessage"> The returned error message for the individual expression. </param> /// <returns> Acad::ErrorStatus. </returns> /// Acad::ErrorStatus setItemCount(int nItems, const AcString& expression = AcString(), const AcString& evaluatorId = AcString(), AcString& errorMessage = dummyString()); /// <summary> /// Sets the angle between items of the polar array. /// The input value will be rounded off to (0-360] degree /// If there is no expression for the parameter, the expression string and /// the evaluatorId must be empty strings. /// </summary> /// <param name="angle"> The angle to set. This must be a positive value</param> /// <param name="expression"> The expression to set. </param> /// <param name="evaluatorId"> The evaluatorId to set. </param> /// <param name="errorMessage"> The returned error message for the individual expression. </param> /// <returns> Acad::ErrorStatus. </returns> /// Acad::ErrorStatus setAngleBetweenItems(double angle, const AcString& expression = AcString(), const AcString& evaluatorId = AcString(), AcString& errorMessage = dummyString()); /// <summary> /// Sets angle between first and last item in array. /// The value will be rounded off to (0-360] degree /// If there is no expression for the parameter, the expression string and /// the evaluatorId must be empty strings. /// </summary> /// <param name="fillAngle"> The angle to set. Absolute value of this parameter is used. </param> /// <param name="expression"> The expression to set. </param> /// <param name="evaluatorId"> The evaluatorId to set. </param> /// <param name="errorMessage"> The returned error message for the individual expression. </param> /// <returns> Acad::ErrorStatus. </returns> /// Acad::ErrorStatus setFillAngle(double fillAngle, const AcString& expression = AcString(), const AcString& evaluatorId = AcString(), AcString& errorMessage = dummyString()); /// <summary> /// Sets the angle for the first item in polar array. /// The value will be rounded off to [0-360] degree /// If there is no expression for the parameter, the expression string and /// the evaluatorId must be empty strings. /// </summary> /// <param name="angle"> The angle to set. </param> /// <param name="expression"> The expression to set. </param> /// <param name="evaluatorId"> The evaluatorId to set. </param> /// <param name="errorMessage"> The returned error message for the individual expression. </param> /// <returns> Acad::ErrorStatus. </returns> /// Acad::ErrorStatus setStartAngle(double angle, const AcString& expression = AcString(), const AcString& evaluatorId = AcString(), AcString& errorMessage = dummyString()); /// <summary> /// Sets the direction of arc. /// </summary> /// <param name="direction"> The input direction of arc. </param> /// <returns> Acad::ErrorStatus. </returns> /// Acad::ErrorStatus setDirection(Direction direction); /// <summary> /// Sets whether to rotate items or not. /// </summary> /// <param name="bRotateItems"> The input boolean to set. </param> /// <returns> Acad::ErrorStatus. </returns> /// Acad::ErrorStatus setRotateItems(bool bRotateItems); /// <summary> /// Sets the radius of the polar array. /// If there is no expression for the parameter, the expression string and /// the evaluatorId must be empty strings. /// </summary> /// <param name="radius"> The radius to set. Absolute value of this parameter is used. </param> /// <param name="expression"> The expression to set. </param> /// <param name="evaluatorId"> The evaluatorId to set. </param> /// <param name="errorMessage"> The returned error message for the individual expression. </param> /// <returns> Acad::ErrorStatus. </returns> /// Acad::ErrorStatus setRadius(double radius, const AcString& expression = AcString(), const AcString& evaluatorId = AcString(), AcString& errorMessage = dummyString()); /// <summary> <para> /// Obtains list of items patterned by the set of owned parameters. Each /// parameters class uses its own logic based on owned value as well as /// geometry parameters to define a set of items to be patterned as array. /// </para><para> /// The owning AcDbAssocArrayActionBody calls this method while evaluating /// the array to update transforms of each item in the array. The caller /// may pass its current list of items for update. The input list can be /// modified by this implementation to cater change in value parameters /// controlling number of items in various directions. /// </para></summary> /// <param name="items"> The updated list of items. </param> /// <returns> Acad::ErrorStatus. </returns> /// virtual Acad::ErrorStatus getItems(AcArray<AcDbAssocArrayItem*>& items) const; /// <summary> /// Obtains position as well as orientation of an item at given spatial /// index specified by the locator. /// </summary> /// <param name="locator"> The input item locator or spatial index. </param> /// <param name="position"> The returned positon of the item whose location is /// indicated by the input locator. </param> /// <param name="xform"> The returned orientation transform of the item. /// </param> /// <returns> Acad::ErrorStatus. </returns> /// virtual Acad::ErrorStatus getItemPosition(const AcDbItemLocator& locator, AcGePoint3d& position, AcGeMatrix3d& xform) const; protected: friend class AcDbImpAssocArrayPolarParameters; explicit AcDbAssocArrayPolarParameters(AcDbImpAssocArrayPolarParameters* pSelf); };
[ "kevinzhwl@gmail.com" ]
kevinzhwl@gmail.com
4f7c2797f5973d83a52de85fb0cf41681315174f
f8f2d40e8c3fe0fcdf7d134be9014cdf112d276e
/Mylib/ConsoleApplication2/ConsoleApplication2.cpp
6f6118aab622691613a194de3d5e698ee5950bdd
[]
no_license
applematrix/MyLib
d70bbe29c25ab564ead769a827187f40eca9928d
fc9f24ca093724ec4f63e692fc8d6f95d8922237
refs/heads/master
2016-08-05T16:19:33.776353
2014-10-17T14:31:57
2014-10-17T14:31:57
null
0
0
null
null
null
null
GB18030
C++
false
false
363
cpp
// ConsoleApplication2.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include "DataSource.h" #include "FileSource.h" #include "Vector.h" using namespace hdz; int _tmain(int argc, _TCHAR* argv[]) { sp<DataSource> pDataSource = new FileSource("F:\\test.txt"); uint8 buffer[10] = {0}; pDataSource->readAt(0, 3, buffer); return 0; }
[ "cshdzxjtu@163.com" ]
cshdzxjtu@163.com
8fc95c3fd4778071d23e489fbd8a56bc1bdf45de
6e4b0cdbf68933b73e5be91a27c2dd6ee7e613f9
/programming/Manifold.cpp
43278350ae5e98f8f50f35cc1672c16549fd5709
[]
no_license
DanielLC/Manifold
0c34afb178e96c8401e71dba989b80c4a689fd68
5c2af1f8f3719294e236c24780cc4e0e7c1e161c
refs/heads/master
2020-06-01T16:32:04.051039
2014-10-20T05:58:46
2014-10-20T05:58:46
null
0
0
null
null
null
null
UTF-8
C++
false
false
7,665
cpp
#include "Manifold.h" #include "Euclidean.h" #include "SurfaceOfRevolution.h" #include "PortalSpace2d2.h" #include "Assert.h" std::vector<Manifold::Triangle> Manifold::icosahedron(PointOfReferencePtr por) { return icosahedron(por, 1.); } std::vector<Manifold::Triangle> Manifold::octahedron(PointOfReferencePtr por) { return octahedron(por, 1.); } std::vector<Manifold::Triangle> Manifold::octahedron(PointOfReferencePtr por, double k) { std::vector<Manifold::Triangle> out; std::tr1::shared_ptr<Manifold::Point> xp = pointFromVector(por,Vector3d( 1, 0, 0)); std::tr1::shared_ptr<Manifold::Point> xm = pointFromVector(por,Vector3d(-1, 0, 0)); std::tr1::shared_ptr<Manifold::Point> yp = pointFromVector(por,Vector3d( 0, 1, 0)); std::tr1::shared_ptr<Manifold::Point> ym = pointFromVector(por,Vector3d( 0,-1, 0)); std::tr1::shared_ptr<Manifold::Point> zp = pointFromVector(por,Vector3d( 0, 0, 1)); std::tr1::shared_ptr<Manifold::Point> zm = pointFromVector(por,Vector3d( 0, 0,-1)); Triangle triangle0 = {xp,yp,zp}; Triangle triangle1 = {xp,yp,zm}; Triangle triangle2 = {xp,ym,zp}; Triangle triangle3 = {xp,ym,zm}; Triangle triangle4 = {xm,yp,zp}; Triangle triangle5 = {xm,yp,zm}; Triangle triangle6 = {xm,ym,zp}; Triangle triangle7 = {xm,ym,zm}; out.push_back(triangle0); out.push_back(triangle1); out.push_back(triangle2); out.push_back(triangle3); out.push_back(triangle4); out.push_back(triangle5); out.push_back(triangle6); out.push_back(triangle7); return out; } std::vector<Manifold::Triangle> Manifold::icosahedron(PointOfReferencePtr por, double k) { double phi = k*(-1.+sqrt(5.))/2.; std::vector<Manifold::Triangle> out; std::tr1::shared_ptr<Manifold::Point> va0 = pointFromVector(por,Vector3d(0,k,phi)); std::tr1::shared_ptr<Manifold::Point> va1 = pointFromVector(por,Vector3d(0,k,-phi)); std::tr1::shared_ptr<Manifold::Point> va2 = pointFromVector(por,Vector3d(0,-k,phi)); std::tr1::shared_ptr<Manifold::Point> va3 = pointFromVector(por,Vector3d(0,-k,-phi)); std::tr1::shared_ptr<Manifold::Point> vb0 = pointFromVector(por,Vector3d(k,phi,0)); std::tr1::shared_ptr<Manifold::Point> vb1 = pointFromVector(por,Vector3d(k,-phi,0)); std::tr1::shared_ptr<Manifold::Point> vb2 = pointFromVector(por,Vector3d(-k,phi,0)); std::tr1::shared_ptr<Manifold::Point> vb3 = pointFromVector(por,Vector3d(-k,-phi,0)); std::tr1::shared_ptr<Manifold::Point> vc0 = pointFromVector(por,Vector3d(phi,0,k)); std::tr1::shared_ptr<Manifold::Point> vc1 = pointFromVector(por,Vector3d(-phi,0,k)); std::tr1::shared_ptr<Manifold::Point> vc2 = pointFromVector(por,Vector3d(phi,0,-k)); std::tr1::shared_ptr<Manifold::Point> vc3 = pointFromVector(por,Vector3d(-phi,0,-k)); Triangle triangle0 = {va0,va1,vb0}; Triangle triangle1 = {va0,va1,vb2}; Triangle triangle2 = {va2,va3,vb1}; Triangle triangle3 = {va2,va3,vb3}; Triangle triangle4 = {vb0,vb1,vc0}; Triangle triangle5 = {vb0,vb1,vc2}; Triangle triangle6 = {vb2,vb3,vc1}; Triangle triangle7 = {vb2,vb3,vc3}; Triangle triangle8 = {vc0,vc1,va0}; Triangle triangle9 = {vc0,vc1,va2}; Triangle triangle10 = {vc2,vc3,va1}; Triangle triangle11 = {vc2,vc3,va3}; out.push_back(triangle0); out.push_back(triangle1); out.push_back(triangle2); out.push_back(triangle3); out.push_back(triangle4); out.push_back(triangle5); out.push_back(triangle6); out.push_back(triangle7); out.push_back(triangle8); out.push_back(triangle9); out.push_back(triangle10); out.push_back(triangle11); return out; } Eigen::Vector3d Manifold::vectorFromPoint(Manifold::PointOfReferencePtr start, Manifold::PointPtr end) { return start->getSpace()->getGeodesic(start, end)->getVector(); } Manifold::PointPtr Manifold::pointFromVector(Manifold::PointOfReferencePtr start, Vector3d vector) { return this->getGeodesic(start, vector)->getEndPoint(); } Manifold::PointOfReferencePtr Manifold::getPointOfReference(Manifold::PointOfReferencePtr start, Vector3d vector) { return this->getGeodesic(start, vector)->getEndPointOfReference(); } bool Manifold::Point::isInManifold() { std::vector<Manifold::PortalPtr>* portals = getSpace()->getPortals(); for(int i=0; i<portals->size(); ++i) { if((*portals)[i]->containsPoint(this)) { return false; } } return true; } Manifold* Manifold::PointOfReference::getSpace() { return getPosition()->getSpace(); } Manifold* Manifold::Geodesic::getSpace() { return getEndPoint()->getSpace(); } Manifold* Manifold::Portal::getSpace() { return space; } Manifold::Portal::Portal() { rotate = false; invert = false; } void Manifold::Portal::setExit(Manifold::Portal* exit) { this->exit = exit; rotate = false; } void Manifold::Portal::setExit(Manifold::Portal* exit, Matrix3d rotation) { this->exit = exit; if(rotation == Matrix3d() || rotation == Matrix3d::Identity()) { rotate = false; } else { this->rotation = rotation; rotate = true; } } void Manifold::Portal::setMutualExits(Manifold::Portal* exit) { setExit(exit); exit->setExit(this); } void Manifold::Portal::setMutualExits(Manifold::Portal* exit, Matrix3d rotation) { setExit(exit, rotation); exit->setExit(this, rotation.transpose()); } void Manifold::Portal::setSpace(Manifold* space) { this->space = space; } Manifold* Manifold::Portal::getExitSpace() { return exit->getSpace(); } void Manifold::Portal::setInvert(bool invert) { this->invert = invert; } bool Manifold::Portal::getInvert() { return invert; } Manifold::GeodesicPtr Manifold::Portal::teleport(Manifold::GeodesicPtr geodesic) { assert(exit); //std::cout << "Manifold.cpp teleport from " << getSpace()->getType() << std::endl; IntersectionPtr intersection = getIntersection(geodesic); if(rotate) { intersection->rotate(rotation); } if(invert ^ exit->getInvert()) { intersection->invert(); } return exit->getGeodesic(intersection); } Manifold::PointPtr Manifold::Portal::teleport(Manifold::PointPtr point) { assert(exit); //assert(point->isInManifold()); return exit->getPoint(getTransport(point)); } Manifold::GeodesicPtr Manifold::nextPiece(Manifold::GeodesicPtr previous) { assert(this == previous->getSpace()); //std::cout << "Manifold.cpp Space:\t" << getType() << std::endl; /*std::cout << "Manifold.cpp Length:\t" << previous->getVector().norm() << std::endl;*/ //assert(previous->getStart()->getPosition()->isInManifold()); /*if(getType() == "SurfaceOfRevolution<PortalSpace2d>") { std::cout << "Manifold.cpp t before:\t" << ((SurfaceOfRevolution<PortalSpace2d>::Point*) previous->getStart()->getPosition().get())->getT() << std::endl; }*/ double distance = previous->getVector().norm(); int portal = -1; for(int i=0; i<portals.size(); ++i) { double current = previous->intersectionDistance(portals[i]); //std::cout << "Manifold.cpp current:\t" << current << std::endl; //std::cout << "Manifold.cpp portal:\t\t" << i << std::endl; assert(current > 0); if(current < distance) { distance = current; portal = i; } } if(portal == -1) { /*if(getType() == "SurfaceOfRevolution<PortalSpace2d>") { std::cout << "Manifold.cpp t after:\t" << ((SurfaceOfRevolution<PortalSpace2d>::Point*) previous->getEndPoint().get())->getT() << std::endl; }*/ //std::cout << "Manifold.cpp " << getType() << std::endl; assert(previous->getEndPoint()->isInManifold()); return Manifold::GeodesicPtr(); } else { Manifold::GeodesicPtr next = portals[portal]->teleport(previous); //std::cout << "teleport\nportal:\t" << portal << "\ndistance:\t" << distance << std::endl; return next; } } void Manifold::addPortal(Manifold::PortalPtr portal) { portals.push_back(portal); } std::vector<Manifold::PortalPtr>* Manifold::getPortals() { return &portals; }
[ "daniel_l_c@yahoo.com" ]
daniel_l_c@yahoo.com
e440ce11a5e3dd444ee1d1f04cc4835d03053e36
a11adeaf47e51d8788a67cd6129e180e20d995cb
/src/alert.cpp
31f5f2278086b97563070b65d3ecae8337c5fb29
[ "MIT" ]
permissive
entrustcoin/eTRUST
95d692e1c08069f9aeb9f0d3a7747d4f84bbf5ff
6dd8550182b80d19daccbe0325349d1b23c950be
refs/heads/master
2021-01-13T01:26:55.285517
2015-04-24T15:03:39
2015-04-24T15:03:39
33,429,276
0
1
null
null
null
null
UTF-8
C++
false
false
7,758
cpp
// // Alert system // #include <algorithm> #include <boost/algorithm/string/classification.hpp> #include <boost/algorithm/string/replace.hpp> #include <boost/foreach.hpp> #include <map> #include "alert.h" #include "key.h" #include "net.h" #include "sync.h" #include "ui_interface.h" using namespace std; map<uint256, CAlert> mapAlerts; CCriticalSection cs_mapAlerts; static const char* pszMainKey = "000"; // TestNet alerts pubKey static const char* pszTestKey = "000"; void CUnsignedAlert::SetNull() { nVersion = 1; nRelayUntil = 0; nExpiration = 0; nID = 0; nCancel = 0; setCancel.clear(); nMinVer = 0; nMaxVer = 0; setSubVer.clear(); nPriority = 0; strComment.clear(); strStatusBar.clear(); strReserved.clear(); } std::string CUnsignedAlert::ToString() const { std::string strSetCancel; BOOST_FOREACH(int n, setCancel) strSetCancel += strprintf("%d ", n); std::string strSetSubVer; BOOST_FOREACH(std::string str, setSubVer) strSetSubVer += "\"" + str + "\" "; return strprintf( "CAlert(\n" " nVersion = %d\n" " nRelayUntil = %"PRId64"\n" " nExpiration = %"PRId64"\n" " nID = %d\n" " nCancel = %d\n" " setCancel = %s\n" " nMinVer = %d\n" " nMaxVer = %d\n" " setSubVer = %s\n" " nPriority = %d\n" " strComment = \"%s\"\n" " strStatusBar = \"%s\"\n" ")\n", nVersion, nRelayUntil, nExpiration, nID, nCancel, strSetCancel.c_str(), nMinVer, nMaxVer, strSetSubVer.c_str(), nPriority, strComment.c_str(), strStatusBar.c_str()); } void CUnsignedAlert::print() const { printf("%s", ToString().c_str()); } void CAlert::SetNull() { CUnsignedAlert::SetNull(); vchMsg.clear(); vchSig.clear(); } bool CAlert::IsNull() const { return (nExpiration == 0); } uint256 CAlert::GetHash() const { return Hash(this->vchMsg.begin(), this->vchMsg.end()); } bool CAlert::IsInEffect() const { return (GetAdjustedTime() < nExpiration); } bool CAlert::Cancels(const CAlert& alert) const { if (!IsInEffect()) return false; // this was a no-op before 31403 return (alert.nID <= nCancel || setCancel.count(alert.nID)); } bool CAlert::AppliesTo(int nVersion, std::string strSubVerIn) const { // TODO: rework for client-version-embedded-in-strSubVer ? return (IsInEffect() && nMinVer <= nVersion && nVersion <= nMaxVer && (setSubVer.empty() || setSubVer.count(strSubVerIn))); } bool CAlert::AppliesToMe() const { return AppliesTo(PROTOCOL_VERSION, FormatSubVersion(CLIENT_NAME, CLIENT_VERSION, std::vector<std::string>())); } bool CAlert::RelayTo(CNode* pnode) const { if (!IsInEffect()) return false; // returns true if wasn't already contained in the set if (pnode->setKnown.insert(GetHash()).second) { if (AppliesTo(pnode->nVersion, pnode->strSubVer) || AppliesToMe() || GetAdjustedTime() < nRelayUntil) { pnode->PushMessage("alert", *this); return true; } } return false; } bool CAlert::CheckSignature() const { CKey key; if (!key.SetPubKey(ParseHex(fTestNet ? pszTestKey : pszMainKey))) return error("CAlert::CheckSignature() : SetPubKey failed"); if (!key.Verify(Hash(vchMsg.begin(), vchMsg.end()), vchSig)) return error("CAlert::CheckSignature() : verify signature failed"); // Now unserialize the data CDataStream sMsg(vchMsg, SER_NETWORK, PROTOCOL_VERSION); sMsg >> *(CUnsignedAlert*)this; return true; } CAlert CAlert::getAlertByHash(const uint256 &hash) { CAlert retval; { LOCK(cs_mapAlerts); map<uint256, CAlert>::iterator mi = mapAlerts.find(hash); if(mi != mapAlerts.end()) retval = mi->second; } return retval; } bool CAlert::ProcessAlert(bool fThread) { if (!CheckSignature()) return false; if (!IsInEffect()) return false; // alert.nID=max is reserved for if the alert key is // compromised. It must have a pre-defined message, // must never expire, must apply to all versions, // and must cancel all previous // alerts or it will be ignored (so an attacker can't // send an "everything is OK, don't panic" version that // cannot be overridden): int maxInt = std::numeric_limits<int>::max(); if (nID == maxInt) { if (!( nExpiration == maxInt && nCancel == (maxInt-1) && nMinVer == 0 && nMaxVer == maxInt && setSubVer.empty() && nPriority == maxInt && strStatusBar == "URGENT: Alert key compromised, upgrade required" )) return false; } { LOCK(cs_mapAlerts); // Cancel previous alerts for (map<uint256, CAlert>::iterator mi = mapAlerts.begin(); mi != mapAlerts.end();) { const CAlert& alert = (*mi).second; if (Cancels(alert)) { printf("cancelling alert %d\n", alert.nID); uiInterface.NotifyAlertChanged((*mi).first, CT_DELETED); mapAlerts.erase(mi++); } else if (!alert.IsInEffect()) { printf("expiring alert %d\n", alert.nID); uiInterface.NotifyAlertChanged((*mi).first, CT_DELETED); mapAlerts.erase(mi++); } else mi++; } // Check if this alert has been cancelled BOOST_FOREACH(PAIRTYPE(const uint256, CAlert)& item, mapAlerts) { const CAlert& alert = item.second; if (alert.Cancels(*this)) { printf("alert already cancelled by %d\n", alert.nID); return false; } } // Add to mapAlerts mapAlerts.insert(make_pair(GetHash(), *this)); // Notify UI and -alertnotify if it applies to me if(AppliesToMe()) { uiInterface.NotifyAlertChanged(GetHash(), CT_NEW); std::string strCmd = GetArg("-alertnotify", ""); if (!strCmd.empty()) { // Alert text should be plain ascii coming from a trusted source, but to // be safe we first strip anything not in safeChars, then add single quotes around // the whole string before passing it to the shell: std::string singleQuote("'"); // safeChars chosen to allow simple messages/URLs/email addresses, but avoid anything // even possibly remotely dangerous like & or > std::string safeChars("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890 .,;_/:?@"); std::string safeStatus; for (std::string::size_type i = 0; i < strStatusBar.size(); i++) { if (safeChars.find(strStatusBar[i]) != std::string::npos) safeStatus.push_back(strStatusBar[i]); } safeStatus = singleQuote+safeStatus+singleQuote; boost::replace_all(strCmd, "%s", safeStatus); if (fThread) boost::thread t(runCommand, strCmd); // thread runs free else runCommand(strCmd); } } } printf("accepted alert %d, AppliesToMe()=%d\n", nID, AppliesToMe()); return true; }
[ "entrustcoin@gmail.com" ]
entrustcoin@gmail.com
30d5bf0baf96948d9cf906b258f9a17e7c9b53ac
0ab72b7740337ec0bcfec102aa7c740ce3e60ca3
/include/simplified/system/interaction/function/pairwise/step-continuous/_g_func.h
1dda0759fb81cbf99d9a52a3aebe9109353bf8ed
[]
no_license
junwang-nju/mysimulator
1d1af4ad7ddbe114433ebdadd92de8bb3a45c04f
9c99970173ce87c249d2a2ca6e6df3a29dfc9b86
refs/heads/master
2021-01-10T21:43:01.198526
2012-12-15T23:22:56
2012-12-15T23:22:56
3,367,116
0
0
null
null
null
null
UTF-8
C++
false
false
794
h
#ifndef _System_Interaction_Function_Pairwise_StepContinuous_G_Func_H_ #define _System_Interaction_Function_Pairwise_StepContinuous_G_Func_H_ #include "system/interaction/parameter/interface.h" #include "system/interaction/function/pairwise/step-continuous/post-name.h" #include "basic/util/tanh.h" namespace mysimulator { void _gfunc_pair_step_continuous( Array<Double> const& _post, const InteractionParameter& P, double *Diff) { assert((bool)_post); assert((bool)P); double dDSQ=_post[PairStepContinuousPostName::DistanceSQ]- P[PairStepContinuousParameterName::RadiusSQ]; double sDSQ=P[PairStepContinuousParameterName::Sharpness]*dDSQ; double TH=__tanh(sDSQ); *Diff=P[PairStepContinuousParameterName::DSProduct]*(1-TH*TH); } } #endif
[ "junwang.nju@gmail.com" ]
junwang.nju@gmail.com
126c25644591ae8bbc24813e7e6f8a5afc5834b2
e821ffa3ad5a12900ca07028ef4d121b312a5cbb
/LeetCode/Trees/Traversal/inOrder.cpp
7960d5d6a0f3edb31576ce1c30c04dd4c7ca901d
[]
no_license
mave89/CPlusPlus_Random
82feb8b9afca3e52a1c1397d5e19f4ddd41a2800
4069bb685762cdf5f739f660b1d7c9ed0738f50d
refs/heads/master
2023-03-06T04:23:16.904139
2020-04-07T08:27:40
2020-04-07T08:27:40
null
0
0
null
null
null
null
UTF-8
C++
false
false
927
cpp
// https://leetcode.com/problems/binary-tree-inorder-traversal/description/ /** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode(int x) : val(x), left(NULL), right(NULL) {} * }; */ class Solution { public: // Using iteration vector<int> inorderTraversal(TreeNode* root) { vector<int> array; if(!root) return array; stack<TreeNode *> s; TreeNode *temp = root; while(!s.empty() || temp != NULL){ // Go left if possible if(temp){ s.push(temp); temp = temp->left; } else{ temp = s.top(); s.pop(); array.push_back(temp->val); // Go to its right temp = temp->right; } } return array; } };
[ "fabidi89@vt.edu" ]
fabidi89@vt.edu
7d7641c2b99b88ac02bf41f1a95b90536a2f0ae0
9d6da68f5f6fb8f441c602c9633cf87aa59f9d08
/cxx-mpi/operators.cpp
c118adf9cabe2b059dd58aef2041f540fff94300
[]
no_license
alexauroradev/summer-school
7cd6d18f741652250c9f95196edc71ae4100ed21
1061b62396c3130d9c471bbe93803938fda171f8
refs/heads/master
2021-12-27T07:54:34.241462
2014-07-01T15:26:24
2014-07-01T15:26:24
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,488
cpp
//****************************************** // operators.f90 // based on min-app code written by Oliver Fuhrer, MeteoSwiss // modified by Ben Cumming, CSCS // ***************************************** // Description: Contains simple operators which can be used on 3d-meshes #include <mpi.h> #include "data.h" #include "operators.h" #include "stats.h" namespace operators { void diffusion(const data::Field &U, data::Field &S) { using data::options; using data::domain; using data::bndE; using data::bndW; using data::bndN; using data::bndS; using data::buffE; using data::buffW; using data::buffN; using data::buffS; using data::x_old; double dxs = 1000. * (options.dx * options.dx); double alpha = options.alpha; int nx = domain.nx; int ny = domain.ny; int iend = nx - 1; int jend = ny - 1; MPI_Status statuses[8]; int requests[8]; int num_requests = 0; if(domain.neighbour_north>=0) { // set tag to be the sender's rank // post receive MPI_Irecv(&bndN[0], nx, MPI_DOUBLE, domain.neighbour_north, domain.neighbour_north, MPI_COMM_WORLD, requests+num_requests); num_requests++; // pack north buffer for(int i=0; i<nx; i++) buffN[i] = U(i,ny-1); // post send MPI_Isend(&buffN[0], nx, MPI_DOUBLE, domain.neighbour_north, domain.rank, MPI_COMM_WORLD, requests+num_requests); num_requests++; } if(domain.neighbour_south>=0) { // set tag to be the sender's rank // post receive MPI_Irecv(&bndS[0], nx, MPI_DOUBLE, domain.neighbour_south, domain.neighbour_south, MPI_COMM_WORLD, requests+num_requests); num_requests++; // pack south buffer for(int i=0; i<nx; i++) buffS[i] = U(i,0); // post send MPI_Isend(&buffS[0], nx, MPI_DOUBLE, domain.neighbour_south, domain.rank, MPI_COMM_WORLD, requests+num_requests); num_requests++; } if(domain.neighbour_east>=0) { // set tag to be the sender's rank // post receive MPI_Irecv(&bndE[0], ny, MPI_DOUBLE, domain.neighbour_east, domain.neighbour_east, MPI_COMM_WORLD, requests+num_requests); num_requests++; // pack north buffer for(int j=0; j<ny; j++) buffE[j] = U(nx-1,j); // post send MPI_Isend(&buffE[0], ny, MPI_DOUBLE, domain.neighbour_east, domain.rank, MPI_COMM_WORLD, requests+num_requests); num_requests++; } if(domain.neighbour_west>=0) { // set tag to be the sender's rank // post receive MPI_Irecv(&bndW[0], ny, MPI_DOUBLE, domain.neighbour_west, domain.neighbour_west, MPI_COMM_WORLD, requests+num_requests); num_requests++; // pack north buffer for(int j=0; j<ny; j++) buffW[j] = U(0,j); // post send MPI_Isend(&buffW[0], ny, MPI_DOUBLE, domain.neighbour_west, domain.rank, MPI_COMM_WORLD, requests+num_requests); num_requests++; } // the interior grid points for (int j=1; j < jend; j++) { for (int i=1; i < iend; i++) { S(i,j) = -(4. + alpha) * U(i,j) // central point + U(i-1,j) + U(i+1,j) // east and west + U(i,j-1) + U(i,j+1) // north and south + alpha * x_old(i,j) + dxs * U(i,j) * (1.0 - U(i,j)); } } // wait on the receives MPI_Waitall(num_requests, requests, statuses); // the east boundary { int i = nx - 1; for (int j = 1; j < jend; j++) { S(i,j) = -(4. + alpha) * U(i,j) + U(i-1,j) + U(i,j-1) + U(i,j+1) + alpha*x_old(i,j) + bndE[j] + dxs * U(i,j) * (1.0 - U(i,j)); } } // the west boundary { int i = 0; for (int j = 1; j < jend; j++) { S(i,j) = -(4. + alpha) * U(i,j) + U(i+1,j) + U(i,j-1) + U(i,j+1) + alpha * x_old(i,j) + bndW[j] + dxs * U(i,j) * (1.0 - U(i,j)); } } // the north boundary (plus NE and NW corners) { int j = ny - 1; { int i = 0; // NW corner S(i,j) = -(4. + alpha) * U(i,j) + U(i+1,j) + U(i,j-1) + alpha * x_old(i,j) + bndW[j] + bndN[i] + dxs * U(i,j) * (1.0 - U(i,j)); } // north boundary for (int i = 1; i < iend; i++) { S(i,j) = -(4. + alpha) * U(i,j) + U(i-1,j) + U(i+1,j) + U(i,j-1) + alpha*x_old(i,j) + bndN[i] + dxs * U(i,j) * (1.0 - U(i,j)); } { int i = nx-1; // NE corner S(i,j) = -(4. + alpha) * U(i,j) + U(i-1,j) + U(i,j-1) + alpha * x_old(i,j) + bndE[j] + bndN[i] + dxs * U(i,j) * (1.0 - U(i,j)); } } // the south boundary { int j = 0; { int i = 0; // SW corner S(i,j) = -(4. + alpha) * U(i,j) + U(i+1,j) + U(i,j+1) + alpha * x_old(i,j) + bndW[j] + bndS[i] + dxs * U(i,j) * (1.0 - U(i,j)); } // south boundary for (int i = 1; i < iend; i++) { S(i,j) = -(4. + alpha) * U(i,j) + U(i-1,j) + U(i+1,j) + U(i,j+1) + alpha * x_old(i,j) + bndS[i] + dxs * U(i,j) * (1.0 - U(i,j)); } { int i = nx - 1; // SE corner S(i,j) = -(4. + alpha) * U(i,j) + U(i-1,j) + U(i,j+1) + alpha * x_old(i,j) + bndE[j] + bndS[i] + dxs * U(i,j) * (1.0 - U(i,j)); } } // Accumulate the flop counts // 8 ops total per point stats::flops_diff += + 12 * (nx - 2) * (ny - 2) // interior points + 11 * (nx - 2 + ny - 2) // NESW boundary points + 11 * 4; // corner points } } // namespace operators
[ "bcumming@cscs.ch" ]
bcumming@cscs.ch
dd4aa682fbc033bb07e5a170853c56bfb4a8cda2
1d0097e25c983c764be6871c4e9d19acd83c9a6d
/llvm-3.2.src/lib/Target/Mips/MipsFrameLowering.h
df52d92da83085627eea54ca57d3434998f52a9c
[ "NCSA", "LicenseRef-scancode-unknown-license-reference" ]
permissive
smowton/llpe
16a695782bebbeadfd1abed770d0928e464edb39
8905aeda642c5d7e5cd3fb757c3e9897b62d0028
refs/heads/master
2022-03-11T23:08:18.465994
2020-09-16T07:49:12
2020-09-16T07:49:12
1,102,256
50
10
NOASSERTION
2020-09-16T07:49:13
2010-11-22T12:52:25
C++
UTF-8
C++
false
false
1,389
h
//===-- MipsFrameLowering.h - Define frame lowering for Mips ----*- C++ -*-===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // // //===----------------------------------------------------------------------===// #ifndef MIPS_FRAMEINFO_H #define MIPS_FRAMEINFO_H #include "Mips.h" #include "MipsSubtarget.h" #include "llvm/Target/TargetFrameLowering.h" namespace llvm { class MipsSubtarget; class MipsFrameLowering : public TargetFrameLowering { protected: const MipsSubtarget &STI; public: explicit MipsFrameLowering(const MipsSubtarget &sti) : TargetFrameLowering(StackGrowsDown, sti.hasMips64() ? 16 : 8, 0, sti.hasMips64() ? 16 : 8), STI(sti) {} static const MipsFrameLowering *create(MipsTargetMachine &TM, const MipsSubtarget &ST); bool hasFP(const MachineFunction &MF) const; protected: uint64_t estimateStackSize(const MachineFunction &MF) const; }; /// Create MipsInstrInfo objects. const MipsFrameLowering *createMips16FrameLowering(const MipsSubtarget &ST); const MipsFrameLowering *createMipsSEFrameLowering(const MipsSubtarget &ST); } // End llvm namespace #endif
[ "cs448@cam.ac.uk" ]
cs448@cam.ac.uk
402f6bde6b49055477230f33d57727e1ea9375a9
e24ea510e215d1dd782768c60430644984b8e76e
/build-MarkdownEditor-Desktop_Qt_5_11_2_MSVC2017_64bit-Debug/debug/moc_mainwindow.cpp
c24f98ca3ff56e31b49173bed2b4e0ffaf8c8b9d
[]
no_license
sh-jj/MarkdownEditor
bea7e3c30102c8874dbbb0229e90485daa5d843a
0b9728f4dc2a1b22b594082afea7e77d4907e80a
refs/heads/master
2020-03-29T15:33:58.347457
2018-10-24T04:55:53
2018-10-24T04:55:53
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,385
cpp
/**************************************************************************** ** Meta object code from reading C++ file 'mainwindow.h' ** ** Created by: The Qt Meta Object Compiler version 67 (Qt 5.11.2) ** ** WARNING! All changes made in this file will be lost! *****************************************************************************/ #include "../../MarkdownEditor/mainwindow.h" #include <QtCore/qbytearray.h> #include <QtCore/qmetatype.h> #if !defined(Q_MOC_OUTPUT_REVISION) #error "The header file 'mainwindow.h' doesn't include <QObject>." #elif Q_MOC_OUTPUT_REVISION != 67 #error "This file was generated using the moc from 5.11.2. It" #error "cannot be used with the include files from this version of Qt." #error "(The moc has changed too much.)" #endif QT_BEGIN_MOC_NAMESPACE QT_WARNING_PUSH QT_WARNING_DISABLE_DEPRECATED struct qt_meta_stringdata_MainWindow_t { QByteArrayData data[3]; char stringdata0[22]; }; #define QT_MOC_LITERAL(idx, ofs, len) \ Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ qptrdiff(offsetof(qt_meta_stringdata_MainWindow_t, stringdata0) + ofs \ - idx * sizeof(QByteArrayData)) \ ) static const qt_meta_stringdata_MainWindow_t qt_meta_stringdata_MainWindow = { { QT_MOC_LITERAL(0, 0, 10), // "MainWindow" QT_MOC_LITERAL(1, 11, 9), // "compilemd" QT_MOC_LITERAL(2, 21, 0) // "" }, "MainWindow\0compilemd\0" }; #undef QT_MOC_LITERAL static const uint qt_meta_data_MainWindow[] = { // content: 7, // revision 0, // classname 0, 0, // classinfo 1, 14, // methods 0, 0, // properties 0, 0, // enums/sets 0, 0, // constructors 0, // flags 0, // signalCount // slots: name, argc, parameters, tag, flags 1, 0, 19, 2, 0x08 /* Private */, // slots: parameters QMetaType::Void, 0 // eod }; void MainWindow::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) { if (_c == QMetaObject::InvokeMetaMethod) { MainWindow *_t = static_cast<MainWindow *>(_o); Q_UNUSED(_t) switch (_id) { case 0: _t->compilemd(); break; default: ; } } Q_UNUSED(_a); } QT_INIT_METAOBJECT const QMetaObject MainWindow::staticMetaObject = { { &QMainWindow::staticMetaObject, qt_meta_stringdata_MainWindow.data, qt_meta_data_MainWindow, qt_static_metacall, nullptr, nullptr} }; const QMetaObject *MainWindow::metaObject() const { return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; } void *MainWindow::qt_metacast(const char *_clname) { if (!_clname) return nullptr; if (!strcmp(_clname, qt_meta_stringdata_MainWindow.stringdata0)) return static_cast<void*>(this); return QMainWindow::qt_metacast(_clname); } int MainWindow::qt_metacall(QMetaObject::Call _c, int _id, void **_a) { _id = QMainWindow::qt_metacall(_c, _id, _a); if (_id < 0) return _id; if (_c == QMetaObject::InvokeMetaMethod) { if (_id < 1) qt_static_metacall(this, _c, _id, _a); _id -= 1; } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { if (_id < 1) *reinterpret_cast<int*>(_a[0]) = -1; _id -= 1; } return _id; } QT_WARNING_POP QT_END_MOC_NAMESPACE
[ "shjjhszs@gmail.com" ]
shjjhszs@gmail.com
0d2514e1f124601d6c9c9f63fa3e0e64a699124d
c4116c2e8c411a9ab01065144e0e105f99f95313
/Podd/VectorObjVar.h
68af49863e3610667f1f5b99e4804c96d98d7739
[ "BSD-3-Clause" ]
permissive
JeffersonLab/analyzer
aba8b4ce90b549b345daa81e731e44b0d704354b
a0613dcafa9efe42f759f5321cd0f8d2c633ba2f
refs/heads/master
2023-06-17T00:26:31.368749
2022-11-06T22:46:23
2022-11-06T22:46:23
13,133,237
9
61
BSD-3-Clause
2021-10-30T14:54:45
2013-09-26T20:14:27
C++
UTF-8
C++
false
false
916
h
#ifndef Podd_VectorObjVar_h_ #define Podd_VectorObjVar_h_ ////////////////////////////////////////////////////////////////////////// // // VectorObjVar // // A "global variable" referencing data in objects held in a std::vector. // ////////////////////////////////////////////////////////////////////////// #include "SeqCollectionVar.h" namespace Podd { class VectorObjVar : virtual public SeqCollectionVar { public: VectorObjVar( THaVar* pvar, const void* addr, VarType type, Int_t elem_size, Int_t offset ); virtual Int_t GetLen() const; virtual const void* GetDataPointer( Int_t i = 0 ) const; virtual Bool_t HasSameSize( const Variable& rhs ) const; protected: Int_t fElemSize; // Size of one vector element. If 0, assume pointers // (This is Int_t, not size_t, because that's what // TClass::GetClassSize() returns) }; }// namespace Podd #endif
[ "ole@jlab.org" ]
ole@jlab.org
877aee38e7153c5bf8d9fb9bbbb7097e25d36c86
12699ac501fee6543bdb3070d7af010e86063d76
/curaengine/src/infill.cpp
1e1fef1d586d0c9900230ba54bf2449a528cf69e
[]
no_license
ShenRen/CuraEngine_VS2017
ff6877ac837823efc970efa984bc5ad87b5c833d
8844adde078a0a7c7370cab6b7a03b0cf7ef165e
refs/heads/master
2020-03-19T13:18:48.922261
2018-01-24T14:53:04
2018-01-24T14:53:04
null
0
0
null
null
null
null
UTF-8
C++
false
false
17,948
cpp
/** Copyright (C) 2013 Ultimaker - Released under terms of the AGPLv3 License */ #include "infill.h" #include "functional" #include "utils/polygonUtils.h" #include "utils/logoutput.h" /*! * Function which returns the scanline_idx for a given x coordinate * * For negative \p x this is different from simple division. * * \warning \p line_width is assumed to be positive * * \param x the point to get the scansegment index for * \param line_width the width of the scan segments */ static inline int computeScanSegmentIdx(int x, int line_width); static inline int computeScanSegmentIdx(int x, int line_width) { if (x < 0) { return (x + 1) / line_width - 1; // - 1 because -1 belongs to scansegment -1 // + 1 because -line_width belongs to scansegment -1 } return x / line_width; } namespace cura { void Infill::generate(Polygons& result_polygons, Polygons& result_lines, const SpaceFillingTreeFill* cross_fill_pattern, const SliceMeshStorage* mesh) { if (in_outline.size() == 0) return; if (line_distance == 0) return; switch(pattern) { case EFillMethod::GRID: generateGridInfill(result_lines); break; case EFillMethod::LINES: generateLineInfill(result_lines, line_distance, fill_angle, 0); break; case EFillMethod::CUBIC: generateCubicInfill(result_lines); break; case EFillMethod::TETRAHEDRAL: generateTetrahedralInfill(result_lines); break; case EFillMethod::QUARTER_CUBIC: generateQuarterCubicInfill(result_lines); break; case EFillMethod::TRIANGLES: generateTriangleInfill(result_lines); break; case EFillMethod::TRIHEXAGON: generateTrihexagonInfill(result_lines); break; case EFillMethod::CONCENTRIC: generateConcentricInfill(result_polygons, line_distance); break; case EFillMethod::CONCENTRIC_3D: generateConcentric3DInfill(result_polygons); break; case EFillMethod::ZIG_ZAG: generateZigZagInfill(result_lines, line_distance, fill_angle); break; case EFillMethod::CUBICSUBDIV: if (!mesh) { logError("Cannot generate Cubic Subdivision infill without a mesh!\n"); break; } generateCubicSubDivInfill(result_lines, *mesh); break; case EFillMethod::CROSS: case EFillMethod::CROSS_3D: if (!cross_fill_pattern) { logError("Cannot generate Cross infill without a pregenerated cross fill pattern!\n"); break; } generateCrossInfill(*cross_fill_pattern, result_polygons, result_lines); break; default: logError("Fill pattern has unknown value.\n"); break; } } void Infill::generateConcentricInfill(Polygons& result, int inset_value) { Polygons first_concentric_wall = in_outline.offset(outline_offset - line_distance + infill_line_width / 2); // - infill_line_width / 2 cause generateConcentricInfill expects [outline] to be the outer most polygon instead of the outer outline if (perimeter_gaps) { const Polygons inner = first_concentric_wall.offset(infill_line_width / 2 + perimeter_gaps_extra_offset); const Polygons gaps_here = in_outline.difference(inner); perimeter_gaps->add(gaps_here); } generateConcentricInfill(first_concentric_wall, result, inset_value); } void Infill::generateConcentricInfill(Polygons& first_concentric_wall, Polygons& result, int inset_value) { result.add(first_concentric_wall); Polygons* prev_inset = &first_concentric_wall; Polygons next_inset; while (prev_inset->size() > 0) { next_inset = prev_inset->offset(-inset_value); result.add(next_inset); if (perimeter_gaps) { const Polygons outer = prev_inset->offset(-infill_line_width / 2 - perimeter_gaps_extra_offset); const Polygons inner = next_inset.offset(infill_line_width / 2); const Polygons gaps_here = outer.difference(inner); perimeter_gaps->add(gaps_here); } prev_inset = &next_inset; } } void Infill::generateConcentric3DInfill(Polygons& result) { coord_t period = line_distance * 2; coord_t shift = int64_t(one_over_sqrt_2 * z) % period; shift = std::min(shift, period - shift); // symmetry due to the fact that we are applying the shift in both directions shift = std::min(shift, period / 2 - infill_line_width / 2); // don't put lines too close to each other shift = std::max(shift, infill_line_width / 2); // don't put lines too close to each other Polygons first_wall; // in contrast to concentric infill we dont do "- infill_line_width / 2" cause this is already handled by the max two lines above first_wall = in_outline.offset(outline_offset - shift); generateConcentricInfill(first_wall, result, period); first_wall = in_outline.offset(outline_offset - period + shift); generateConcentricInfill(first_wall, result, period); } void Infill::generateGridInfill(Polygons& result) { generateLineInfill(result, line_distance, fill_angle, 0); generateLineInfill(result, line_distance, fill_angle + 90, 0); } void Infill::generateCubicInfill(Polygons& result) { int64_t shift = one_over_sqrt_2 * z; generateLineInfill(result, line_distance, fill_angle, shift); generateLineInfill(result, line_distance, fill_angle + 120, shift); generateLineInfill(result, line_distance, fill_angle + 240, shift); } void Infill::generateTetrahedralInfill(Polygons& result) { generateHalfTetrahedralInfill(0.0, 0, result); generateHalfTetrahedralInfill(0.0, 90, result); } void Infill::generateQuarterCubicInfill(Polygons& result) { generateHalfTetrahedralInfill(0.0, 0, result); generateHalfTetrahedralInfill(0.5, 90, result); } void Infill::generateHalfTetrahedralInfill(float pattern_z_shift, int angle_shift, Polygons& result) { coord_t period = line_distance * 2; coord_t shift = int64_t(one_over_sqrt_2 * (z + pattern_z_shift * period * 2)) % period; shift = std::min(shift, period - shift); // symmetry due to the fact that we are applying the shift in both directions shift = std::min(shift, period / 2 - infill_line_width / 2); // don't put lines too close to each other shift = std::max(shift, infill_line_width / 2); // don't put lines too close to each other generateLineInfill(result, period, fill_angle + angle_shift, shift); generateLineInfill(result, period, fill_angle + angle_shift, -shift); } void Infill::generateTriangleInfill(Polygons& result) { generateLineInfill(result, line_distance, fill_angle, 0); generateLineInfill(result, line_distance, fill_angle + 60, 0); generateLineInfill(result, line_distance, fill_angle + 120, 0); } void Infill::generateTrihexagonInfill(Polygons& result) { generateLineInfill(result, line_distance, fill_angle, 0); generateLineInfill(result, line_distance, fill_angle + 60, 0); generateLineInfill(result, line_distance, fill_angle + 120, line_distance / 2); } void Infill::generateCubicSubDivInfill(Polygons& result, const SliceMeshStorage& mesh) { Polygons uncropped; mesh.base_subdiv_cube->generateSubdivisionLines(z, uncropped); addLineSegmentsInfill(result, uncropped); } void Infill::generateCrossInfill(const SpaceFillingTreeFill& cross_fill_pattern, Polygons& result_polygons, Polygons& result_lines) { if (zig_zaggify) { outline_offset += -infill_line_width / 2; } coord_t shift = line_distance / 2; bool use_odd_in_junctions = false; bool use_odd_out_junctions = false; if (pattern == EFillMethod::CROSS_3D) { coord_t period = line_distance * 2; shift = z % period; shift = std::min(shift, period - shift); // symmetry due to the fact that we are applying the shift in both directions shift = std::min(shift, period / 2 - infill_line_width / 2); // don't put lines too close to each other shift = std::max(shift, infill_line_width / 2); // don't put lines too close to each other use_odd_in_junctions = ((z + period / 2) / period) % 2 == 1; // change junction halfway in between each period when the in-junctions occur use_odd_out_junctions = (z / period) % 2 == 1; // out junctions occur halfway at each periods } Polygons outline = in_outline.offset(outline_offset); cross_fill_pattern.generate(outline, shift, zig_zaggify, fill_angle, apply_pockets_alternatingly, use_odd_in_junctions, use_odd_out_junctions, pocket_size, result_polygons, result_lines); } void Infill::addLineSegmentsInfill(Polygons& result, Polygons& input) { ClipperLib::PolyTree interior_segments_tree = in_outline.lineSegmentIntersection(input); ClipperLib::Paths interior_segments; ClipperLib::OpenPathsFromPolyTree(interior_segments_tree, interior_segments); for (uint64_t idx = 0; idx < interior_segments.size(); idx++) { result.addLine(interior_segments[idx][0], interior_segments[idx][1]); } } void Infill::addLineInfill(Polygons& result, const PointMatrix& rotation_matrix, const int scanline_min_idx, const int line_distance, const AABB boundary, std::vector<std::vector<int64_t>>& cut_list, int64_t shift) { auto compare_int64_t = [](const void* a, const void* b) { int64_t n = (*(int64_t*)a) - (*(int64_t*)b); if (n < 0) { return -1; } if (n > 0) { return 1; } return 0; }; unsigned int scanline_idx = 0; for(int64_t x = scanline_min_idx * line_distance + shift; x < boundary.max.X; x += line_distance) { if (scanline_idx >= cut_list.size()) { break; } std::vector<int64_t>& crossings = cut_list[scanline_idx]; qsort(crossings.data(), crossings.size(), sizeof(int64_t), compare_int64_t); for(unsigned int crossing_idx = 0; crossing_idx + 1 < crossings.size(); crossing_idx += 2) { if (crossings[crossing_idx + 1] - crossings[crossing_idx] < infill_line_width / 5) { // segment is too short to create infill continue; } result.addLine(rotation_matrix.unapply(Point(x, crossings[crossing_idx])), rotation_matrix.unapply(Point(x, crossings[crossing_idx + 1]))); } scanline_idx += 1; } } int64_t Infill::getShiftOffsetFromInfillOriginAndRotation(const double& infill_rotation) { if (infill_origin.X != 0 || infill_origin.Y != 0) { const double rotation_rads = infill_rotation * M_PI / 180; return infill_origin.X * std::cos(rotation_rads) - infill_origin.Y * std::sin(rotation_rads); } return 0; } void Infill::generateLineInfill(Polygons& result, int line_distance, const double& infill_rotation, int64_t shift) { shift += getShiftOffsetFromInfillOriginAndRotation(infill_rotation); PointMatrix rotation_matrix(infill_rotation); NoZigZagConnectorProcessor lines_processor(rotation_matrix, result); bool connected_zigzags = false; generateLinearBasedInfill(outline_offset, result, line_distance, rotation_matrix, lines_processor, connected_zigzags, shift); } void Infill::generateZigZagInfill(Polygons& result, const int line_distance, const double& infill_rotation) { const int64_t shift = getShiftOffsetFromInfillOriginAndRotation(infill_rotation); PointMatrix rotation_matrix(infill_rotation); ZigzagConnectorProcessor zigzag_processor(rotation_matrix, result, use_endpieces, connected_zigzags, skip_some_zags, zag_skip_count); generateLinearBasedInfill(outline_offset - infill_line_width / 2, result, line_distance, rotation_matrix, zigzag_processor, connected_zigzags, shift); } /* * algorithm: * 1. for each line segment of each polygon: * store the intersections of that line segment with all scanlines in a mapping (vector of vectors) from scanline to intersections * (zigzag): add boundary segments to result * 2. for each scanline: * sort the associated intersections * and connect them using the even-odd rule * * rough explanation of the zigzag algorithm: * while walking around (each) polygon (1.) * if polygon intersects with even scanline * start boundary segment (add each following segment to the [result]) * when polygon intersects with a scanline again * stop boundary segment (stop adding segments to the [result]) * (see infill/ZigzagConnectorProcessor.h for actual implementation details) * * * we call the areas between two consecutive scanlines a 'scansegment'. * Scansegment x is the area between scanline x and scanline x+1 * Edit: the term scansegment is wrong, since I call a boundary segment leaving from an even scanline to the left as belonging to an even scansegment, * while I also call a boundary segment leaving from an even scanline toward the right as belonging to an even scansegment. */ void Infill::generateLinearBasedInfill(const int outline_offset, Polygons& result, const int line_distance, const PointMatrix& rotation_matrix, ZigzagConnectorProcessor& zigzag_connector_processor, const bool connected_zigzags, int64_t extra_shift) { if (line_distance == 0) { return; } if (in_outline.size() == 0) { return; } int shift = extra_shift + this->shift; Polygons outline; if (outline_offset != 0) { outline = in_outline.offset(outline_offset); if (perimeter_gaps) { perimeter_gaps->add(in_outline.difference(outline.offset(infill_line_width / 2 + perimeter_gaps_extra_offset))); } } else { outline = in_outline; } outline = outline.offset(infill_overlap); if (outline.size() == 0) { return; } outline.applyMatrix(rotation_matrix); if (shift < 0) { shift = line_distance - (-shift) % line_distance; } else { shift = shift % line_distance; } AABB boundary(outline); int scanline_min_idx = computeScanSegmentIdx(boundary.min.X - shift, line_distance); int line_count = computeScanSegmentIdx(boundary.max.X - shift, line_distance) + 1 - scanline_min_idx; std::vector<std::vector<int64_t> > cut_list; // mapping from scanline to all intersections with polygon segments for(int scanline_idx = 0; scanline_idx < line_count; scanline_idx++) { cut_list.push_back(std::vector<int64_t>()); } for(unsigned int poly_idx = 0; poly_idx < outline.size(); poly_idx++) { PolygonRef poly = outline[poly_idx]; Point p0 = poly.back(); zigzag_connector_processor.registerVertex(p0); // always adds the first point to ZigzagConnectorProcessorEndPieces::first_zigzag_connector when using a zigzag infill type for(unsigned int point_idx = 0; point_idx < poly.size(); point_idx++) { Point p1 = poly[point_idx]; if (p1.X == p0.X) { zigzag_connector_processor.registerVertex(p1); // TODO: how to make sure it always adds the shortest line? (in order to prevent overlap with the zigzag connectors) // note: this is already a problem for normal infill, but hasn't really cothered anyone so far. p0 = p1; continue; } int scanline_idx0; int scanline_idx1; // this way of handling the indices takes care of the case where a boundary line segment ends exactly on a scanline: // in case the next segment moves back from that scanline either 2 or 0 scanline-boundary intersections are created // otherwise only 1 will be created, counting as an actual intersection int direction = 1; if (p0.X < p1.X) { scanline_idx0 = computeScanSegmentIdx(p0.X - shift, line_distance) + 1; // + 1 cause we don't cross the scanline of the first scan segment scanline_idx1 = computeScanSegmentIdx(p1.X - shift, line_distance); // -1 cause the vertex point is handled in the next segment (or not in the case which looks like >) } else { direction = -1; scanline_idx0 = computeScanSegmentIdx(p0.X - shift, line_distance); // -1 cause the vertex point is handled in the previous segment (or not in the case which looks like >) scanline_idx1 = computeScanSegmentIdx(p1.X - shift, line_distance) + 1; // + 1 cause we don't cross the scanline of the first scan segment } for(int scanline_idx = scanline_idx0; scanline_idx != scanline_idx1 + direction; scanline_idx += direction) { int x = scanline_idx * line_distance + shift; int y = p1.Y + (p0.Y - p1.Y) * (x - p1.X) / (p0.X - p1.X); assert(scanline_idx - scanline_min_idx >= 0 && scanline_idx - scanline_min_idx < int(cut_list.size()) && "reading infill cutlist index out of bounds!"); cut_list[scanline_idx - scanline_min_idx].push_back(y); Point scanline_linesegment_intersection(x, y); zigzag_connector_processor.registerScanlineSegmentIntersection(scanline_linesegment_intersection, scanline_idx); } zigzag_connector_processor.registerVertex(p1); p0 = p1; } zigzag_connector_processor.registerPolyFinished(); } if (cut_list.size() == 0) { return; } if (connected_zigzags && cut_list.size() == 1 && cut_list[0].size() <= 2) { return; // don't add connection if boundary already contains whole outline! } addLineInfill(result, rotation_matrix, scanline_min_idx, line_distance, boundary, cut_list, shift); } }//namespace cura
[ "King_Got_Friends@163.com" ]
King_Got_Friends@163.com
3a6fc6fc106ce1cc7cfe6c83873ff6c78f3d0c39
8f50c262f89d3dc4f15f2f67eb76e686b8f808f5
/PhysicsAnalysis/TopPhys/xAOD/TopEventSelectionTools/Root/PrimaryVertexSelector.cxx
e4cadfe007aae09e16aee3a0dcd952c09134be43
[ "Apache-2.0" ]
permissive
strigazi/athena
2d099e6aab4a94ab8b636ae681736da4e13ac5c9
354f92551294f7be678aebcd7b9d67d2c4448176
refs/heads/master
2022-12-09T02:05:30.632208
2020-09-03T14:03:18
2020-09-03T14:03:18
292,587,480
0
1
null
null
null
null
UTF-8
C++
false
false
601
cxx
/* Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration */ #include "TopEventSelectionTools/PrimaryVertexSelector.h" #include "TopEvent/EventTools.h" namespace top { PrimaryVertexSelector::PrimaryVertexSelector() { } bool PrimaryVertexSelector::apply(const top::Event& event) const { if (event.m_info->isAvailable<char>("AnalysisTop_PRIVTX")) { if (event.m_info->auxdataConst<char>("AnalysisTop_PRIVTX") == 1) { return true; } } return false; } std::string PrimaryVertexSelector::name() const { return "PRIVTX"; } }
[ "atlas.nightlybuild@cern.ch" ]
atlas.nightlybuild@cern.ch
c1597108edbcbb27426016f06e798bb252a23872
dd6147bf9433298a64bbceb7fdccaa4cc477fba6
/8381/Pereverzev_Dmitriy/back/gameCPP/src/objects/combatObject/CombatObjectTypeFactory.hpp
0f5cc307f270d52acb3772ad6eb7d6c8984b2b85
[]
no_license
moevm/oop
64a89677879341a3e8e91ba6d719ab598dcabb49
faffa7e14003b13c658ccf8853d6189b51ee30e6
refs/heads/master
2023-03-16T15:48:35.226647
2020-06-08T16:16:31
2020-06-08T16:16:31
85,785,460
42
304
null
2023-03-06T23:46:08
2017-03-22T04:37:01
C++
UTF-8
C++
false
false
467
hpp
#ifndef CombatObjectTypeFactory_hpp #define CombatObjectTypeFactory_hpp #include <stdio.h> #include <iostream> #include <vector> #include "CombatObjectType.hpp" class CombatObjectTypeFactory { private: std::vector<CombatObjectType *> combatObjectTypes; unsigned int quantityOfTypes; public: CombatObjectTypeFactory(); CombatObjectType *getCombatObjectType(double health, double damage, double armor); }; #endif /* CombatObjectTypeFactory_hpp */
[ "43238696+Dmitriy129@users.noreply.github.com" ]
43238696+Dmitriy129@users.noreply.github.com
537b4d2d2da4775cb0c6ce77e23daa0a19f08ed0
3cf9e141cc8fee9d490224741297d3eca3f5feff
/C++ Benchmark Programs/Benchmark Files 1/classtester/autogen-sources/source-362.cpp
66ef4e0361b0c02c1cb39e54a7e30ce437a485ae
[]
no_license
TeamVault/tauCFI
e0ac60b8106fc1bb9874adc515fc01672b775123
e677d8cc7acd0b1dd0ac0212ff8362fcd4178c10
refs/heads/master
2023-05-30T20:57:13.450360
2021-06-14T09:10:24
2021-06-14T09:10:24
154,563,655
0
1
null
null
null
null
UTF-8
C++
false
false
1,816
cpp
struct c0; void __attribute__ ((noinline)) tester0(c0* p); struct c0 { bool active0; c0() : active0(true) {} virtual ~c0() { tester0(this); active0 = false; } virtual void f0(){} }; void __attribute__ ((noinline)) tester0(c0* p) { p->f0(); } struct c1; void __attribute__ ((noinline)) tester1(c1* p); struct c1 { bool active1; c1() : active1(true) {} virtual ~c1() { tester1(this); active1 = false; } virtual void f1(){} }; void __attribute__ ((noinline)) tester1(c1* p) { p->f1(); } struct c2; void __attribute__ ((noinline)) tester2(c2* p); struct c2 { bool active2; c2() : active2(true) {} virtual ~c2() { tester2(this); active2 = false; } virtual void f2(){} }; void __attribute__ ((noinline)) tester2(c2* p) { p->f2(); } struct c3; void __attribute__ ((noinline)) tester3(c3* p); struct c3 : c0, virtual c1, c2 { bool active3; c3() : active3(true) {} virtual ~c3() { tester3(this); c0 *p0_0 = (c0*)(c3*)(this); tester0(p0_0); c1 *p1_0 = (c1*)(c3*)(this); tester1(p1_0); c2 *p2_0 = (c2*)(c3*)(this); tester2(p2_0); active3 = false; } virtual void f3(){} }; void __attribute__ ((noinline)) tester3(c3* p) { p->f3(); if (p->active0) p->f0(); if (p->active2) p->f2(); if (p->active1) p->f1(); } int __attribute__ ((noinline)) inc(int v) {return ++v;} int main() { c0* ptrs0[25]; ptrs0[0] = (c0*)(new c0()); ptrs0[1] = (c0*)(c3*)(new c3()); for (int i=0;i<2;i=inc(i)) { tester0(ptrs0[i]); delete ptrs0[i]; } c1* ptrs1[25]; ptrs1[0] = (c1*)(new c1()); ptrs1[1] = (c1*)(c3*)(new c3()); for (int i=0;i<2;i=inc(i)) { tester1(ptrs1[i]); delete ptrs1[i]; } c2* ptrs2[25]; ptrs2[0] = (c2*)(new c2()); ptrs2[1] = (c2*)(c3*)(new c3()); for (int i=0;i<2;i=inc(i)) { tester2(ptrs2[i]); delete ptrs2[i]; } c3* ptrs3[25]; ptrs3[0] = (c3*)(new c3()); for (int i=0;i<1;i=inc(i)) { tester3(ptrs3[i]); delete ptrs3[i]; } return 0; }
[ "ga72foq@mytum.de" ]
ga72foq@mytum.de
dae3d67b280e1163cb90a38a66c365dc15325cc8
0d09f9a61676e7ec769c9a7b454bee72db0eef73
/divideImpera/QuickSort.h
a0af24cb0326c3d76f64615bb7a5ea5550440926
[]
no_license
steopeicristianioan/divideEtImpera
eda150de800a1fc40d5b9ca4716f995c9131742a
602cf156e89bf034d3f2b0f23c204c685b9ff57e
refs/heads/main
2023-09-02T16:13:12.980892
2021-11-03T10:40:50
2021-11-03T10:40:50
420,379,408
0
0
null
null
null
null
UTF-8
C++
false
false
745
h
#include <iostream> #include <fstream> using namespace std; class QuickSort { public: int n, v[101]{}; void swap(int& i, int& j) { int aux = i; i = j; j = aux; } int partitie(int st, int dr){ int pivot = v[dr]; int index = st; for (int i = st; i < dr; i++) { if (v[i] <= pivot) { swap(v[i], v[index]); index++; } } swap(v[index], v[dr]); return index; } void quickSort(int st, int dr) { if (st < dr) { int index = partitie(st, dr); quickSort(st, index - 1); quickSort(index + 1, dr); } } void solve() { ifstream fin("Fin.txt"); fin >> n; for (int i = 0; i < n; i++) fin >> v[i]; quickSort(0, n - 1); for (int i = 0; i < n; i++) cout << v[i] << ' '; } };
[ "steopeicristianioan@gmail.com" ]
steopeicristianioan@gmail.com
e34f191e89a3e0cd23a5f3fd7978abd02748ce67
6a227e95944a09556c6a872826a4e6cce0a6d52a
/src/solver/cg.h
79dc46e1883ae916a0b4c7d3036479e7a55ed99a
[ "MIT" ]
permissive
xmc-aalto/dismecpp
ad5e61a00587cfd13064bfdca882fa1236b0aa92
256480788e6e0dfa8fda443a0fe12a0c63ed70aa
refs/heads/master
2023-04-17T22:47:29.564783
2022-07-28T13:36:28
2022-07-28T13:36:28
515,955,011
12
0
NOASSERTION
2022-07-20T14:27:20
2022-07-20T11:31:55
C++
UTF-8
C++
false
false
2,258
h
// Copyright (c) 2021, Aalto University, developed by Erik Schultheis // All rights reserved. // // SPDX-License-Identifier: MIT #ifndef DISMEC_CG_H #define DISMEC_CG_H #include "matrix_types.h" #include "config.h" #include <functional> #include "utils/hyperparams.h" namespace dismec::solvers { /*! \class CGMinimizer * \brief Approximately solve a linear equation `Ax + b = 0`. * \details This class uses a CG algorithm to approximately solve `Ax + b = 0`. It does not * require the entire matrix `A` but only a function that allows to calculate `Ad` for an * arbitrary vector `d`. This class has a size of approximately `5n sizeof(double)` for * `n` being the number of variables. */ class CGMinimizer : public HyperParameterBase { public: /// Type of function that calculates hessian-vector product. The first argument is the vector, the second /// argument is an (potentially uninitialized) output argument in which to place the product. using MatrixVectorProductFn = std::function<void(const DenseRealVector &, Eigen::Ref<DenseRealVector>)>; explicit CGMinimizer(long num_vars); /// Solves `Ax+b=0`. returns the number of iterations long minimize(const MatrixVectorProductFn &A, const DenseRealVector &b, const DenseRealVector &M); /// returns the solution vector found by the last minimize call const DenseRealVector& get_solution() const { return m_S; } /// Gets the value of the tolerance hyperparameter [[nodiscard]] double get_epsilon() const { return m_Epsilon; } /// Sets the value of the tolerance hyperparameter void set_epsilon(double v) { m_Epsilon = v; } private: long do_minimize(const MatrixVectorProductFn &A, const DenseRealVector &b, const DenseRealVector &M); long m_Size; real_t m_Epsilon = CG_DEFAULT_EPSILON; // vector caches to prevent allocations DenseRealVector m_A_times_d; DenseRealVector m_S; ///< s from the CG algorithm DenseRealVector m_Residual; ///< r_k from the CG algorithm DenseRealVector m_Conjugate; ///< p_k from the CG algorithm }; } #endif //DISMEC_CG_H
[ "erik.schultheis@aalto.fi" ]
erik.schultheis@aalto.fi
47d489eedfaa6f26e9f574ae21d4575d991f9714
8a87f5b889a9ce7d81421515f06d9c9cbf6ce64a
/3rdParty/date/test/date_test/detail/width.pass.cpp
6fbb7b94c6b2878ca453b965590e75bf007c46cf
[ "MIT", "Apache-2.0", "BSD-3-Clause", "ICU", "Zlib", "GPL-1.0-or-later", "OpenSSL", "ISC", "LicenseRef-scancode-gutenberg-2020", "GPL-2.0-only", "CC0-1.0", "BSL-1.0", "LicenseRef-scancode-autoconf-simple-exception", "LicenseRef-scancode-pcre", "Bison-exception-2.2", "LicenseRef-scancode...
permissive
arangodb/arangodb
0980625e76c56a2449d90dcb8d8f2c485e28a83b
43c40535cee37fc7349a21793dc33b1833735af5
refs/heads/devel
2023-08-31T09:34:47.451950
2023-08-31T07:25:02
2023-08-31T07:25:02
2,649,214
13,385
982
Apache-2.0
2023-09-14T17:02:16
2011-10-26T06:42:00
C++
UTF-8
C++
false
false
2,479
cpp
// The MIT License (MIT) // // Copyright (c) 2017 Howard Hinnant // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in all // copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE // SOFTWARE. // width<n>::value is the number of fractional decimal digits in 1/n // width<0>::value and width<1>::value are defined to be 0 // If 1/n takes more than 18 fractional decimal digits, // the result is truncated to 19. // Example: width<2>::value == 1 // Example: width<3>::value == 19 // Example: width<4>::value == 2 // Example: width<10>::value == 1 // Example: width<1000>::value == 3 // template <std::uint64_t n> // // struct width // { // static constexpr unsigned value = ...; // }; #include "date.h" #include <cassert> #include <sstream> #include <type_traits> int main() { using namespace date::detail; static_assert(width<0>::value == 0, ""); static_assert(width<1>::value == 0, ""); static_assert(width<2>::value == 1, ""); static_assert(width<3>::value == 19, ""); static_assert(width<4>::value == 2, ""); static_assert(width<5>::value == 1, ""); static_assert(width<6>::value == 19, ""); static_assert(width<7>::value == 19, ""); static_assert(width<8>::value == 3, ""); static_assert(width<9>::value == 19, ""); static_assert(width<10>::value == 1, ""); static_assert(width<100>::value == 2, ""); static_assert(width<1000>::value == 3, ""); static_assert(width<10000>::value == 4, ""); static_assert(width<625>::value == 4, ""); }
[ "michael@arangodb.com" ]
michael@arangodb.com
2a5d39d79c92a2f1b2123da984eb53a4e0e000f8
c825efa9d8a3f382d0003eeadefce8fccbcac1a3
/Winform_v2/FormAdd.cpp
c0b2f0200e6ac613bf905f8420379f8602a166a6
[]
no_license
ThanhToaiPhan/dictionary
14070cb773b9b96d220a87460c0d6d48709c2bfe
917f4fb395701034dc50e492de5d0cfee3a6b425
refs/heads/master
2020-12-25T14:23:05.942757
2016-09-02T13:58:43
2016-09-02T13:58:43
67,226,585
0
0
null
null
null
null
UTF-8
C++
false
false
42
cpp
#include "StdAfx.h" #include "FormAdd.h"
[ "phanthanhtoai.vn@gmail.com" ]
phanthanhtoai.vn@gmail.com
2aa867c7cff5e93369a095998c10e407aa52a93b
2e868e5b6b79f8f16cab5ec2c6add48c0cce5b9f
/cw3/cw3/GameConstants.cpp
f80906bf0ff3e408c621acb830cc8725a29d86af
[]
no_license
RossTaggart/GP3-Submission
49330b61c3c5df7fb632f8dd8438365ee40c0a99
88b8b9af816d986e4ddf3975d9c35044ff5cd676
refs/heads/master
2021-01-10T15:31:37.214336
2015-12-21T16:56:43
2015-12-21T16:56:43
47,977,181
0
0
null
null
null
null
UTF-8
C++
false
false
614
cpp
/* ================================================================================== GameConstants.cpp ================================================================================== */ #include "GameConstants.h" int drawMode = 0; float rotationAngle = 0; float translationZ = 0; bool fire = false; float playerPosX = 9.5f; float playerPosY[] = { 5.0f, 0.0f, -5.0f }; float customerStartPosX = -9.5f; float customerStartPosY[] = { 5.0f, 0.0f, -5.0f }; int playerPos; bool isSoundMuted = false; bool firstPersonCameraActive = false; bool gameOverLose = false; bool mainMenu = true; bool gameOverWin = false;
[ "rosstaggart12@gmail.com" ]
rosstaggart12@gmail.com
f767591d737cb18444ad4f924ea1e739223491b8
4bbd798828869728c11505e869bff619c17d329d
/entrega/Código fuente/Arduino/TFG/TFG.ino
43bb32011c5efb570ed97c165df9428a21adaf26
[]
no_license
Fran9101/TFG-Riego
c8f13dc51f3dc7ea074efba70d57c05425078271
46ec3c2746da6c633abf4557657561f68503c690
refs/heads/master
2021-07-05T13:40:09.920519
2017-09-27T14:58:48
2017-09-27T14:58:48
105,033,827
0
0
null
null
null
null
UTF-8
C++
false
false
5,839
ino
#include <Time.h> #include <TimeLib.h> #include <DHT11.h> //el comando es así-> S13:00:00-14/03/2017 byte horaInicio=10, minutoInicio=10, horaFin=10, minutoFin=10; char cmdLeido[30]; //buffer para comandos leidos por el puerto serie byte posicion = 0; int momentoInicio,momentoFin,momentoAhora; //String resultado=""; //variables higrometro const int higroPin = A1; //int estado; //---------------------- //variables Lluvia FC_37 const int lluviaPin = A0; //---------------------- //variables flujo YF-s201 const int caudalPin = 2; // Pin digital para el sensor de flujo YF-S201 int litros_Hora; // Variable que almacena el caudal (L/hora) volatile int pulsos = 0; // Variable que almacena el número de pulsos unsigned long tiempoAnterior = 0; // Variable para calcular el tiempo transcurrido unsigned long pulsos_Acumulados = 0; // Variable que almacena el número de pulsos acumulados float litros; // // Variable que almacena el número de litros acumulados //--------------------------------- //variables relé const int pinRelay = 8; //-------------------------------- //variables dht11 const int pinDHT= 9; DHT11 dht11(pinDHT); int err; float temp, hum; //-------------------------------- //identificador char id = 'E'; //-------------------------------- void setup() { //pinMode(13,OUTPUT); //digitalWrite(13,LOW); // put your setup code here, to run once: Serial.begin(9600);//activo serial ¿9600? //Serial.setTimeout(1000);//timeout para lectura de comandos setTime(13,00,00,14,03,2017);//config incial, se cambia despues //pinMode(higroPin, INPUT); //---------------------------- //relé pinMode(pinRelay, OUTPUT); //------------------------------- //dht11 pinMode(pinDHT, INPUT); //------------------------------- //configuración identificador for(int i=4;i<8;i++ ){ pinMode(i, INPUT); if(digitalRead(i)== HIGH){ switch(i){ case 4: id='A'; break; case 5: id='B'; break; case 6: id='C'; break; case 7: id='D'; break; default: id='E'; break; } } } //Serial.print("Arduino configurada como: "); //Serial.print(id); //Serial.print("\n"); //flujo con interrupciones pinMode(caudalPin, INPUT_PULLUP); // Pin digital como entrada con conexión PULL-UP interna interrupts(); // Habilito las interrupciones // Interrupción INT0, llama a la ISR llamada "flujo" en cada flanco de subida en el pin digital 2 attachInterrupt(digitalPinToInterrupt(caudalPin), flujo, RISING); tiempoAnterior = millis(); // Guardo el tiempo que tarda el ejecutarse el setup //------------------------------- } //función caudalímetro void caudalFunc() { if(millis() - tiempoAnterior > 1000) { // Realizo los cálculos tiempoAnterior = millis(); // Actualizo el nuevo tiempo pulsos_Acumulados += pulsos; // Número de pulsos acumulados //litros_Hora = (pulsos * 60 / 7.5); // Q = frecuencia * 60/ 7.5 (L/Hora) litros = pulsos_Acumulados*1.0/450; // Cada 450 pulsos son un litro pulsos = 0; // Pongo nuevamente el número de pulsos a cero } } void loop() { if(Serial.available()>0){ memset(cmdLeido,0,sizeof(cmdLeido)); while(Serial.available()>0){ cmdLeido[posicion]=Serial.read(); posicion++; } posicion = 0; processMsg(); //Serial.println(""); } if(esHoraRiego()){ if((analogRead(higroPin) < 500) || (analogRead(lluviaPin) < 750)){ relayFunc(0); }else{ relayFunc(1); } }else{ //se apaga relay relayFunc(0); } caudalFunc(); } //funcion para activar o desactivar el relé void relayFunc(int val) { if(val == 0){ digitalWrite(pinRelay, LOW); }else if(val == 1){ digitalWrite(pinRelay, HIGH); } } // Rutina de servicio de la interrupción (ISR) void flujo() { pulsos++; // Incrementa en una unidad el número de pulsos } boolean esHoraRiego(){ momentoInicio = (horaInicio*60) + minutoInicio; momentoFin = (horaFin*60) + minutoFin; momentoAhora = (hour()*60) + minute(); if((momentoInicio <= momentoAhora) && (momentoAhora < momentoFin)){ return true; }else{ return false; } } void processMsg(){ //Serial.readBytesUntil('\n',cmdLeido,30);//lee el //digitalWrite(13,HIGH); switch(cmdLeido[0]){//leo el tipo de comando case 'S': //config hora setTime((cmdLeido[1]-'0')*10+(cmdLeido[2]-'0'),//horas (cmdLeido[4]-'0')*10+(cmdLeido[5]-'0'),//minutos (cmdLeido[7]-'0')*10+(cmdLeido[8]-'0'),//segundos (cmdLeido[10]-'0')*10+(cmdLeido[11]-'0'),//día (cmdLeido[13]-'0')*10+(cmdLeido[14]-'0'),//mes (cmdLeido[16]-'0')*1000+(cmdLeido[17]-'0')*100+(cmdLeido[18]-'0')*10+(cmdLeido[19]-'0')//año ); //Serial.print("hora actualizada"); //Serial.print("\n"); break; case 'I': horaInicio = (cmdLeido[1]-'0')*10+(cmdLeido[2]-'0'); minutoInicio = (cmdLeido[4]-'0')*10+(cmdLeido[5]-'0'); //Serial.print("hora inicio"); //Serial.print("\n"); break; case 'F': horaFin = (cmdLeido[1]-'0')*10+(cmdLeido[2]-'0'); minutoFin = (cmdLeido[4]-'0')*10+(cmdLeido[5]-'0'); //Serial.print("hora fin"); //Serial.print("\n"); break; case 'L': dht11.read(hum, temp); //envio por serie los datos Serial.print(temp);Serial.print(","); Serial.print(hum);Serial.print(","); Serial.print(litros);Serial.print(","); Serial.println(id); //Serial.print(String(temp) + "," + String(hum) + "," + String(litros) + "," + String(id)); //Serial.println("datos"); pulsos_Acumulados = 0; break; case 'D': Serial.println(id); } }
[ "Fran9101@gmail.com" ]
Fran9101@gmail.com
1995f58307a9ae09b64fd552dd2e7796106e221a
83687fcc892d5e7a70ea5dff33ab2e15b6ae6bbd
/Contests - seletivas/IME 2019 tryouts/A.cpp
f8272a86043dbf7ae8d5c49470466ee200d3eeb0
[]
no_license
MatheusFerreiradeOliveira/Codes
742047d2600f0bd5a8e2b44273f40ef56dc3cc58
0415a1c661647407bccdbe80b6fd04209983c380
refs/heads/master
2020-12-18T10:53:17.519780
2020-01-21T13:47:48
2020-01-21T13:47:48
235,349,925
1
0
null
null
null
null
UTF-8
C++
false
false
3,074
cpp
#include <bits/stdc++.h> using namespace std; const int N = 112345; const int INF = 1e9+7; int tsum[4*N]; int tmax[4*N]; int tmin[4*N]; int a[N]; void build1(int i, int l, int r) { if (l == r) { tsum[i] = a[l]; } else { int m = (l+r)/2; build1(i<<1, l, m); build1((i<<1)+1, m+1, r); tsum[i] = tsum[i<<1] + tsum[(i<<1)+1]; } } int query1(int i, int l, int r, int ql, int qr) { if (ql <= l && r <= qr) return tsum[i]; if (qr < l || r < ql) return 0; int m = (l+r)/2; return query1(i<<1, l, m, ql, qr) + query1((i<<1)+1, m+1, r, ql, qr); } void update1(int i, int l, int r, int p, int x) { if (l == r) { tsum[i] = x; } else { int m = (l+r)/2; if (p <= m) update1(i<<1, l, m, p, x); else update1((i<<1)+1, m+1, r, p, x); tsum[i] = (tsum[i<<1] + tsum[(i<<1)+1]); } } //MAX void build2(int i, int l, int r) { if (l == r) { tmax[i] = a[l]; } else { int m = (l+r)/2; build2(i<<1, l, m); build2((i<<1)+1, m+1, r); tmax[i] = max(tmax[i<<1], tmax[(i<<1)+1]); } } int query2(int i, int l, int r, int ql, int qr) { if (ql <= l && r <= qr) return tmax[i]; if (qr < l || r < ql) return -INF; int m = (l+r)/2; return max(query2(2*i, l, m, ql, qr) , query2(2*i+1, m+1, r, ql, qr)); } void update2(int i, int l, int r, int p, int x) { if (l == r) { tmax[i] = x; } else { int m = (l+r)/2; if (p <= m) update2(i<<1, l, m, p, x); else update2((i<<1)+1, m+1, r, p, x); tmax[i] = max(tmax[i<<1], tmax[(i<<1)+1]); } } //MIN void build3(int i, int l, int r) { if (l == r) { tmin[i] = a[l]; } else { int m = (l+r)/2; build3(i<<1, l, m); build3((i<<1)+1, m+1, r); tmin[i] = min(tmin[i<<1], tmin[(i<<1)+1]); } } int query3(int i, int l, int r, int ql, int qr) { if (ql <= l && r <= qr) return tmin[i]; if (qr < l || r < ql) return INF; int m = (l+r)/2; return min(query3(i<<1, l, m, ql, qr) , query3((i<<1)+1, m+1, r, ql, qr)); } void update3(int i, int l, int r, int p, int x) { if (l == r) { tmin[i] = x; } else { int m = (l+r)/2; if (p <= m) update3(i<<1, l, m, p, x); else update3((i<<1)+1, m+1, r, p, x); tmin[i] = min(tmin[i<<1], tmin[(i<<1)+1]); } } int main() { int n, q; cin>>n>>q; //memset(t, 0, sizeof t); for(int i = 1; i <= n; ++i) { scanf("%d", &a[i]); } build1(1, 1, n); build2(1, 1, n); build3(1, 1, n); int m; int ql, qr, p, x; //if(cont >= 1) printf("\n"); while(q--) { cin>>m; if(m == 1) { scanf("%d %d", &ql, &qr); int x1, x2, x3; x1 = query1(1, 1, n, ql, qr); x2 = query2(1, 1, n, ql, qr); x3 = query3(1, 1, n, ql, qr); //cout<<x1<<" "<<x2<<" "<<x3<<endl; printf("%d\n", x1 - (x2 + x3)); } else { scanf("%d %d", &p, &x); update1(1, 1, n, p, x); update2(1, 1, n, p, x); update3(1, 1, n, p, x); } } return 0; }
[ "matheusferreiradeoliveira21@gmail.com" ]
matheusferreiradeoliveira21@gmail.com
9beb1b55a3f50dbe0f4977020938428c028d49e3
4ba4b09737b742fbc5a2503ef70eb7c7892bd95c
/codeforces_30days_training/Day_2/Problem_14.cpp
416032e9003fc3f58ed95241524a1445d7101ae1
[]
no_license
ritvikanandi/CPP
d95e398fc30a70f677daf205e67ed9d2e39c65f9
19b7a9d52997c1880484b418247f6c316fa2560f
refs/heads/main
2023-07-12T22:37:05.044851
2021-08-26T17:07:16
2021-08-26T17:07:16
384,034,687
0
0
null
null
null
null
UTF-8
C++
false
false
1,004
cpp
#include <bits/stdc++.h> using namespace std; #define ll long long int #define ld long double #define ios ios_base::sync_with_stdio(false), cin.tie(NULL) #define pb push_back #define po pop_back() #define umap unordered_map #define uset unordered_set #define mod 1000000007 #define pi 3.141592653589793238 #define maxe *max_element #define mine *min_element #define f(i, n) for (int i = 0; i < n; i++) #define f1(i, k, n) for (int i = k; i < n; i++) #define p0(x) cout << x << " " #define p1(x) cout << x << "\n" #define p2(x, y) cout << x << " " << y << endl #define p3(x, y, z) cout << x << " " << y << " " << z << endl #define ip pair<int, int> #define pll pair<ll, ll> #define mem(x, y) memset(x, y, sizeof(x)) void solve() { int k, l, m, n, d; cin >> k >> l >> m >> n >> d; int c = 0; vector<int> v(d); f1(i, 1, d + 1) { if (i % k == 0 || i % l == 0 || i % m == 0 || i % n == 0) c++; } p1(c); } int main() { ios; solve(); return 0; }
[ "ritvika30@gmail.com" ]
ritvika30@gmail.com